将数据填充到 SQL 表中
我有一个包含两列的表:
id_test1 id_test2
1 Null
2 Null
3 Null
4 Null
5 Null
如何更新或填充 id_test2 如下?
id_test1 id_test2
1 256
2 214
3 147
4 987
5 561
感谢您的任何提示
I have a table with two columns:
id_test1 id_test2
1 Null
2 Null
3 Null
4 Null
5 Null
How can I update or populate the id_test2 as below?
id_test1 id_test2
1 256
2 214
3 147
4 987
5 561
Thanks for any tips
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您没有包含表的名称,因此我使用
test_table
代替。这可以用于每条记录,并且在很大程度上与 SQL 无关,这意味着该语法应该适用于任何 RDBMS。You didn't include the name of your table so I used
test_table
instead. This can be used for each record and is pretty SQL agnostic for the most part, meaning the syntax SHOULD work for any RDBMS.等
编辑:
根据您的评论,我只是吹掉包含空值的现有行并插入新的......
等
etc
edit:
Based on your comment, I'd just blow away the existing rows that contain the null values and insert new ones...
etc