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

 1/*
 2REM
 3REM u07.sql
 4REM
 5REM Insert that
 6REM `Smith' has $1200 in account 9732 at the `Perryridge'
 7REM   branch.
 8REM
 9*/
10
11SELECT current_schema();
12SET search_path to "bank";
13
14INSERT INTO Depositor
15  VALUES('Perryridge', 9732, 'Smith', 1200);