且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

mysql 倒序 取10条

更新时间:2022-08-13 10:07:54

引用:http://zhidao.baidu.com/question/274284932.html

select * from yourtable where 查询条件 order by id desc limit 0,10;
按id倒序排列,且取前10条。