如何在表中插入字符串值
使用 VB6 和 SQL Server
如何在表中插入字符串值
Dim a as string
a = 0008", "0009", "1011", "1208
我想在表中插入该字符串值
预期输出
Table1
ID
0008
0009
1011
1208
如何针对上述条件进行查询。
需要查询帮助。
Using VB6 and SQL Server
How to insert a string value in the table
Dim a as string
a = 0008", "0009", "1011", "1208
I want to insert this string values in the table
Expected Output
Table1
ID
0008
0009
1011
1208
How to make a query for the above condition.
Need Query Help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请尝试以下方法:
b
对于strArray中的每个项目作为字符串
更新:
您可以一次为每个项目生成插入SQL语句,然后编写连接和命令代码,这样会更有效。
Please try with the below way:
b
for each item as string in strArray
Update:
You can generate insert SQL statement for each item at a time and then write Connection and Command code, that would be more efficient.
您可以从此链接使用拆分功能。
检查这个分割功能。
http:// /blogs.lessthandot.com/index.php/DataMgmt/DBProgramming/split-string-in-sql-server-2005-clr-vs-t
You can use Split function from this link.
Check this Split function.
http://blogs.lessthandot.com/index.php/DataMgmt/DBProgramming/split-string-in-sql-server-2005-clr-vs-t
首先,您必须将此字符串拆分为字符串[]
,如果
现在使用 foreach 循环上的查询在表中添加值,则
您的表名称为 testTable,列名称为 ID
at first u must split this string to a string[]
and if
now add values in the table with a query on the foreach loop
imaging your table name is testTable andyour column name is ID