Yurttas/PL/DBL/mysql/F/01/00/SPJ/q08.sql

From ZCubes Wiki
Revision as of 16:36, 3 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">/* REM REM q08.sql REM REM Change the color of part 'P02' to 'Yellow', REM increase its weight by 5, and REM set its c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1/*
 2REM
 3REM q08.sql
 4REM
 5REM Change the color of part 'P02' to 'Yellow',
 6REM increase its weight by 5, and
 7REM set its city to unknown('NULL').
 8REM
 9*/
10
11\. set-db.sql
12
13UPDATE Parts
14SET color='Yellow',
15    weight=weight+5,
16    city='NULL'
17WHERE pn = 'P02';