Canman2005 Posted March 29, 2006 Share Posted March 29, 2006 Dear allI have a sql statement with a ORDER BY at the end of it, I then have 3 fields in my database, the fields areday (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 advanceEd Quote Link to comment Share on other sites More sharing options...
toplay Posted March 29, 2006 Share Posted March 29, 2006 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--] Quote Link to comment Share on other sites More sharing options...
Canman2005 Posted March 29, 2006 Author Share Posted March 29, 2006 coolthanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.