多个SQLite中的选择(大量参数)

时间:2011-07-27 23:09:12

标签: sql sqlite

我试图用类似于

的查询选择一个表的列
select * from table where id= (2,5,7,32,21,76......);

where子句无效但反映了我想要的内容。这样做是否有简短的符号或者我应该使用

    select * from table where id= 2 or id=5 or id =7 .......;

提前致谢

1 个答案:

答案 0 :(得分:0)

select * from tables where id in (2, 5, 7, 32, ...)