/ Published in: SQL
Expand |
Embed | Plain Text
SELECT custid, region FROM [Sales].[Customers] ORDER BY case when region IS NULL THEN 1 ELSE 0 END, region;
You need to login to post a comment.
danfsmith on 11/09/11
1 person have marked this snippet as a favorite
SELECT custid, region FROM [Sales].[Customers] ORDER BY case when region IS NULL THEN 1 ELSE 0 END, region;
You need to login to post a comment.