最常用update语法是:
update 表名 set 字段=值 where 条件
当更新内容需要select结果获取,语法:
update table1 set a1,a2,a3=(select b1,b2,b3 from table2 where table1.column_name=table2.column_name)
时间: 2024-09-29 16:57:03
最常用update语法是:
update 表名 set 字段=值 where 条件
当更新内容需要select结果获取,语法:
update table1 set a1,a2,a3=(select b1,b2,b3 from table2 where table1.column_name=table2.column_name)