看 where后面的字段类型是什么in后面就是什么比如 字段是int 则where 字段 in(1,2,3,4,5.....)字段是char 则where 字段 in('1','2',....)也有可能是表某个字段集比如 ...where 字段(select 新表字段 from 新表)
就是 select 列名 from表 where 列名 in(selec 列名from 表 where 条件)