Yurttas/PL/DBL/postgres/F/01/Bank/d-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 d-all.sql REM REM Drop Bank database and its tables. REM: SELECT current_schema(); SET search_path to "...")
1/*
2REM
3REM d-all.sql
4REM
5REM Drop Bank database and its tables.
6REM
7*/
8
9
10SELECT current_schema();
11SET search_path to "Bank";
12
13DROP TABLE Client;
14
15DROP TABLE Borrower;
16
17DROP TABLE Depositor;
18
19DROP TABLE Customer;
20
21DROP TABLE Branch;