select * FROM 表名 ORDER BY 字段 asc LIMIT 10
select * FROM 表名 ORDER BY 字段 desc LIMIT 10
select top 10 * from 表名 order by time desc以最新时间取最新十个数据,或以最新id序号(如果有id序号)取最新十个数据
select top 10 * from 表名 order by id desc
首先你这个表肯定是有个排序的,他肯定不是随机乱排,比如这个排序是升序的,你再降序排取top10 就行了select top 10 * from table order by xxx desc
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)