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

From ZCubes Wiki
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 q07.sql REM REM Find all employees who earn more than every employee of REM 'Small Bank Corporation'. REM *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1/*
 2REM
 3REM q07.sql
 4REM
 5REM Find all employees who earn more than every employee of
 6REM 'Small Bank Corporation'.
 7REM
 8*/
 9
10SELECT current_schema();
11SET search_path to "companyb";
12
13SELECT employeename 
14FROM Works 
15WHERE salary > ALL (SELECT salary 
16                    FROM Works 
17                    WHERE companyname='Small Bank Corporation');