如意小白菜

文章
5
资源
0
加入时间
2年10月24天

mysql取前几行数据limit用法

转自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 ...