Yurttas/PL/DBL/oracle/F/01/Company-B/q060.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 q060.sql REM REM Find all employees who do not work for 'First Bank Corporation'. REM REM [ Assume that all p...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q060.sql
 3REM
 4REM Find all employees who do not work for 'First Bank Corporation'.
 5REM
 6REM [ Assume that all people work for exactly one company. ]
 7REM
 8
 9SELECT employeename 
10FROM Works 
11WHERE companyname <> 'First Bank Corporation';