I want to show records from a table having a date column from sqldatabase in dates order. How should I?
|
|
|||||||||
|
|
|
|
||
|
|
|
|
you can use
where |
||
|
|
|
|
optionally you can add DESC to reverse the order (newest to oldest):
|
||
|
|
|
|
If I understand your question correctly, you want to use an ORDER BY clause on the column containing the dates. |
||
|
|
|
|
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. |
||
|
|
