日期:2014-05-18 浏览次数:20491 次
select * from 表 where 字段 in('a1','a2','a3',......) ------解决方案--------------------
如果后面的值是通过另外一张表查询出来的可以这样: select * from test where 字段 in(select col from 表名 where 过滤条件)