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

Revision as of 00:43, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">/* REM REM q02.sql REM REM Find the name and city of of all employees who work for REM 'First Bank Corporation'. REM *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1/*
 2REM
 3REM q02.sql
 4REM
 5REM Find the name and city of of all employees who work for
 6REM 'First Bank Corporation'.
 7REM
 8*/
 9
10SELECT current_schema();
11SET search_path to "companyb";
12
13SELECT E.employeename, E.city 
14FROM Employee E, Works W 
15WHERE E.employeename=W.employeename 
16  AND W.companyname='First Bank Corporation';