Oracle is giving me an error (ORA-00907: missing right parenthesis) when I run this query:

select * 
from reason_for_appointment 
where reason_for_appointment_id in 
(
    select reason_for_appointment_id 
    from appointment_reason 
    where appointment_id = 11 
    order by appointment_reason_id
)

However, when I run just the subquery, there's no error.

Can anyone explain what the problem is?

link|improve this question

What is your reasoning for doing this? The ordering should be an unnecessary operation because Oracles indexing will do this behind the scenes. – Dana the Sane Oct 29 '08 at 20:00
What? Do what behind the scenes? And why will it do whatever with an index? – Mark Brady Oct 30 '08 at 15:34
feedback

6 Answers

up vote 3 down vote accepted

The problem is that ORDER BY is not permiited inside a subquery like this one. Why did you want to have one?

link|improve this answer
I'm guessing he wants the output ordered by the ID field. See my answer for how to do that. – Dave Costa Jan 20 '09 at 16:16
feedback

The inner query results will never be displayed, so theres no point in doing the order by in the nested select. Apply it to the outer query instead.

link|improve this answer
feedback

It looks like you're wanting to display the results from one table using an ordering defined in another table. An inner join should suffice.

select reason_for_appointment.*
from reason_for_appointment rfa, appointment_reason ar
where rfa.reason_for_appointment_id = ar.reason_for_appointment_id
and ar.appointment_id = 11
order by ar.appointment_reason_id;
link|improve this answer
1  
No, that's not always true. IN can be recast as a join IF AND ONLY IF the column in the IN clause has a unique constraint. If there are 27 rows with reason_for_appointment_id of "1" in appointment_reason You'll get 27 rows in the result with a join but only 1 with an IN. You people scare me. – Mark Brady Oct 30 '08 at 15:43
feedback

select * from reason_for_appointment where reason_for_appointment_id in (select reason_for_appointment_id from appointment_reason where appointment_id = 11 order by appointment_reason_id)

try something like: with auxiliar as (select reason_for_appointment_id from appointment_reason where appointment_id = 11 order by appointment_reason_id) select reason_for_appointment_id from appointment_reason where reason_for_appointment_id in (select reason_for_appointment_id from auxiliar)

link|improve this answer
feedback

If your goal is to have the output ordered, you simply want to move the ORDER BY outside of the subquery:

select * from reason_for_appointment where reason_for_appointment_id in
 (select reason_for_appointment_id from appointment_reason where appointment_id = 11)
 order by reason_for_appointment_id

( I'm assuming that where you wrote "appointment_reason_id" you meant "reason_for_appointment_id". If there really are two different columns with these names ... ouch.)

link|improve this answer
feedback

In my case, i need an order by in my sub query since I only need the the first row in the IN clause using rownum=1.

SELECT 
    PACKAGE_TYPE, FILE_TYPE
FROM
    VMINING.VM_RECIPE_BUYOFF_FILE
WHERE
    PACKAGE_TYPE IN ( 
        SELECT 
            PACKAGE_TYPE
        FROM 
            VMINING.VM_RECIPE_BUYOFF_FILE
        WHERE
            '128-ETQFPTG04-DB-ICOS05.zip' like '%' || PACKAGE_TYPE || '%'
            AND  rownum = 1
        ORDER BY length(PACKAGE_TYPE) desc)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.