题解 | #查询结果限制返回行数#
查询结果限制返回行数
https://www.nowcoder.com/practice/c7ad0e2df4f647dfa5278e99894a7561
select device_id from user_profile limit 2; select device_id from user_profile limit 0, 2; select device_id from user_profile limit 2 offset 0; select device_id from user_profile where id <=2;
对其他大佬给出的解决方案进行一个集成,
1、第一种SQL是第二种SQL写法的简写,limit 0,2表示从第一条数据开始(0代表第一条),每页只显示2条数据
2、使用offset允许查询从中间某行开始(不一定从首行开始)的任意几行数据
3、第四种写法是查询id值<=2的数据