Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Sub-query in order by clause

Sub-query in order by clause

From: Ashish <ash03_at_att.net>
Date: Fri, 04 Apr 2003 08:33:49 -0800
Message-ID: <F001.0057A7C6.20030404083349@fatcity.com>


Hello list,

In Oracle 9.2.0.1, you can now order by using a single-row subquery Here is an example:

SELECT emp.deptno, empno, ename
FROM emp
ORDER BY ( SELECT deptno FROM dept

            WHERE dept.deptno = emp.deptno );

The question I have is what is the usefulness of this? Under which circumstances
this can be used? Any ideas?

-Ashish

OCP DBA
--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Ashish
  INET: ash03_at_att.net

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services

---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Apr 04 2003 - 10:33:49 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US