select * from 表名 order by 字段名 desc limit 0,5; // 倒序查询select * from 表名 order by 字段名 ASC limit 0,5; // 升序查询select * from 表名 //查询表下全部信息select * from 表名 order by 字段名 limit 0,5 // 默认是升序查询