-
Notifications
You must be signed in to change notification settings - Fork 0
/
northwind_create.sql
254 lines (206 loc) · 6.29 KB
/
northwind_create.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET default_tablespace = '';
SET default_with_oids = false;
---
--- drop tables
---
DROP TABLE IF EXISTS customer_customer_demo;
DROP TABLE IF EXISTS customer_demographics;
DROP TABLE IF EXISTS employee_territories;
DROP TABLE IF EXISTS order_details;
DROP TABLE IF EXISTS orders;
DROP TABLE IF EXISTS customers;
DROP TABLE IF EXISTS products;
DROP TABLE IF EXISTS shippers;
DROP TABLE IF EXISTS suppliers;
DROP TABLE IF EXISTS territories;
DROP TABLE IF EXISTS us_states;
DROP TABLE IF EXISTS categories;
DROP TABLE IF EXISTS region;
DROP TABLE IF EXISTS employees;
--
-- Name: categories; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE categories (
category_id smallint NOT NULL PRIMARY KEY,
category_name character varying(15) NOT NULL,
description text,
picture bytea
);
--
-- Name: customer_demographics; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE customer_demographics (
customer_type_id bpchar NOT NULL PRIMARY KEY,
customer_desc text
);
--
-- Name: customers; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE customers (
customer_id bpchar NOT NULL PRIMARY KEY,
company_name character varying(40) NOT NULL,
contact_name character varying(30),
contact_title character varying(30),
address character varying(60),
city character varying(15),
region character varying(15),
postal_code character varying(10),
country character varying(15),
phone character varying(24),
fax character varying(24)
);
--
-- Name: customer_customer_demo; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE customer_customer_demo (
customer_id bpchar NOT NULL,
customer_type_id bpchar NOT NULL,
PRIMARY KEY (customer_id, customer_type_id),
FOREIGN KEY (customer_type_id) REFERENCES customer_demographics,
FOREIGN KEY (customer_id) REFERENCES customers
);
--
-- Name: employees; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE employees (
employee_id smallint NOT NULL PRIMARY KEY,
last_name character varying(20) NOT NULL,
first_name character varying(10) NOT NULL,
title character varying(30),
title_of_courtesy character varying(25),
birth_date date,
hire_date date,
address character varying(60),
city character varying(15),
region character varying(15),
postal_code character varying(10),
country character varying(15),
home_phone character varying(24),
extension character varying(4),
photo bytea,
notes text,
reports_to smallint,
photo_path character varying(255),
FOREIGN KEY (reports_to) REFERENCES employees
);
--
-- Name: suppliers; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE suppliers (
supplier_id smallint NOT NULL PRIMARY KEY,
company_name character varying(40) NOT NULL,
contact_name character varying(30),
contact_title character varying(30),
address character varying(60),
city character varying(15),
region character varying(15),
postal_code character varying(10),
country character varying(15),
phone character varying(24),
fax character varying(24),
homepage text
);
--
-- Name: products; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE products (
product_id smallint NOT NULL PRIMARY KEY,
product_name character varying(40) NOT NULL,
supplier_id smallint,
category_id smallint,
quantity_per_unit character varying(20),
unit_price real,
units_in_stock smallint,
units_on_order smallint,
reorder_level smallint,
discontinued integer NOT NULL,
FOREIGN KEY (category_id) REFERENCES categories,
FOREIGN KEY (supplier_id) REFERENCES suppliers
);
--
-- Name: region; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE region (
region_id smallint NOT NULL PRIMARY KEY,
region_description bpchar NOT NULL
);
--
-- Name: shippers; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE shippers (
shipper_id smallint NOT NULL PRIMARY KEY,
company_name character varying(40) NOT NULL,
phone character varying(24)
);
--
-- Name: orders; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE orders (
order_id smallint NOT NULL PRIMARY KEY,
customer_id bpchar,
employee_id smallint,
order_date date,
required_date date,
shipped_date date,
ship_via smallint,
freight real,
ship_name character varying(40),
ship_address character varying(60),
ship_city character varying(15),
ship_region character varying(15),
ship_postal_code character varying(10),
ship_country character varying(15),
FOREIGN KEY (customer_id) REFERENCES customers,
FOREIGN KEY (employee_id) REFERENCES employees,
FOREIGN KEY (ship_via) REFERENCES shippers
);
--
-- Name: territories; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE territories (
territory_id character varying(20) NOT NULL PRIMARY KEY,
territory_description bpchar NOT NULL,
region_id smallint NOT NULL,
FOREIGN KEY (region_id) REFERENCES region
);
--
-- Name: employee_territories; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE employee_territories (
employee_id smallint NOT NULL,
territory_id character varying(20) NOT NULL,
PRIMARY KEY (employee_id, territory_id),
FOREIGN KEY (territory_id) REFERENCES territories,
FOREIGN KEY (employee_id) REFERENCES employees
);
--
-- Name: order_details; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE order_details (
order_id smallint NOT NULL,
product_id smallint NOT NULL,
unit_price real NOT NULL,
quantity smallint NOT NULL,
discount real NOT NULL,
PRIMARY KEY (order_id, product_id),
FOREIGN KEY (product_id) REFERENCES products,
FOREIGN KEY (order_id) REFERENCES orders
);
--
-- Name: us_states; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE us_states (
state_id smallint NOT NULL PRIMARY KEY,
state_name character varying(100),
state_abbr character varying(2),
state_region character varying(50)
);