Yurttas/PL/DBL/oracle/F/01/PC/q04.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 q04.sql REM REM Find the model numbers of all color laser printers. REM SELECT model FROM Printer WHERE colo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q04.sql
 3REM
 4REM Find the model numbers of all color laser printers.
 5REM
 6
 7SELECT model
 8FROM Printer
 9WHERE color='true'
10  AND type='laser';