Yurttas/PL/DBL/postgres/F/01/Bank/Customer-cre.sql

From ZCubes Wiki
Jump to navigation Jump to search
 1/*
 2REM
 3REM
 4REM Customer-cre.sql
 5REM
 6REM
 7*/
 8
 9SELECT current_schema();
10SET search_path to "bank";
11
12CREATE TABLE Customer(customername VARCHAR(16) NOT NULL,
13                      street VARCHAR(10),
14                      customercity VARCHAR(16),
15          PRIMARY KEY(customername));