select * from 表 where 字段 in(select 临时表名.字段 from (另一个字段)临时表名);
delete from 表名 where 字段 in select 临时表名.字段 from (另一个字段)临时表名);
update 表名 set 字段=新值 where 字段 in(select 临时表名.字段 from (另一个字段)临时表名));
insert into 表名 values (值1,值2,值3);
标签:语句,insert,临时,MySQL,基础,字段,表名,where,select From: https://blog.51cto.com/u_16188095/6994776