标签:
最常用update语法是:
update 表名 set 字段=值 where 条件
当更新内容需要select结果获取,语法:
update table1 set a1,a2,a3=(select b1,b2,b3 from table2 where table1.column_name=table2.column_name)
DB2--update set=(select)语法总结
原文地址:http://www.cnblogs.com/zhlvy/p/4382417.html