mysql 从表中选出数据然后排序

    xiaoxiao2023-03-24  6

    select Country,num from (SELECT count(*) as num,Country FROM `webdata80` group by Country ) a order by num desc

    其中a为派生表的别名

    转载请注明原文地址: https://ju.6miu.com/read-1202499.html
    最新回复(0)