bare lav en betinget ordre ved med en sagsfremstilling som sådan
QUERY:
SELECT *
FROM $tableName
GROUP BY primary_category
ORDER BY
CASE primary_category WHEN 'USA' THEN 1 ELSE 2 END ASC,
primary_category ASC
EDIT:
hvis du vil bestille efter flere felter først og derefter resten, kan du gøre det sådan her.
SELECT *
FROM $tableName
GROUP BY primary_category
ORDER BY
CASE primary_category
WHEN 'USA' THEN 1 --#-- 1 for usa
WHEN 'China' THEN 2 --#-- 2 for china
ELSE 3 END ASC, --#-- 3 for anything else
primary_category ASC