I got the following oracle-sql-statement:
select xxx.a, xxx.b, xxx.c, xxx.d,
(SELECT e FROM ghj WHERE f in (SELECT u FROM hgz WHERE ddf = xxx.ddf limit
1)) AS fff
from fcv xxx where k = '100';
I get the following error: ORA-00907: missing right parenthesis ORA-06512: at "SYS.DBMS_SQL", line 1185 ORA-06512: at line 1
Why?