I am trying to do insert to a table and it uses one select statement for one column. Below is the illustration of my query.
INSERT INTO MY_TBL (MY_COL1, MY_COL2)
VALUES (
(SELECT DATA FROM FIR_TABL WHERE ID = 1 AND ROWNUM = 1 ORDER BY CREATED_ON DESC),
1
);
It throws ORA-00907 Missing right Parenthesis
. If I remove ORDER BY
from this, it works as expected. But I need order it. Please clarify.
Thanks in advance.
You don't use a
SELECT
when using theVALUES
keyword. Use this instead:Your edited query would look like:
Both the current answers ignore the fact that using
order by
andrownum
in the same query is inherently dangerous. There is absolutely no guarantee that you will get the data you want. If you want the first row from an ordered query you must use a sub-query:You can also use a function like
rank
to order the data in the method you want, though if you had twocreated_on
dates that were identical you would end up with 2 values withrnk = 1
.I agree that ordering should be performed when extracting data, not when inserting it.
However, as a workaround, you could isolate the ORDER BY clause from the INSERT incapsulating your whole SELECT into another SELECT.
This will avoid the error: