Self Join

circle-info

Some parts in the output codes are omitted for clarity reasons.

Description

A self join is a join of a table to itself. This table appears twice in the FROM clause and is followed by table aliases that qualify column names in the join condition. (Oracle SQL Language Reference Self Join Subsectionarrow-up-right)

Sample Source Patterns

circle-info

Order by clause added because the result order may vary between Oracle and Snowflake.

circle-info

Check this section to set up the sample database.

Basic Self Join case

Oracle

IN -> Oracle_01.sql
SELECT e1.last_name||' works for '||e2.last_name 
   "Employees and Their Managers"
   FROM hr.employees e1, hr.employees e2 
   WHERE e1.manager_id = e2.employee_id
      AND e1.last_name LIKE 'R%'
   ORDER BY e1.last_name;

Snowflake

circle-info

As proved previously the self join in Oracle is functionally equivalent to Snowflake.

Known Issues

No issues were found.

No related EWIs.

Last updated