vote up 0 vote down star

I want to show records from a table having a date column from sqldatabase in dates order. How should I?

flag
@dnyaneshwar: order by date – Syed Tayyab Ali Oct 9 at 20:11
What an odd question... What have you tried? – mjv Oct 9 at 20:17
@mjv, perhaps English is not their native language? – KM Oct 9 at 20:20
@KM I'm quite aware and sensitive about language barriers. In fact I typically try and gap these as much possible. In fact, my question was asked in that spirit: if the OP were to post a snippet of code, or a web page where he's been or whatever else, it may help us all understand the very nature of his quest. If all he/she needed is to read about ORDER BY, fluency English is not his/her only handicap... – mjv Oct 9 at 22:27

5 Answers

vote up 2 vote down
SELECT
    *
    FROM yourTable
    ORDER BY yourDateColumn
link|flag
vote up 1 vote down

you can use order by

select * from my_table t order by t.date_column

where date_column is a column name in your table.

link|flag
vote up 0 vote down
SELECT * FROM `table_name` ORDER BY `dates_column`

optionally you can add DESC to reverse the order (newest to oldest):

SELECT * FROM `table_name` ORDER BY `dates_column` DESC
link|flag
vote up 0 vote down

If I understand your question correctly, you want to use an ORDER BY clause on the column containing the dates.

link|flag
vote up 0 vote down

The database engine should handle the proper sorting for a date or timestamp column using an ORDER BY clause. The only exception might be if your column is of type VARCHAR and holds a date of the form "mm/dd/yyyy". Then you've got a bit more work to do.

link|flag

Your Answer

Get an OpenID
or

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