Yurttas/PL/DBL/postgres/F/01/SPJ/q08.sql

From ZCubes Wiki
Revision as of 00:54, 5 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
11SELECT current_schema();
12SET search_path to "spj";
13
14UPDATE Parts
15SET color='Yellow',
16    weight=weight+5,
17    city='NULL'
18WHERE pn = 'P02';