home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************
- * * 09/92 BOSS.PRG *
- *****************************************************************
- * * Author's Name: Jeb Long *
- * * *
- * * Description: *
- * * This program illustrates the use of SQL SELECT command *
- * * to do a self join *
- *****************************************************************
- SELECT * FROM Employee e ;
- WHERE e.salary > (SELECT f.salary FROM Employee f;
- WHERE f.empno = e.boss_id)