Yurttas/PL/DBL/oracle/F/01/PC/q08.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 q08.sql REM REM Find the printers with the highest price. REM SELECT model FROM Printer WHERE price = (SELEC...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q08.sql
 3REM
 4REM Find the printers with the highest price.
 5REM
 6
 7SELECT model
 8FROM Printer
 9WHERE price = (SELECT MAX(price)
10               FROM Printer);