admin

将数据从一列复制到另一列

sql

我想根据特定条件将数据从DB1.Table1的Col11列移至DB2.Table7的Col555。我该怎么做 ?是否有类似的声明-

select Col11 from DB1.Table1
into Col555 of Db2.Table7
where Col11 = 'Important'

阅读 242

收藏
2021-06-07

共1个答案

admin

您不需要COPYINSERT但是UPDATE(使用JOIN):

UPDATE [DB2].[Table7]
SET [Table7].[Col555] = [Table1].[Col11]
FROM [Table1] JOIN [Table7] ON -- add the base for the join here...
WHERE [Table1].[Coll] = 'Important'
2021-06-07