Yurttas/PL/DBL/postgres/F/01/Bank/u03.sql
Jump to navigation
Jump to search
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;