Yurttas/PL/DBL/oracle/F/01/PC/q05.sql

From ZCubes Wiki
Revision as of 23:03, 4 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div"> REM REM q05.sql REM REM Find those manufacturers that sell Laptops, but not PC's. REM (SELECT P.maker FROM Product ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q05.sql
 3REM
 4REM Find those manufacturers that sell Laptops, but not PC's.
 5REM
 6
 7(SELECT P.maker
 8 FROM Product P, Laptop L
 9 WHERE P.model=L.model)
10MINUS
11(SELECT P.maker
12 FROM Product P, PC
13 WHERE P.model=PC.model);