sql server order by nulls last

Solutions on MaxInterview for sql server order by nulls last by the best coders in the world

showing results for - "sql server order by nulls last"
Juan Manuel
02 Mar 2017
1SELECT *FROM creditCardORDER BY CASE WHEN monthlyLimit IS NULL THEN 1 ELSE 0 END DESC, monthlyLimit DESC;