I want to show date column in DESC order where date is entered as VARCHAR and is in order 20-JUN-2007 I have already used ORDER BY RIGHT(vPublishedDate, 4) but it doesn't effect the month and date
|
|
Here is one way to do it using
As an example:
|
|||||||||
|
|
Why are you using a |
|||
|
|
|
You really should be storing dates as dates, not character-type fields. Then you wouldn't need to worry about this sort of "SQL gymnastics" (as I like to call it). Databases are for storing data, not formatting. By forcing yourself to manipulate sub-columns, you basically prevent the database from performing any useful optimisations. In order to do what you want with the data you have you have to do something like:
And this would be a serious performance killer. Now there may be a function which can turn that particular date format into a proper date but I urge you: don't use it. Set up or change your database to use an intelligent schema and all these problems will magically disappear. It's a lot easier to turn a date column into any sort of output format than to do the same with a character column. |
||||
|
|
|
Change that You can also try this, although this is NOT the RIGHT approach. Select STR_TO_DATE(your_date_column,'%d/%m/%Y') AS your_new_date from your_table order by your_new_date DESC |
|||
|
|
|
Try converting the varchar to date using str_to_date and then you can apply the sorting logic. |
|||
|
|
|
I would suggest you to change the type as Date. Then run a script which converts your dates to the correct DB format. Sorting would be then be just as simple as sorting ids in MySql |
|||
|
|