Answers for "SQL SERVER ORDER BY DATE NULL 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
0

SQL SERVER ORDER BY DATE NULL LAST

ORDER BY 
   IIF(Next_Contact_Date IS NULL, 1, 0),
   Next_Contact_Date;
Posted by: Guest on January-06-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language