Yurttas/PL/DBL/postgres/F/01/Bank/u03.sql
Revision as of 00:38, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">→REM REM u03.sql REM REM Delete all loans with amount between 1300 and 1500. REM: SELECT current_schema(); SET se...")
1/*
2REM
3REM u03.sql
4REM
5REM Delete all loans with amount between 1300 and 1500.
6REM
7*/
8
9SELECT current_schema();
10SET search_path to "bank";
11
12DELETE FROM Borrower
13WHERE amount BETWEEN 1300 AND 1500;