Yurttas/PL/DBL/postgres/F/01/Bank/u07.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 u07.sql REM REM Insert that REM `Smith' has $1200 in account 9732 at the `Perryridge' REM branch. REM: ...")
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);