Current location: Hot Scripts Forums » Programming Languages » PHP » Php:Problem in sorting of elements?


Php:Problem in sorting of elements?

Reply
  #1 (permalink)  
Old 10-21-10, 01:38 AM
esandra esandra is offline
Newbie Coder
 
Join Date: Aug 2009
Posts: 47
Thanks: 1
Thanked 0 Times in 0 Posts
Php:Problem in sorting of elements?

Hi. I am having problems arranging some elements.
This is what happens when we do an 'order by field_name asc':

0302MZ2010
0401ML2010
0505ML2010
0610ML2009
0615MZ2010

This is what I want to happen:

0302MZ2010
0401ML2010
0505ML2010
0615MZ2010
0610ML2009

Arrange the year in desc order and the rest should be in asc order.
Now, I'm very confused and I don't know how to do this.
Thanks a lot and have a nice day.
Reply With Quote
  #2 (permalink)  
Old 10-21-10, 04:10 AM
Nico's Avatar
Nico Nico is offline
Community Leader
 
Join Date: Sep 2005
Location: Spain
Posts: 8,075
Thanks: 11
Thanked 88 Times in 83 Posts
Code:
SELECT
    [ ... ],
    RIGHT(`field_name`, 4) AS `year`
FROM [ ... ]
ORDER BY
    `year` DESC, `field_name` ASC
Try something like this.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
sorting in a custom grid view painthu ASP.NET 1 05-17-08 02:51 PM
Default Sorting of Listings currently is definitely wrong! jeveux Hot Scripts Forum Questions, Suggestions and Feedback 5 07-29-07 07:37 PM
sorting table using asp with vbscript. wsy_bin ASP 4 05-05-05 02:54 AM
How to do sorting and paging for search function lostinsight ASP.NET 1 11-14-04 11:44 PM
How do i return the maximum of the array elements? toezaurus81 C/C++ 1 06-17-04 03:30 PM


All times are GMT -5. The time now is 08:43 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.