Yurttas/PL/DBL/postgres/F/01/Bank/c-all.sql

Revision as of 00:37, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">β†’β€ŽREM REM c-all.sql REM REM Create Bank database and its tables. REM: SELECT current_schema(); SET search_path to ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision β†’ (diff)
 1/*
 2REM
 3REM c-all.sql
 4REM
 5REM Create Bank database and its tables.
 6REM
 7*/
 8
 9SELECT current_schema();
10SET search_path to "bank";
11
12\i Branch-cre.sql
13
14\i Customer-cre.sql
15
16\i Depositor-cre.sql
17
18\i Borrower-cre.sql
19
20\i Client-cre.sql