Yurttas/PL/DBL/postgres/F/01/Bank/u05.sql

 1/*
 2REM
 3REM u05.sql
 4REM
 5REM Increase all balances by 5 percent.
 6REM
 7*/
 8
 9SELECT current_schema();
10SET search_path to "bank";
11
12UPDATE Depositor
13SET balance = balance*1.05;