我试图用类似于
的查询选择一个表的列select * from table where id= (2,5,7,32,21,76......);
where子句无效但反映了我想要的内容。这样做是否有简短的符号或者我应该使用
select * from table where id= 2 or id=5 or id =7 .......;
提前致谢
答案 0 :(得分:0)
select * from tables where id in (2, 5, 7, 32, ...)