Yurttas/PL/DBL/postgres/F/01/Company-A/q02.sql

Revision as of 00:41, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">/* REM REM q02.sql REM REM List the names of employees who have a dependent with REM the same first name as themselves...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 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;