MySql中取前几行数据使用limit来完成_MySQL
程序员文章站
2022-06-16 11:18:00
...
bitsCN.com
在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条
SELECT cat_id FROM shop_goods_type order by cat_id desc limit 1
bitsCN.com
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条
SELECT cat_id FROM shop_goods_type order by cat_id desc limit 1
bitsCN.com
上一篇: php时间转换解决思路
下一篇: PHP升级方法