介绍 使用in关键字进行条件查询。 命令 select 字段1,字段2 from 表名 where 字段名 in (元素1,元素2); 例子 同时查询出a表中id等于1和2的两条数据: select * from a where id in (1,2);