这个太简单了。用IN函数即可。Select * From 表where A In (M1,M2,M3);
select * from 数据表 where 字段A = 'M1' or 字段A = 'M2' or 字段A = 'M3'在查询sql下,复制上面语句,粘贴入执行。