1、mysql多重查询

select * from a_table ORDER BY b,c asc limit 1, 10;

(对表a_table中的字段b降序排列,得到的结果再按字段c降序排列,最后取前10条数据)