select * from table1 order by case Language when null then 1 else 0 end, Language
No matter which way I play around with it, it always displays nul
You have to use the is operator when checking for null
is
null
select * from table1 order by case when Language is null then 1 else 0 end, Language