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: ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision β†’ (diff)
 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);