Yurttas/PL/DBL/postgres/F/01/PC/q04.sql

From ZCubes Wiki
Revision as of 23:48, 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 current_schema(); SET se...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1/*
 2REM
 3REM q04.sql
 4REM
 5REM Find the model numbers of all color laser printers.
 6REM
 7*/
 8
 9SELECT current_schema();
10SET search_path to "pc";
11
12SELECT model
13FROM Printer
14WHERE color='true'
15  AND type='laser';