SQL Self Join:
Joining a table to itself.
select a.ename, b.enamefrom emp a, emp b
where a.mgr = b.empno;
This blog contains the Oracle concepts like sql commands,stored procedures,pl/sql,cursors,functions and triggers.
Joining a table to itself.
select a.ename, b.enameOracle Tutorial - Copyright © 2008