Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Tracing SQL: where is the select in the select ?
Hi all,
I'm tracing a select containing a select :
select c1, c2, (select c4,c5 from t1 where...),c3...
from ..
where ...
In tkprof, there is no sign of the query "select c4,c5 from t1 where..." query .
Is that normal ?