This figure is a screen of the Outline Editor of Oracle Performance Manager Tuning Pack.

The SQL statement that is in the SQL text window is:

SELECT e.employee_id, j.job_title, e.salary, d.department_name
    FROM employees e, jobs j, departments d
    WHERE  e.employee_id < 103
       AND e.job_id = j.job_id 
       AND e.department_id = d.department_id;