Jump to content

[SOLVED] Customizing Order of Results?


Gwaihirjp

Recommended Posts

Hi, I have a table in the database full of information of cars, and when I extract the info via PHP I want it ordered by company name but not exactly in alphebetical order. I need the company "TOYOTA" to be on top, and then all the other companies (Nissan, Honda, Chevrolet, etc) to come after it in alphabetical order. Only "TOYOTA" has to be prioritized and at the top. I know, it's a strange way to order soemthing, but is it possible?

 

I looked up on how to use "order by field", but I'm not sure if that's the way to accomplish it. Is there an easier way to do it?

Link to comment
https://forums.phpfreaks.com/topic/140264-solved-customizing-order-of-results/
Share on other sites

Easier to make 2 separate requests, and store them in different variables

Not at all.

 

Use "ORDER BY ( yourField = 'TOYOTA' ) DESC, yourField ASC"

Wow, this worked like magic!! I didn't know there was a way to order it like that. Thank you so much! :D

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.