prøv som at bruge midlertidig tabel
SELECT *
FROM
(
SELECT country, sum(id) as cnt
FROM mygroup GROUP BY country WITH rollup
) t
ORDER BY cnt;
Denne artikel kan hjælpe dig linktekst
prøv som at bruge midlertidig tabel
SELECT *
FROM
(
SELECT country, sum(id) as cnt
FROM mygroup GROUP BY country WITH rollup
) t
ORDER BY cnt;
Denne artikel kan hjælpe dig linktekst