1.如何查询前5-12条数据 select * from table limit 5,7; 2.倒序查询语句 select * from table while 查询条件 order by 排序字段 desc; 3.