Jump to content

Multiple order by


Canman2005

Recommended Posts

Dear all

I have a sql statement with a ORDER BY at the end of it, I then have 3 fields in my database, the fields are

day (ie: 02)
month (ie: 11)
year (ie: 2004)

basically at the moment it orders by results by id number, but what I want to do is to order the results by day, month and year so it orders the results by newest to oldest using the day, month and year stamp.

Is this possible?

Thanks in advance

Ed
Link to comment
https://forums.phpfreaks.com/topic/6064-multiple-order-by/
Share on other sites

Try:
[!--sql--][div class=\'sqltop\']SQL[/div][div class=\'sqlmain\'][!--sql1--][span style=\'color:blue;font-weight:bold\']SELECT[/span] * [color=green]FROM[/color] [color=orange]table_name[/color] [color=green]WHERE[/color] something [color=green]ORDER BY[/color] `year` DESC, `month` DESC, `day` [color=green]DESC[/color] [!--sql2--][/div][!--sql3--]
Link to comment
https://forums.phpfreaks.com/topic/6064-multiple-order-by/#findComment-21817
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.