Yurttas/PL/DBL/oracle/F/01/SPJ/q09.sql

From ZCubes Wiki
Revision as of 23:13, 4 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div"> REM REM q09.sql REM REM Double the status of all suppliers in 'Houston'. REM UPDATE Suppliers SET status = status*2 ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
1REM
2REM q09.sql
3REM
4REM Double the status of all suppliers in 'Houston'.
5REM
6
7UPDATE Suppliers
8SET status = status*2
9WHERE city = 'Houston';