mysql取前几行数据limit用法

时间:2022-09-23 08:39:11

转自http://www.cnblogs.com/study100/archive/2013/07/30/3224250.html

mysql中是没有top关键字的,在mysql中可以用limit来完成功能。

order by id desc limit 10 按照id的倒序排序 取出前10条
order by id desc limit 0,10 按照id的倒序排序 取出前10条
order by id limit 5,10 按照id的正序排序 从第5条开始取10条

sql语句:

SELECT cat_id FROM shop_goods_type order by cat_id desc limit 1