I have a SQL table with a datetime field. The field in question can be null. I have a query and I want the results sorted ascendingly by the datetime field, however I want rows where the datetime field is null at the end of the list, not at the beginning.

Is there a simple way to accomplish that?

link|improve this question

66% accept rate
Exact duplicate of stackoverflow.com/questions/151195/… – Bill Karwin Sep 30 '09 at 15:03
@Bill I think the accepted answer to that question my be incorrect or at least not complete per my comments below. – Gratzy Sep 30 '09 at 15:09
Actually, both are equivalent. – OMG Ponies Sep 30 '09 at 17:45
I didn't see the second order by, my bad you are correct – Gratzy Sep 30 '09 at 18:00
feedback

2 Answers

up vote 16 down vote accepted
select MyDate
from MyTable
order by case when MyDate is null then 1 else 0 end, MyDate
link|improve this answer
This will make all of the not null date fields equal as "0" and the null fields "1" so the nulls will come after the not nulls but the not nulls won't be sorted. – Gratzy Sep 30 '09 at 15:06
@Gratzy: The null dates are ordered with a value higher than those that are not null, so the null values will appear at the end - it is a valid, correct answer. – OMG Ponies Sep 30 '09 at 17:37
@Gratzy: Note the second sort clause: the NOT NULL dates will come first as they all will get sorted by 0. Then, the second sort clause takes effect and they will all get ordered by MyDate. – RedFilter Sep 30 '09 at 17:46
@OrbMan I apologize I didn't see the second order by my bad – Gratzy Sep 30 '09 at 17:59
1  
+1 Nifty trick (and just what I need) :-). – sleske Mar 22 '10 at 10:22
show 1 more comment
feedback
order by coalesce(date-time-field,large date in future)
link|improve this answer
2  
While this will generally work, it should be noted this answer has a few issues: large date in future may collide with or be less than actual data, resulting in an imperfect sort. Also, it is a "magic number" solution that is not self-documenting. – RedFilter Sep 30 '09 at 17:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.