If I have the following entries in my database:
ID Name 1 [null] 2 [empty string] 3 Alpha 4 Bravo 5 Charlie
..then how can I order
ORDER BY (CASE WHEN Name IS NULL THEN 1 WHEN Name IS NULL THEN 2 ELSE 3 END) DESC