update table1 set field1=table2.field1, field2=table2.field2 from table2 where table1.id=table2.id 添加字段: alter table 表名 add 字段名 类型 删除字段: alter table 表名 drop column 字段名
本文共 218 字,大约阅读时间需要 1 分钟。
update table1 set field1=table2.field1, field2=table2.field2 from table2 where table1.id=table2.id 添加字段: alter table 表名 add 字段名 类型 删除字段: alter table 表名 drop column 字段名
转载于:https://www.cnblogs.com/yzwdli/p/5147512.html