一、插入另一张表中的数据 insert table_name (uuid,name,age,addres) select uuid,name,age,addres from table2 二、关联其他表更新数据 update table1 set id=table2.id from table2 where table1.name=table2.name and table1.sex='男'