我们如何在条件中使用SQL语句ID IN,以便它只适用于例如
的条件 select * from user where id in (4,5,6) ;
现在我想在查询中添加一些与这些ID一起使用的条件
select * from user where id in (4,5,6) and status = 1 ;
现在,如果我这样做,它会搜索整个数据库而不是查看4 5和6 id 我怎么能强迫它只搜索4 5和6。请引导我,这样我就可以完成它不工作的工作我不知道它出了什么问题。
答案 0 :(得分:1)
试试这个
select * from user where id in (4,5,6) and status='1';
希望这会对你有所帮助。
答案 1 :(得分:0)
$ c =“select * from complaint where id in(4,5,6,7)and application_status!='Decided'和application_status!='Irrelevant'”;