Problem:
Query retrieves one record, but when I use the exact same query as subquery
the master query returns no rows.
Example with EMP table:
----------------------------
SQL> select e.job
2 , e.mgr
3 , e.sal
4 , e.comm
5 , e.deptno
6 from emp e
7...