不同的表之间的复制
inset into 表2(列名 ) select 列名 from 表1 要求目标表存在。即表2存在
同一张表的不同的数据列复制
update sys_dept a inner join sys_dept b on a.dept_id=b.dept_id set a.street_community_grid_id=b.street_id;
加粗的部分 是表名 后面是要更新的列名和更新的值
inset into 表2(列名 ) select 列名 from 表1 要求目标表存在。即表2存在
update sys_dept a inner join sys_dept b on a.dept_id=b.dept_id set a.street_community_grid_id=b.street_id;
加粗的部分 是表名 后面是要更新的列名和更新的值