vote up 0 vote down star

Can you please help me in solving this problem. I am trying to order the results of an SQL query by date, but I'm not getting the results I need.

The query I'm using is:

SELECT date FROM tbemp ORDER BY date ASC

Results are:

01/02/2009
03/01/2009
04/06/2009
05/03/2009
06/12/2008
07/02/2009

Results should be:

06/12/2008
03/01/2009
01/02/2009
07/02/2009

I need to select the date in the format above.

Your help is much appreciated.

flag
2  
It's important when you post questions to provide specifics, like what database you're using and what datatype the DATE column is in your table. It makes it easier for people trying to help you; they don't have to guess. – Ken White Oct 9 at 20:34
While I know its not really essential to your answer I'd LOVE to hear a GOOD reason why that column isn't a datetime... – Achilles Oct 9 at 20:57

2 Answers

vote up 5 vote down

It sounds to me like your column isn't a date column but a text column (varchar/nvarchar etc). You should store it in the database as a date, not a string.

If you have to store it as a string for some reason, store it in a sortable format e.g. yyyy/MM/dd.

As najmeddine shows, you could convert the column on every access, but I would try very hard not to do that. It will make the database do a lot more work - it won't be able to keep appropriate indexes etc. Whenever possible, store the data in a type appropriate to the data itself.

link|flag
or yyyy-mm-dd even better – dusoft Oct 9 at 20:31
2  
@dusoft: It doesn't really matter what separator you use, so long as it's in the right order of significance. – Jon Skeet Oct 9 at 20:33
@Jon: It's easier to compare two hyphens than two slashes, because you don't have to deal with the angle. :-D – Zed Oct 9 at 21:17
vote up 5 vote down

It seems that your date column is not of type datetime but varchar. You have to convert it to datetime when sorting:

select date
from tbemp
order by convert(datetime, date, 103) ASC

style 103 = dd/MM/yyyy (msdn)

link|flag
This won't sort correctly if the current language and date format settings cause interpret aa/bb/cccc as month/day/year, as is the case for most US installations of SQL Server. (I'm assuming from the use of CONVERT that this is T-SQL, so you can specify style 103 as the optional third parameter to CONVERT and override any language or dateformat context.) – Steve Kass Oct 9 at 23:50
thanks for the info. – najmeddine Oct 10 at 0:55

Your Answer

Get an OpenID
or

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