Yurttas/PL/DBL/postgres/F/01/Company-B/q01.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 q01.sql REM REM Find the name of all employees who work for REM 'First Bank Corporation'. REM: SELECT c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision β†’ (diff)
 1/*
 2REM
 3REM q01.sql
 4REM
 5REM Find the name of all employees who work for 
 6REM 'First Bank Corporation'.
 7REM
 8*/
 9
10SELECT current_schema();
11SET search_path to "companyb";
12
13SELECT employeename 
14FROM Works 
15WHERE companyname='First Bank Corporation';