是否可以从mysql数据库表中将数据从特定的id获取到特定的id?

时间:2017-12-30 23:40:06

标签: php mysql database

假设一个表中有100个条目,并且需要从id 3到id 7获取数据(意味着来自5个id(s)的数据,留下id 1和2)。
是否有可能使用php mysql?

1 个答案:

答案 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上查看此示例,您还可以检查查询结果所需的时间。