Yurttas/PL/DBL/postgres/F/01/Company-B/q17.sql

From ZCubes Wiki
Revision as of 00:44, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">/* REM REM q17.sql REM REM Delete all tuples in the works relation for employees REM of 'Small Bank Corporation'. REM ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1/*
 2REM
 3REM q17.sql
 4REM
 5REM Delete all tuples in the works relation for employees
 6REM of 'Small Bank Corporation'.
 7REM
 8*/
 9
10SELECT current_schema();
11SET search_path to "companyb";
12
13DELETE FROM Works
14WHERE companyname = 'Small Bank Corporation';