我想对
我的命令所在的表的任何记录和所有记录使用更新:column1 <> column2
update table1 set name = (select name from table2
where code1 <> code2 and table1.id=table2.id)
可能吗?
是否可以在更新命令中使用内连接?
我想对
我的命令所在的表的任何记录和所有记录使用更新:column1 <> column2
update table1 set name = (select name from table2
where code1 <> code2 and table1.id=table2.id)
可能吗?
是否可以在更新命令中使用内连接?