I need to write a sql statement to select all users ordered by lastname, firstname. This is the part I know how to do :) What I don\'t know how to do is to order by non-nu
ORDER BY CASE WHEN name IS NULL THEN 1 ELSE 0 END, name;