Yurttas/PL/DBL/postgres/F/01/Company-B/q17.sql
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';