Yurttas/PL/DBL/oracle/F/01/Company-B/q12.sql

From ZCubes Wiki
Revision as of 22:56, 4 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div"> REM REM q12.sql REM REM Find those companies that pay more, on average, REM than the average salary at 'First Bank Co...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q12.sql
 3REM
 4REM Find those companies that pay more, on average,
 5REM than the average salary at 'First Bank Corporation'.
 6REM
 7
 8
 9SELECT companyname 
10FROM Works 
11GROUP BY companyname 
12HAVING AVG(salary) > (SELECT AVG(salary) 
13                      FROM Works 
14                      WHERE companyname='First Bank Corporation');