SQL Server:复制表中的列
将表中的列中的所有值复制到同一表中的另一列的最简单方法是什么?
What is the easiest way to copy the all the values from a column in a table to another column in the same table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用单个语句(如果列具有相同的数据类型)
With a single statement (if the columns have the same datatype)
此脚本将使用相应行中 field2 的值更新 field1 中的所有值
This script will update ALL values in the field1 with the values from the field2 in the corresponding row