21,893
社区成员




SELECT * FROM table ORDER by c desc limit 0,10;
SELECT * FROM table GROUP by a,b ORDER by c desc limit 0,10;
SELECT distinct a,b FROM table ORDER by c desc limit 0,10;
select *,count(distinct a,b) FROM table froup by a,b ORDER by c desc limit 0,10;