select * from 表 where 字段 in(select 临时表名.字段 from (另一个字段)临时表名);

delete from 表名 where 字段 in select 临时表名.字段 from (另一个字段)临时表名);

update 表名 set 字段=新值 where 字段 in(select 临时表名.字段 from (另一个字段)临时表名));

insert into 表名 values (值1,值2,值3);