题解 | #查询结果限制返回行数#
查询结果限制返回行数
http://www.nowcoder.com/practice/c7ad0e2df4f647dfa5278e99894a7561
select device_id from user_profile limit 2;
limit m, n 表示从 m + 1 开始选取 n 行
也可以使用 select device_id from user_profile where id <= 2;
查询结果限制返回行数
http://www.nowcoder.com/practice/c7ad0e2df4f647dfa5278e99894a7561
select device_id from user_profile limit 2;
limit m, n 表示从 m + 1 开始选取 n 行
也可以使用 select device_id from user_profile where id <= 2;
相关推荐