假设一个表中有100个条目,并且需要从id 3到id 7获取数据(意味着来自5个id(s)的数据,留下id 1和2)。
是否有可能使用php mysql?
答案 0 :(得分:0)
如果在一系列数字中搜索,这样的事情会有所帮助。
select * from test where id between 3 and 7;
与此相似
select * from test where id >= 3 and id <=7;
如果您想要3到7但没有id
数字6的结果,那么这样的事情也会有所帮助。
select * from test where id in (3,4,5,7);
再次将上述查询重新写入此
select * from test where id >= 3 and id <=7 and id<>6;
还可以在SQL fiddle上查看此示例,您还可以检查查询结果所需的时间。