Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jonhassall/7729cab6b1b1f2447f8b9c2758bec8f5 to your computer and use it in GitHub Desktop.
Save jonhassall/7729cab6b1b1f2447f8b9c2758bec8f5 to your computer and use it in GitHub Desktop.
SQL sorting - Alpha > Numbers > Symbols
SELECT id, title
FROM table
ORDER BY
CASE
WHEN title regexp '^[a-zA-Z]+' THEN
1
WHEN title regexp '^[0-9]+' THEN
2
WHEN title regexp '^[^\w]+' THEN
3
WHEN title = ''
OR
title IS NULL THEN
4
ELSE 5
END,
title * 1 ASC,
title
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment