U kunt dit bereiken door te bestellen op kolompositie in plaats van kolomnaam .
Voor jouw geval ORDER BY 1
zou moeten werken.
SELECT
things.id
,group_concat(DISTINCT
CASE
WHEN things.name <> 'United States' THEN 'Non-US'
WHEN things.name IS NULL THEN 'Unknown'
ELSE things.name
END
ORDER BY 1 SEPARATOR ', ')
FROM things
GROUP BY things.id