Skip to content

Instantly share code, notes, and snippets.

@solepixel
Created August 29, 2015 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solepixel/7a64e28d95be9f0c13db to your computer and use it in GitHub Desktop.
Save solepixel/7a64e28d95be9f0c13db to your computer and use it in GitHub Desktop.
Custom Sort Order in MySQL (order by case)
ORDER BY CASE
WHEN `col` = ‘item’ THEN 1
WHEN `col` = ‘thing’ THEN 2
WHEN `col` = ‘stuff’ THEN 3
WHEN `col` = ‘boom’ THEN 4
ELSE 5
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment