Having:
SELECT DISTINCT TOP 100 * FROM mytable ORDER BY date ASC
How can I make the nulls in date go last?
Thanks a lot.
|
|
|
Some databases support a syntax for NULLs last in an
Or, if I don't want to type so much:
You can also put the distinct in a subquery:
Assuming that |
|||||||||
|