/ Published in: SQL
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
SELECT custid, region FROM [Sales].[Customers] ORDER BY CASE WHEN region IS NULL THEN 1 ELSE 0 END, region;