Yurttas/PL/DBL/postgres/F/01/Company-A/q02.sql
1/*
2REM
3REM q02.sql
4REM
5REM List the names of employees who have a dependent with
6REM the same first name as themselves.
7REM
8*/
9
10SELECT current_schema();
11SET search_path to "companya";
12
13SELECT DISTINCT fname, minit, lname
14FROM Employee, Dependent
15WHERE ssn = essn
16 AND dependentname = fname;