Home > Ask the Oracle Database / Applications Experts > SQL Questions & Answers > ORDER BY a specified sequence
Ask The Oracle Expert: Questions & Answers
EMAIL THIS

ORDER BY a specified sequence

Rudy Limeback EXPERT RESPONSE FROM: Rudy Limeback

Pose a Question
Other Oracle Categories
Meet all Oracle Experts
Become an Expert for this site


Oracle tips, scripts, and expert advice
Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


>
QUESTION POSED ON: 21 April 2006

Hi. I'm trying to create an SQL query with the IN clause where I give the IDs to match:

select * from tblProject
where ProjectID in (3,1,2)

Now I want the order of these records to be the same as I give in the IN clause. But it's not happening. Can you please help me with this problem?



Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google



RELATED CONTENT
SQL
How to check SQL query construction with the Mimer Validator
Using the SQL GROUP BY clause for counting combinations
How to use an SQL CASE expression
How to sort an SQL UNION query with special ORDER BY sequence
How to use string functions to make an SQL join
An SQL solution for a customer order homework problem
How to use SQL's POSITION function with substrings
Using SQL date functions to get totals for last three days
Using CASE in the SQL ORDER BY clause
What's the difference between an SQL inner join and equijoin?

Oracle and SQL
Can I specify Oracle column order in my database table?
Review: Oracle's 11g R2 database has some good and bad
SELECT statement syntax and examples
Oracle PL/SQL tutorial
PL/SQL datatypes in Oracle
PL/SQL functions and triggers in Oracle
Stored procedures in PL/SQL
Do I need a license for SQL Developer Data Modeler in Oracle?
Using the SQL GROUP BY clause for counting combinations
How to use an SQL CASE expression
Oracle and SQL Research

RELATED GLOSSARY TERMS
Terms from Whatis.com − the technology online dictionary
autonomous transaction  (SearchOracle.com)
CFML  (SearchOracle.com)
dynamic SQL  (SearchOracle.com)
foreign key  (SearchOracle.com)
Java Database Connectivity  (SearchOracle.com)
Open Database Connectivity  (SearchOracle.com)
Oracle  (SearchOracle.com)
stored procedure  (SearchOracle.com)
The Open Group  (SearchOracle.com)

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary


Obtaining a specific sort sequence based on a set of given values is easily accomplished with a CASE expression. The basic strategy is to "assign" specific sorting values to each row in the ORDER BY clause, based on the value of some column or columns in each row. Note that the value assigned is not actually in the row.

order 
    by case when projectid = 3 then 56
            when projectid = 1 then 57
            when projectid = 2 then 58
          else null end 

Let me make a few comments about this. First, the CASE expression will evaluate to either 56, 57, 58 (or NULL). These values were chosen simply to achieve a sequence. They could just as easily have been:

order 
    by case when projectid = 3 then 1
            when projectid = 1 then 2
            when projectid = 2 then 3
          else null end 

However, by assigning 1, 2, and 3 to 3, 1, and 2, many of you might have been hopelessly confused. The point is, the values that are assigned are not actually in the row, they are like a virtual column. Each row is "assigned" or "tagged with" the value of the CASE expression, which is calculated based on the value of the projectid column in that row. It doesn't matter that the CASE expression isn't actually part of the row, because you can still sort on it.

These values, 56, 57, 58 (or NULL), which were "assigned" to each row, could have been anything. Another example might be:

order 
    by case when projectid = 3 then 'Curly'
            when projectid = 1 then 'Larry
            when projectid = 2 then 'Moe'
          else null end 

This CASE expression works exactly the same way as the previous two. The row with ProjectID 3 will sort ahead of the row with ProjectID 1, which will sort ahead of the row with ProjectID 2.

So the basic strategy is to write a CASE expression in the ORDER BY clause to assign a value to each row which will result in that row being sorted into the desired sequence.

But what's with this ELSE NULL business? Well, that's just my way of ensuring data integrity. Since NULLs always sort first, we want any rows where ProjectID isn't 3, 1, or 2 to be at the top of the list. If there actually were such a row, it would obviously be a data integrity problem, and we would need to action it!

Actually, ELSE NULL is redundant. If the ELSE clause is missing from the CASE expression, NULL is assumed. But my coding style is to write it anyway. That makes it easy to go in and change it to 59 or 'Shemp' if I decide that rows where projectid isn't 3, 1, or 2 should sort last.

One final word. In MySQL, there's a lovely function called FIELD that can be used here. If you use MySQL, do look it up in the manual. Its elegance can be seen from this example:

select * 
  from tblproject
 where projectid in (3,1,2)
order 
    by field(projectid,3,1,2)

If you're constructing the SQL with a scripting language (e.g. PHP, ColdFusion), you can see immediately how this simplifies life greatly.




Search and Browse the Expert Answer Center
Search and browse more than 25,000 question and answer pairs from more than 250 TechTarget industry experts.
Browse our Expert Advice



Oracle White Papers: Fusion Middleware
HomeNewsTopicsTipsAsk the ExpertsMultimediaWhite PapersProductsBlogs
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2003 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts