兢任

博客园 首页 新随笔 联系 订阅 管理

1.单个字段

update table1 set table1.column = (select table2.column from table2 where table1.id = table2.id) where 

2.多个字段

update table1 set (table1.column1,table1.coumn2,...) = (select table2.column1,table2.column2,... from table2 where table1.id = table2.id) where 

posted on 2015-11-18 13:45  兢任  阅读(104)  评论(0编辑  收藏  举报