Answers for "sql server order by nulls last"

SQL
0

sql server order by nulls last

SELECT *FROM creditCardORDER BY CASE WHEN monthlyLimit IS NULL THEN 1 ELSE 0 END DESC, monthlyLimit DESC;
Posted by: Guest on March-16-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language