forked from celalceken/DatabaseManagementSystems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NothWindWithLinks.v2.sql
4188 lines (3973 loc) · 356 KB
/
NothWindWithLinks.v2.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.6.5
-- Dumped by pg_dump version 9.6.1
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: CustomersContactName; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE "CustomersContactName" (
"CustomerID" bpchar,
"?column?" boolean
);
ALTER TABLE "CustomersContactName" OWNER TO postgres;
--
-- Name: customers; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE customers (
"CustomerID" bpchar NOT NULL,
"CompanyName" character varying(40) NOT NULL,
"ContactName" character varying(30),
"ContactTitle" character varying(30),
"Address" character varying(60),
"City" character varying(15),
"Region" character varying(15),
"PostalCode" character varying(10),
"Country" character varying(30),
"Phone" character varying(24),
"Fax" character varying(24)
);
ALTER TABLE customers OWNER TO postgres;
--
-- Name: employees; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE employees (
"EmployeeID" smallint NOT NULL,
"LastName" character varying(20) NOT NULL,
"FirstName" character varying(10) NOT NULL,
"Title" character varying(30),
"TitleOfCourtesy" character varying(25),
"BirthDate" date,
"HireDate" date,
"Address" character varying(60),
"City" character varying(15),
"Region" character varying(15),
"PostalCode" character varying(10),
"Country" character varying(15),
"HomePhone" character varying(24),
"Extension" character varying(4),
"Photo" bytea,
"Notes" text,
"ReportsTo" smallint,
"PhotoPath" character varying(255)
);
ALTER TABLE employees OWNER TO postgres;
--
-- Name: orders; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE orders (
"OrderID" smallint NOT NULL,
"CustomerID" bpchar,
"EmployeeID" smallint,
"OrderDate" date,
"RequiredDate" date,
"ShippedDate" date,
"ShipVia" smallint,
"Freight" real,
"ShipName" character varying(40),
"ShipAddress" character varying(60),
"ShipCity" character varying(15),
"ShipRegion" character varying(15),
"ShipPostalCode" character varying(10),
"ShipCountry" character varying(15)
);
ALTER TABLE orders OWNER TO postgres;
--
-- Name: OrderCustomerEmployee; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW "OrderCustomerEmployee" AS
SELECT orders."OrderID",
orders."OrderDate",
customers."CompanyName",
customers."ContactName",
employees."FirstName",
employees."LastName"
FROM ((orders
JOIN employees ON ((orders."EmployeeID" = employees."EmployeeID")))
JOIN customers ON ((orders."CustomerID" = customers."CustomerID")));
ALTER TABLE "OrderCustomerEmployee" OWNER TO postgres;
--
-- Name: OrderCustomerEmployee1; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW "OrderCustomerEmployee1" AS
SELECT orders."OrderID",
orders."OrderDate",
customers."CompanyName",
customers."ContactName",
employees."FirstName",
employees."LastName"
FROM ((orders
JOIN employees ON ((orders."EmployeeID" = employees."EmployeeID")))
JOIN customers ON ((orders."CustomerID" = customers."CustomerID")));
ALTER TABLE "OrderCustomerEmployee1" OWNER TO postgres;
--
-- Name: OrderCustomerEmployee3; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW "OrderCustomerEmployee3" AS
SELECT orders."OrderID",
orders."OrderDate",
customers."CompanyName",
customers."ContactName",
employees."FirstName",
employees."LastName"
FROM ((orders
JOIN employees ON ((orders."EmployeeID" = employees."EmployeeID")))
JOIN customers ON ((orders."CustomerID" = customers."CustomerID")));
ALTER TABLE "OrderCustomerEmployee3" OWNER TO postgres;
--
-- Name: OrderCustomerEmployee4; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW "OrderCustomerEmployee4" AS
SELECT orders."OrderID",
orders."OrderDate",
customers."CompanyName",
customers."ContactName",
employees."FirstName",
employees."LastName"
FROM ((orders
JOIN employees ON ((orders."EmployeeID" = employees."EmployeeID")))
JOIN customers ON ((orders."CustomerID" = customers."CustomerID")));
ALTER TABLE "OrderCustomerEmployee4" OWNER TO postgres;
--
-- Name: categories; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE categories (
"CategoryID" smallint NOT NULL,
"CategoryName" character varying(15) NOT NULL,
"Description" text,
"Picture" bytea
);
ALTER TABLE categories OWNER TO postgres;
--
-- Name: customercustomerdemo; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE customercustomerdemo (
"CustomerID" bpchar NOT NULL,
"CustomerTypeID" bpchar NOT NULL
);
ALTER TABLE customercustomerdemo OWNER TO postgres;
--
-- Name: customerdemographics; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE customerdemographics (
"CustomerTypeID" bpchar NOT NULL,
"CustomerDesc" text
);
ALTER TABLE customerdemographics OWNER TO postgres;
--
-- Name: employeeterritories; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE employeeterritories (
"EmployeeID" smallint NOT NULL,
"TerritoryID" character varying(20) NOT NULL
);
ALTER TABLE employeeterritories OWNER TO postgres;
--
-- Name: order_details; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE order_details (
"OrderID" smallint NOT NULL,
"ProductID" smallint NOT NULL,
"UnitPrice" real NOT NULL,
"Quantity" smallint NOT NULL,
"Discount" real NOT NULL
);
ALTER TABLE order_details OWNER TO postgres;
--
-- Name: products; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE products (
"ProductID" smallint NOT NULL,
"ProductName" character varying(40) NOT NULL,
"SupplierID" smallint,
"CategoryID" smallint,
"QuantityPerUnit" character varying(20),
"UnitPrice" real,
"UnitsInStock" smallint,
"UnitsOnOrder" smallint,
"ReorderLevel" smallint,
"Discontinued" integer NOT NULL
);
ALTER TABLE products OWNER TO postgres;
--
-- Name: region; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE region (
"RegionID" smallint NOT NULL,
"RegionDescription" bpchar NOT NULL
);
ALTER TABLE region OWNER TO postgres;
--
-- Name: shippers; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE shippers (
"ShipperID" smallint NOT NULL,
"CompanyName" character varying(40) NOT NULL,
"Phone" character varying(24)
);
ALTER TABLE shippers OWNER TO postgres;
--
-- Name: shippers_tmp; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE shippers_tmp (
"ShipperID" smallint NOT NULL,
"CompanyName" character varying(40) NOT NULL,
"Phone" character varying(24)
);
ALTER TABLE shippers_tmp OWNER TO postgres;
--
-- Name: suppliers; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE suppliers (
"SupplierID" smallint NOT NULL,
"CompanyName" character varying(40) NOT NULL,
"ContactName" character varying(30),
"ContactTitle" character varying(30),
"Address" character varying(60),
"City" character varying(15),
"Region" character varying(15),
"PostalCode" character varying(10),
"Country" character varying(15),
"Phone" character varying(24),
"Fax" character varying(24),
"HomePage" text
);
ALTER TABLE suppliers OWNER TO postgres;
--
-- Name: territories; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE territories (
"TerritoryID" character varying(20) NOT NULL,
"TerritoryDescription" bpchar NOT NULL,
"RegionID" smallint NOT NULL
);
ALTER TABLE territories OWNER TO postgres;
--
-- Name: usstates; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE usstates (
"StateID" smallint NOT NULL,
"StateName" character varying(100),
"StateAbbr" character varying(2),
"StateRegion" character varying(50)
);
ALTER TABLE usstates OWNER TO postgres;
--
-- Name: view1; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW view1 AS
SELECT 1;
ALTER TABLE view1 OWNER TO postgres;
--
-- Name: xyz; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW xyz AS
SELECT orders."OrderID",
orders."OrderDate",
customers."CompanyName",
customers."ContactName",
employees."FirstName",
employees."LastName"
FROM ((orders
JOIN employees ON ((orders."EmployeeID" = employees."EmployeeID")))
JOIN customers ON ((orders."CustomerID" = customers."CustomerID")));
ALTER TABLE xyz OWNER TO postgres;
--
-- Data for Name: CustomersContactName; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO "CustomersContactName" VALUES ('ALFKI', false);
INSERT INTO "CustomersContactName" VALUES ('ANATR', false);
INSERT INTO "CustomersContactName" VALUES ('ANTON', false);
INSERT INTO "CustomersContactName" VALUES ('AROUT', false);
INSERT INTO "CustomersContactName" VALUES ('BERGS', false);
INSERT INTO "CustomersContactName" VALUES ('BLAUS', false);
INSERT INTO "CustomersContactName" VALUES ('BLONP', false);
INSERT INTO "CustomersContactName" VALUES ('BOLID', false);
INSERT INTO "CustomersContactName" VALUES ('BONAP', false);
INSERT INTO "CustomersContactName" VALUES ('BOTTM', false);
INSERT INTO "CustomersContactName" VALUES ('BSBEV', false);
INSERT INTO "CustomersContactName" VALUES ('CACTU', false);
INSERT INTO "CustomersContactName" VALUES ('CENTC', false);
INSERT INTO "CustomersContactName" VALUES ('CHOPS', false);
INSERT INTO "CustomersContactName" VALUES ('COMMI', false);
INSERT INTO "CustomersContactName" VALUES ('CONSH', false);
INSERT INTO "CustomersContactName" VALUES ('DRACD', false);
INSERT INTO "CustomersContactName" VALUES ('DUMON', false);
INSERT INTO "CustomersContactName" VALUES ('EASTC', false);
INSERT INTO "CustomersContactName" VALUES ('ERNSH', false);
INSERT INTO "CustomersContactName" VALUES ('FAMIA', false);
INSERT INTO "CustomersContactName" VALUES ('FISSA', false);
INSERT INTO "CustomersContactName" VALUES ('FOLIG', false);
INSERT INTO "CustomersContactName" VALUES ('FOLKO', false);
INSERT INTO "CustomersContactName" VALUES ('FRANK', false);
INSERT INTO "CustomersContactName" VALUES ('FRANR', false);
INSERT INTO "CustomersContactName" VALUES ('FRANS', false);
INSERT INTO "CustomersContactName" VALUES ('FURIB', false);
INSERT INTO "CustomersContactName" VALUES ('GALED', false);
INSERT INTO "CustomersContactName" VALUES ('GODOS', false);
INSERT INTO "CustomersContactName" VALUES ('GOURL', false);
INSERT INTO "CustomersContactName" VALUES ('GREAL', false);
INSERT INTO "CustomersContactName" VALUES ('GROSR', false);
INSERT INTO "CustomersContactName" VALUES ('HANAR', false);
INSERT INTO "CustomersContactName" VALUES ('HILAA', false);
INSERT INTO "CustomersContactName" VALUES ('HUNGC', false);
INSERT INTO "CustomersContactName" VALUES ('HUNGO', false);
INSERT INTO "CustomersContactName" VALUES ('ISLAT', false);
INSERT INTO "CustomersContactName" VALUES ('KOENE', false);
INSERT INTO "CustomersContactName" VALUES ('LACOR', false);
INSERT INTO "CustomersContactName" VALUES ('LAMAI', false);
INSERT INTO "CustomersContactName" VALUES ('LAUGB', false);
INSERT INTO "CustomersContactName" VALUES ('LAZYK', false);
INSERT INTO "CustomersContactName" VALUES ('LEHMS', false);
INSERT INTO "CustomersContactName" VALUES ('LETSS', false);
INSERT INTO "CustomersContactName" VALUES ('LILAS', false);
INSERT INTO "CustomersContactName" VALUES ('LINOD', false);
INSERT INTO "CustomersContactName" VALUES ('LONEP', false);
INSERT INTO "CustomersContactName" VALUES ('MAGAA', false);
INSERT INTO "CustomersContactName" VALUES ('MAISD', false);
INSERT INTO "CustomersContactName" VALUES ('MEREP', false);
INSERT INTO "CustomersContactName" VALUES ('MORGK', false);
INSERT INTO "CustomersContactName" VALUES ('NORTS', false);
INSERT INTO "CustomersContactName" VALUES ('OCEAN', false);
INSERT INTO "CustomersContactName" VALUES ('OLDWO', false);
INSERT INTO "CustomersContactName" VALUES ('OTTIK', false);
INSERT INTO "CustomersContactName" VALUES ('PARIS', false);
INSERT INTO "CustomersContactName" VALUES ('PERIC', false);
INSERT INTO "CustomersContactName" VALUES ('PICCO', false);
INSERT INTO "CustomersContactName" VALUES ('PRINI', false);
INSERT INTO "CustomersContactName" VALUES ('QUEDE', false);
INSERT INTO "CustomersContactName" VALUES ('QUEEN', false);
INSERT INTO "CustomersContactName" VALUES ('QUICK', false);
INSERT INTO "CustomersContactName" VALUES ('RANCH', false);
INSERT INTO "CustomersContactName" VALUES ('RATTC', false);
INSERT INTO "CustomersContactName" VALUES ('REGGC', false);
INSERT INTO "CustomersContactName" VALUES ('RICAR', false);
INSERT INTO "CustomersContactName" VALUES ('RICSU', false);
INSERT INTO "CustomersContactName" VALUES ('ROMEY', false);
INSERT INTO "CustomersContactName" VALUES ('SANTG', false);
INSERT INTO "CustomersContactName" VALUES ('SAVEA', false);
INSERT INTO "CustomersContactName" VALUES ('SEVES', false);
INSERT INTO "CustomersContactName" VALUES ('SIMOB', false);
INSERT INTO "CustomersContactName" VALUES ('SPECD', false);
INSERT INTO "CustomersContactName" VALUES ('SPLIR', false);
INSERT INTO "CustomersContactName" VALUES ('SUPRD', false);
INSERT INTO "CustomersContactName" VALUES ('THEBI', false);
INSERT INTO "CustomersContactName" VALUES ('THECR', false);
INSERT INTO "CustomersContactName" VALUES ('TOMSP', false);
INSERT INTO "CustomersContactName" VALUES ('TORTU', false);
INSERT INTO "CustomersContactName" VALUES ('TRADH', false);
INSERT INTO "CustomersContactName" VALUES ('TRAIH', false);
INSERT INTO "CustomersContactName" VALUES ('VAFFE', false);
INSERT INTO "CustomersContactName" VALUES ('VICTE', false);
INSERT INTO "CustomersContactName" VALUES ('VINET', false);
INSERT INTO "CustomersContactName" VALUES ('WANDK', false);
INSERT INTO "CustomersContactName" VALUES ('WARTH', false);
INSERT INTO "CustomersContactName" VALUES ('WELLI', false);
INSERT INTO "CustomersContactName" VALUES ('WHITC', false);
INSERT INTO "CustomersContactName" VALUES ('WILMK', false);
INSERT INTO "CustomersContactName" VALUES ('WOLZA', false);
INSERT INTO "CustomersContactName" VALUES ('99', false);
INSERT INTO "CustomersContactName" VALUES ('1', true);
INSERT INTO "CustomersContactName" VALUES ('2', true);
INSERT INTO "CustomersContactName" VALUES ('3', true);
INSERT INTO "CustomersContactName" VALUES ('4', true);
INSERT INTO "CustomersContactName" VALUES ('5', true);
INSERT INTO "CustomersContactName" VALUES ('6', true);
INSERT INTO "CustomersContactName" VALUES ('7', true);
INSERT INTO "CustomersContactName" VALUES ('8', true);
INSERT INTO "CustomersContactName" VALUES ('9', true);
INSERT INTO "CustomersContactName" VALUES ('10', true);
INSERT INTO "CustomersContactName" VALUES ('11', true);
INSERT INTO "CustomersContactName" VALUES ('12', true);
INSERT INTO "CustomersContactName" VALUES ('13', true);
INSERT INTO "CustomersContactName" VALUES ('14', true);
INSERT INTO "CustomersContactName" VALUES ('15', true);
INSERT INTO "CustomersContactName" VALUES ('16', true);
INSERT INTO "CustomersContactName" VALUES ('17', true);
INSERT INTO "CustomersContactName" VALUES ('18', true);
INSERT INTO "CustomersContactName" VALUES ('19', true);
INSERT INTO "CustomersContactName" VALUES ('20', true);
INSERT INTO "CustomersContactName" VALUES ('21', true);
INSERT INTO "CustomersContactName" VALUES ('22', true);
INSERT INTO "CustomersContactName" VALUES ('23', true);
INSERT INTO "CustomersContactName" VALUES ('24', true);
INSERT INTO "CustomersContactName" VALUES ('25', true);
INSERT INTO "CustomersContactName" VALUES ('26', true);
INSERT INTO "CustomersContactName" VALUES ('27', true);
INSERT INTO "CustomersContactName" VALUES ('28', true);
INSERT INTO "CustomersContactName" VALUES ('29', true);
--
-- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO categories VALUES (1, 'Beverages', 'Soft drinks, coffees, teas, beers, and ales', '\x');
INSERT INTO categories VALUES (2, 'Condiments', 'Sweet and savory sauces, relishes, spreads, and seasonings', '\x');
INSERT INTO categories VALUES (3, 'Confections', 'Desserts, candies, and sweet breads', '\x');
INSERT INTO categories VALUES (4, 'Dairy Products', 'Cheeses', '\x');
INSERT INTO categories VALUES (5, 'Grains/Cereals', 'Breads, crackers, pasta, and cereal', '\x');
INSERT INTO categories VALUES (6, 'Meat/Poultry', 'Prepared meats', '\x');
INSERT INTO categories VALUES (7, 'Produce', 'Dried fruit and bean curd', '\x');
INSERT INTO categories VALUES (8, 'Seafood', 'Seaweed and fish', '\x');
--
-- Data for Name: customercustomerdemo; Type: TABLE DATA; Schema: public; Owner: postgres
--
--
-- Data for Name: customerdemographics; Type: TABLE DATA; Schema: public; Owner: postgres
--
--
-- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO customers VALUES ('ALFKI', 'Alfreds Futterkiste', 'Maria Anders', 'Sales Representative', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany', '030-0074321', '030-0076545');
INSERT INTO customers VALUES ('ANATR', 'Ana Trujillo Emparedados y helados', 'Ana Trujillo', 'Owner', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico', '(5) 555-4729', '(5) 555-3745');
INSERT INTO customers VALUES ('ANTON', 'Antonio Moreno Taquería', 'Antonio Moreno', 'Owner', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico', '(5) 555-3932', NULL);
INSERT INTO customers VALUES ('AROUT', 'Around the Horn', 'Thomas Hardy', 'Sales Representative', '120 Hanover Sq.', 'London', NULL, 'WA1 1DP', 'UK', '(171) 555-7788', '(171) 555-6750');
INSERT INTO customers VALUES ('BERGS', 'Berglunds snabbköp', 'Christina Berglund', 'Order Administrator', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden', '0921-12 34 65', '0921-12 34 67');
INSERT INTO customers VALUES ('BLAUS', 'Blauer See Delikatessen', 'Hanna Moos', 'Sales Representative', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany', '0621-08460', '0621-08924');
INSERT INTO customers VALUES ('BLONP', 'Blondesddsl père et fils', 'Frédérique Citeaux', 'Marketing Manager', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France', '88.60.15.31', '88.60.15.32');
INSERT INTO customers VALUES ('BOLID', 'Bólido Comidas preparadas', 'Martín Sommer', 'Owner', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain', '(91) 555 22 82', '(91) 555 91 99');
INSERT INTO customers VALUES ('BONAP', 'Bon app''', 'Laurence Lebihan', 'Owner', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France', '91.24.45.40', '91.24.45.41');
INSERT INTO customers VALUES ('BOTTM', 'Bottom-Dollar Markets', 'Elizabeth Lincoln', 'Accounting Manager', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada', '(604) 555-4729', '(604) 555-3745');
INSERT INTO customers VALUES ('BSBEV', 'B''s Beverages', 'Victoria Ashworth', 'Sales Representative', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK', '(171) 555-1212', NULL);
INSERT INTO customers VALUES ('CACTU', 'Cactus Comidas para llevar', 'Patricio Simpson', 'Sales Agent', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 135-5555', '(1) 135-4892');
INSERT INTO customers VALUES ('CENTC', 'Centro comercial Moctezuma', 'Francisco Chang', 'Marketing Manager', 'Sierras de Granada 9993', 'México D.F.', NULL, '05022', 'Mexico', '(5) 555-3392', '(5) 555-7293');
INSERT INTO customers VALUES ('CHOPS', 'Chop-suey Chinese', 'Yang Wang', 'Owner', 'Hauptstr. 29', 'Bern', NULL, '3012', 'Switzerland', '0452-076545', NULL);
INSERT INTO customers VALUES ('COMMI', 'Comércio Mineiro', 'Pedro Afonso', 'Sales Associate', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil', '(11) 555-7647', NULL);
INSERT INTO customers VALUES ('CONSH', 'Consolidated Holdings', 'Elizabeth Brown', 'Sales Representative', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK', '(171) 555-2282', '(171) 555-9199');
INSERT INTO customers VALUES ('DRACD', 'Drachenblut Delikatessen', 'Sven Ottlieb', 'Order Administrator', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany', '0241-039123', '0241-059428');
INSERT INTO customers VALUES ('DUMON', 'Du monde entier', 'Janine Labrune', 'Owner', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France', '40.67.88.88', '40.67.89.89');
INSERT INTO customers VALUES ('EASTC', 'Eastern Connection', 'Ann Devon', 'Sales Agent', '35 King George', 'London', NULL, 'WX3 6FW', 'UK', '(171) 555-0297', '(171) 555-3373');
INSERT INTO customers VALUES ('ERNSH', 'Ernst Handel', 'Roland Mendel', 'Sales Manager', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria', '7675-3425', '7675-3426');
INSERT INTO customers VALUES ('FAMIA', 'Familia Arquibaldo', 'Aria Cruz', 'Marketing Assistant', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil', '(11) 555-9857', NULL);
INSERT INTO customers VALUES ('FISSA', 'FISSA Fabrica Inter. Salchichas S.A.', 'Diego Roel', 'Accounting Manager', 'C/ Moralzarzal, 86', 'Madrid', NULL, '28034', 'Spain', '(91) 555 94 44', '(91) 555 55 93');
INSERT INTO customers VALUES ('FOLIG', 'Folies gourmandes', 'Martine Rancé', 'Assistant Sales Agent', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France', '20.16.10.16', '20.16.10.17');
INSERT INTO customers VALUES ('FOLKO', 'Folk och fä HB', 'Maria Larsson', 'Owner', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden', '0695-34 67 21', NULL);
INSERT INTO customers VALUES ('FRANK', 'Frankenversand', 'Peter Franken', 'Marketing Manager', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany', '089-0877310', '089-0877451');
INSERT INTO customers VALUES ('FRANR', 'France restauration', 'Carine Schmitt', 'Marketing Manager', '54, rue Royale', 'Nantes', NULL, '44000', 'France', '40.32.21.21', '40.32.21.20');
INSERT INTO customers VALUES ('FRANS', 'Franchi S.p.A.', 'Paolo Accorti', 'Sales Representative', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy', '011-4988260', '011-4988261');
INSERT INTO customers VALUES ('FURIB', 'Furia Bacalhau e Frutos do Mar', 'Lino Rodriguez', 'Sales Manager', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal', '(1) 354-2534', '(1) 354-2535');
INSERT INTO customers VALUES ('GALED', 'Galería del gastrónomo', 'Eduardo Saavedra', 'Marketing Manager', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '08022', 'Spain', '(93) 203 4560', '(93) 203 4561');
INSERT INTO customers VALUES ('GODOS', 'Godos Cocina Típica', 'José Pedro Freyre', 'Sales Manager', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain', '(95) 555 82 82', NULL);
INSERT INTO customers VALUES ('GOURL', 'Gourmet Lanchonetes', 'André Fonseca', 'Sales Associate', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil', '(11) 555-9482', NULL);
INSERT INTO customers VALUES ('GREAL', 'Great Lakes Food Market', 'Howard Snyder', 'Marketing Manager', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA', '(503) 555-7555', NULL);
INSERT INTO customers VALUES ('GROSR', 'GROSELLA-Restaurante', 'Manuel Pereira', 'Owner', '5ª Ave. Los Palos Grandes', 'Caracas', 'DF', '1081', 'Venezuela', '(2) 283-2951', '(2) 283-3397');
INSERT INTO customers VALUES ('HANAR', 'Hanari Carnes', 'Mario Pontes', 'Accounting Manager', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil', '(21) 555-0091', '(21) 555-8765');
INSERT INTO customers VALUES ('HILAA', 'HILARION-Abastos', 'Carlos Hernández', 'Sales Representative', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela', '(5) 555-1340', '(5) 555-1948');
INSERT INTO customers VALUES ('HUNGC', 'Hungry Coyote Import Store', 'Yoshi Latimer', 'Sales Representative', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA', '(503) 555-6874', '(503) 555-2376');
INSERT INTO customers VALUES ('HUNGO', 'Hungry Owl All-Night Grocers', 'Patricia McKenna', 'Sales Associate', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland', '2967 542', '2967 3333');
INSERT INTO customers VALUES ('ISLAT', 'Island Trading', 'Helen Bennett', 'Marketing Manager', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK', '(198) 555-8888', NULL);
INSERT INTO customers VALUES ('KOENE', 'Königlich Essen', 'Philip Cramer', 'Sales Associate', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany', '0555-09876', NULL);
INSERT INTO customers VALUES ('LACOR', 'La corne d''abondance', 'Daniel Tonini', 'Sales Representative', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France', '30.59.84.10', '30.59.85.11');
INSERT INTO customers VALUES ('LAMAI', 'La maison d''Asie', 'Annette Roulet', 'Sales Manager', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France', '61.77.61.10', '61.77.61.11');
INSERT INTO customers VALUES ('LAUGB', 'Laughing Bacchus Wine Cellars', 'Yoshi Tannamuri', 'Marketing Assistant', '1900 Oak St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada', '(604) 555-3392', '(604) 555-7293');
INSERT INTO customers VALUES ('LAZYK', 'Lazy K Kountry Store', 'John Steel', 'Marketing Manager', '12 Orchestra Terrace', 'Walla Walla', 'WA', '99362', 'USA', '(509) 555-7969', '(509) 555-6221');
INSERT INTO customers VALUES ('LEHMS', 'Lehmanns Marktstand', 'Renate Messner', 'Sales Representative', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany', '069-0245984', '069-0245874');
INSERT INTO customers VALUES ('LETSS', 'Let''s Stop N Shop', 'Jaime Yorres', 'Owner', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA', '(415) 555-5938', NULL);
INSERT INTO customers VALUES ('LILAS', 'LILA-Supermercado', 'Carlos González', 'Accounting Manager', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela', '(9) 331-6954', '(9) 331-7256');
INSERT INTO customers VALUES ('LINOD', 'LINO-Delicateses', 'Felipe Izquierdo', 'Owner', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela', '(8) 34-56-12', '(8) 34-93-93');
INSERT INTO customers VALUES ('LONEP', 'Lonesome Pine Restaurant', 'Fran Wilson', 'Sales Manager', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA', '(503) 555-9573', '(503) 555-9646');
INSERT INTO customers VALUES ('MAGAA', 'Magazzini Alimentari Riuniti', 'Giovanni Rovelli', 'Marketing Manager', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy', '035-640230', '035-640231');
INSERT INTO customers VALUES ('MAISD', 'Maison Dewey', 'Catherine Dewey', 'Sales Agent', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium', '(02) 201 24 67', '(02) 201 24 68');
INSERT INTO customers VALUES ('MEREP', 'Mère Paillarde', 'Jean Fresnière', 'Marketing Assistant', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada', '(514) 555-8054', '(514) 555-8055');
INSERT INTO customers VALUES ('MORGK', 'Morgenstern Gesundkost', 'Alexander Feuer', 'Marketing Assistant', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany', '0342-023176', NULL);
INSERT INTO customers VALUES ('NORTS', 'North/South', 'Simon Crowther', 'Sales Associate', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK', '(171) 555-7733', '(171) 555-2530');
INSERT INTO customers VALUES ('OCEAN', 'Océano Atlántico Ltda.', 'Yvonne Moncada', 'Sales Agent', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 135-5333', '(1) 135-5535');
INSERT INTO customers VALUES ('OLDWO', 'Old World Delicatessen', 'Rene Phillips', 'Sales Representative', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA', '(907) 555-7584', '(907) 555-2880');
INSERT INTO customers VALUES ('OTTIK', 'Ottilies Käseladen', 'Henriette Pfalzheim', 'Owner', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany', '0221-0644327', '0221-0765721');
INSERT INTO customers VALUES ('PARIS', 'Paris spécialités', 'Marie Bertrand', 'Owner', '265, boulevard Charonne', 'Paris', NULL, '75012', 'France', '(1) 42.34.22.66', '(1) 42.34.22.77');
INSERT INTO customers VALUES ('PERIC', 'Pericles Comidas clásicas', 'Guillermo Fernández', 'Sales Representative', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico', '(5) 552-3745', '(5) 545-3745');
INSERT INTO customers VALUES ('PICCO', 'Piccolo und mehr', 'Georg Pipps', 'Sales Manager', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria', '6562-9722', '6562-9723');
INSERT INTO customers VALUES ('PRINI', 'Princesa Isabel Vinhos', 'Isabel de Castro', 'Sales Representative', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal', '(1) 356-5634', NULL);
INSERT INTO customers VALUES ('QUEDE', 'Que Delícia', 'Bernardo Batista', 'Accounting Manager', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil', '(21) 555-4252', '(21) 555-4545');
INSERT INTO customers VALUES ('QUEEN', 'Queen Cozinha', 'Lúcia Carvalho', 'Marketing Assistant', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil', '(11) 555-1189', NULL);
INSERT INTO customers VALUES ('QUICK', 'QUICK-Stop', 'Horst Kloss', 'Accounting Manager', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany', '0372-035188', NULL);
INSERT INTO customers VALUES ('RANCH', 'Rancho grande', 'Sergio Gutiérrez', 'Sales Representative', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 123-5555', '(1) 123-5556');
INSERT INTO customers VALUES ('RATTC', 'Rattlesnake Canyon Grocery', 'Paula Wilson', 'Assistant Sales Representative', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA', '(505) 555-5939', '(505) 555-3620');
INSERT INTO customers VALUES ('REGGC', 'Reggiani Caseifici', 'Maurizio Moroni', 'Sales Associate', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy', '0522-556721', '0522-556722');
INSERT INTO customers VALUES ('RICAR', 'Ricardo Adocicados', 'Janete Limeira', 'Assistant Sales Agent', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil', '(21) 555-3412', NULL);
INSERT INTO customers VALUES ('RICSU', 'Richter Supermarkt', 'Michael Holz', 'Sales Manager', 'Grenzacherweg 237', 'Genève', NULL, '1203', 'Switzerland', '0897-034214', NULL);
INSERT INTO customers VALUES ('ROMEY', 'Romero y tomillo', 'Alejandra Camino', 'Accounting Manager', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain', '(91) 745 6200', '(91) 745 6210');
INSERT INTO customers VALUES ('SANTG', 'Santé Gourmet', 'Jonas Bergulfsen', 'Owner', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway', '07-98 92 35', '07-98 92 47');
INSERT INTO customers VALUES ('SAVEA', 'Save-a-lot Markets', 'Jose Pavarotti', 'Sales Representative', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA', '(208) 555-8097', NULL);
INSERT INTO customers VALUES ('SEVES', 'Seven Seas Imports', 'Hari Kumar', 'Sales Manager', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK', '(171) 555-1717', '(171) 555-5646');
INSERT INTO customers VALUES ('SIMOB', 'Simons bistro', 'Jytte Petersen', 'Owner', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark', '31 12 34 56', '31 13 35 57');
INSERT INTO customers VALUES ('SPECD', 'Spécialités du monde', 'Dominique Perrier', 'Marketing Manager', '25, rue Lauriston', 'Paris', NULL, '75016', 'France', '(1) 47.55.60.10', '(1) 47.55.60.20');
INSERT INTO customers VALUES ('SPLIR', 'Split Rail Beer & Ale', 'Art Braunschweiger', 'Sales Manager', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA', '(307) 555-4680', '(307) 555-6525');
INSERT INTO customers VALUES ('SUPRD', 'Suprêmes délices', 'Pascale Cartrain', 'Accounting Manager', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium', '(071) 23 67 22 20', '(071) 23 67 22 21');
INSERT INTO customers VALUES ('THEBI', 'The Big Cheese', 'Liz Nixon', 'Marketing Manager', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA', '(503) 555-3612', NULL);
INSERT INTO customers VALUES ('THECR', 'The Cracker Box', 'Liu Wong', 'Marketing Assistant', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA', '(406) 555-5834', '(406) 555-8083');
INSERT INTO customers VALUES ('TOMSP', 'Toms Spezialitäten', 'Karin Josephs', 'Marketing Manager', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany', '0251-031259', '0251-035695');
INSERT INTO customers VALUES ('TORTU', 'Tortuga Restaurante', 'Miguel Angel Paolino', 'Owner', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico', '(5) 555-2933', NULL);
INSERT INTO customers VALUES ('TRADH', 'Tradição Hipermercados', 'Anabela Domingues', 'Sales Representative', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil', '(11) 555-2167', '(11) 555-2168');
INSERT INTO customers VALUES ('TRAIH', 'Trail''s Head Gourmet Provisioners', 'Helvetius Nagy', 'Sales Associate', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA', '(206) 555-8257', '(206) 555-2174');
INSERT INTO customers VALUES ('VAFFE', 'Vaffeljernet', 'Palle Ibsen', 'Sales Manager', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark', '86 21 32 43', '86 22 33 44');
INSERT INTO customers VALUES ('VICTE', 'Victuailles en stock', 'Mary Saveley', 'Sales Agent', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France', '78.32.54.86', '78.32.54.87');
INSERT INTO customers VALUES ('VINET', 'Vins et alcools Chevalier', 'Paul Henriot', 'Accounting Manager', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France', '26.47.15.10', '26.47.15.11');
INSERT INTO customers VALUES ('WANDK', 'Die Wandernde Kuh', 'Rita Müller', 'Sales Representative', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany', '0711-020361', '0711-035428');
INSERT INTO customers VALUES ('WARTH', 'Wartian Herkku', 'Pirkko Koskitalo', 'Accounting Manager', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland', '981-443655', '981-443655');
INSERT INTO customers VALUES ('WELLI', 'Wellington Importadora', 'Paula Parente', 'Sales Manager', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil', '(14) 555-8122', NULL);
INSERT INTO customers VALUES ('WHITC', 'White Clover Markets', 'Karl Jablonski', 'Owner', '305 - 14th Ave. S. Suite 3B', 'Seattle', 'WA', '98128', 'USA', '(206) 555-4112', '(206) 555-4115');
INSERT INTO customers VALUES ('WILMK', 'Wilman Kala', 'Matti Karttunen', 'Owner/Marketing Assistant', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland', '90-224 8858', '90-224 8858');
INSERT INTO customers VALUES ('WOLZA', 'Wolski Zajazd', 'Zbyszek Piestrzeniewicz', 'Owner', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland', '(26) 642-7012', '(26) 642-7012');
INSERT INTO customers VALUES ('11', 'Heli Süßwaren GmbH & Co. KG', NULL, NULL, NULL, NULL, NULL, NULL, 'Austria', NULL, NULL);
INSERT INTO customers VALUES ('1', 'Exotic Liquids', NULL, NULL, NULL, NULL, NULL, NULL, 'UK', NULL, NULL);
INSERT INTO customers VALUES ('2', 'New Orleans Cajun Delights', NULL, NULL, NULL, NULL, NULL, NULL, 'USA', NULL, NULL);
INSERT INTO customers VALUES ('3', 'Grandma Kelly''s Homestead', NULL, NULL, NULL, NULL, NULL, NULL, 'USA', NULL, NULL);
INSERT INTO customers VALUES ('4', 'Tokyo Traders', NULL, NULL, NULL, NULL, NULL, NULL, 'Japan', NULL, NULL);
INSERT INTO customers VALUES ('5', 'Cooperativa de Quesos ''Las Cabras''', NULL, NULL, NULL, NULL, NULL, NULL, 'Spain', NULL, NULL);
INSERT INTO customers VALUES ('6', 'Mayumi''s', NULL, NULL, NULL, NULL, NULL, NULL, 'Japan', NULL, NULL);
INSERT INTO customers VALUES ('7', 'Pavlova, Ltd.', NULL, NULL, NULL, NULL, NULL, NULL, 'Australia', NULL, NULL);
INSERT INTO customers VALUES ('8', 'Specialty Biscuits, Ltd.', NULL, NULL, NULL, NULL, NULL, NULL, 'UK', NULL, NULL);
INSERT INTO customers VALUES ('10', 'Refrescos Americanas LTDA', NULL, NULL, NULL, NULL, NULL, NULL, 'Brazil', NULL, NULL);
INSERT INTO customers VALUES ('12', 'Plutzer Lebensmittelgroßmärkte AG', NULL, NULL, NULL, NULL, NULL, NULL, 'Germany', NULL, NULL);
INSERT INTO customers VALUES ('13', 'Nord-Ost-Fisch Handelsgesellschaft mbH', NULL, NULL, NULL, NULL, NULL, NULL, 'Germany', NULL, NULL);
INSERT INTO customers VALUES ('14', 'Formaggi Fortini s.r.l.', NULL, NULL, NULL, NULL, NULL, NULL, 'Italy', NULL, NULL);
INSERT INTO customers VALUES ('15', 'Norske Meierier', NULL, NULL, NULL, NULL, NULL, NULL, 'Norway', NULL, NULL);
INSERT INTO customers VALUES ('16', 'Bigfoot Breweries', NULL, NULL, NULL, NULL, NULL, NULL, 'USA', NULL, NULL);
INSERT INTO customers VALUES ('17', 'Svensk Sjöföda AB', NULL, NULL, NULL, NULL, NULL, NULL, 'Sweden', NULL, NULL);
INSERT INTO customers VALUES ('18', 'Aux joyeux ecclésiastiques', NULL, NULL, NULL, NULL, NULL, NULL, 'France', NULL, NULL);
INSERT INTO customers VALUES ('19', 'New England Seafood Cannery', NULL, NULL, NULL, NULL, NULL, NULL, 'USA', NULL, NULL);
INSERT INTO customers VALUES ('20', 'Leka Trading', NULL, NULL, NULL, NULL, NULL, NULL, 'Singapore', NULL, NULL);
INSERT INTO customers VALUES ('21', 'Lyngbysild', NULL, NULL, NULL, NULL, NULL, NULL, 'Denmark', NULL, NULL);
INSERT INTO customers VALUES ('22', 'Zaanse Snoepfabriek', NULL, NULL, NULL, NULL, NULL, NULL, 'Netherlands', NULL, NULL);
INSERT INTO customers VALUES ('23', 'Karkki Oy', NULL, NULL, NULL, NULL, NULL, NULL, 'Finland', NULL, NULL);
INSERT INTO customers VALUES ('24', 'G''day, Mate', NULL, NULL, NULL, NULL, NULL, NULL, 'Australia', NULL, NULL);
INSERT INTO customers VALUES ('25', 'Ma Maison', NULL, NULL, NULL, NULL, NULL, NULL, 'Canada', NULL, NULL);
INSERT INTO customers VALUES ('26', 'Pasta Buttini s.r.l.', NULL, NULL, NULL, NULL, NULL, NULL, 'Italy', NULL, NULL);
INSERT INTO customers VALUES ('27', 'Escargots Nouveaux', NULL, NULL, NULL, NULL, NULL, NULL, 'France', NULL, NULL);
INSERT INTO customers VALUES ('28', 'Gai pâturage', NULL, NULL, NULL, NULL, NULL, NULL, 'France', NULL, NULL);
INSERT INTO customers VALUES ('29', 'Forêts d''érables', NULL, NULL, NULL, NULL, NULL, NULL, 'Canada', NULL, NULL);
INSERT INTO customers VALUES ('99', 'Sakarya Üniversitesi', 'Mehmet Kartal', NULL, NULL, 'Sakarya', NULL, '54050', 'Türkiye', NULL, NULL);
INSERT INTO customers VALUES ('9', 'Örnek Şirket', 'Ahmet Şahin', NULL, NULL, 'Girne', NULL, '01000', 'Kuzey Kıbrıs Türk Cumhuriyeti', NULL, NULL);
--
-- Data for Name: employees; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO employees VALUES (1, 'Davolio', 'Nancy', 'Sales Representative', 'Ms.', '1948-12-08', '1992-05-01', '507 - 20th Ave. E.\nApt. 2A', 'Seattle', 'WA', '98122', 'USA', '(206) 555-9857', '5467', '\x', 'Education includes a BA in psychology from Colorado State University in 1970. She also completed "The Art of the Cold Call." Nancy is a member of Toastmasters International.', 2, 'http://accweb/emmployees/davolio.bmp');
INSERT INTO employees VALUES (2, 'Fuller', 'Andrew', 'Vice President, Sales', 'Dr.', '1952-02-19', '1992-08-14', '908 W. Capital Way', 'Tacoma', 'WA', '98401', 'USA', '(206) 555-9482', '3457', '\x', 'Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981. He is fluent in French and Italian and reads German. He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993. Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.', NULL, 'http://accweb/emmployees/fuller.bmp');
INSERT INTO employees VALUES (3, 'Leverling', 'Janet', 'Sales Representative', 'Ms.', '1963-08-30', '1992-04-01', '722 Moss Bay Blvd.', 'Kirkland', 'WA', '98033', 'USA', '(206) 555-3412', '3355', '\x', 'Janet has a BS degree in chemistry from Boston College (1984). She has also completed a certificate program in food retailing management. Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.', 2, 'http://accweb/emmployees/leverling.bmp');
INSERT INTO employees VALUES (4, 'Peacock', 'Margaret', 'Sales Representative', 'Mrs.', '1937-09-19', '1993-05-03', '4110 Old Redmond Rd.', 'Redmond', 'WA', '98052', 'USA', '(206) 555-8122', '5176', '\x', 'Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966). She was assigned to the London office temporarily from July through November 1992.', 2, 'http://accweb/emmployees/peacock.bmp');
INSERT INTO employees VALUES (5, 'Buchanan', 'Steven', 'Sales Manager', 'Mr.', '1955-03-04', '1993-10-17', '14 Garrett Hill', 'London', NULL, 'SW1 8JR', 'UK', '(71) 555-4848', '3453', '\x', 'Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976. Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London. He was promoted to sales manager in March 1993. Mr. Buchanan has completed the courses "Successful Telemarketing" and "International Sales Management." He is fluent in French.', 2, 'http://accweb/emmployees/buchanan.bmp');
INSERT INTO employees VALUES (6, 'Suyama', 'Michael', 'Sales Representative', 'Mr.', '1963-07-02', '1993-10-17', 'Coventry House\nMiner Rd.', 'London', NULL, 'EC2 7JR', 'UK', '(71) 555-7773', '428', '\x', 'Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986). He has also taken the courses "Multi-Cultural Selling" and "Time Management for the Sales Professional." He is fluent in Japanese and can read and write French, Portuguese, and Spanish.', 5, 'http://accweb/emmployees/davolio.bmp');
INSERT INTO employees VALUES (7, 'King', 'Robert', 'Sales Representative', 'Mr.', '1960-05-29', '1994-01-02', 'Edgeham Hollow\nWinchester Way', 'London', NULL, 'RG1 9SP', 'UK', '(71) 555-5598', '465', '\x', 'Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company. After completing a course entitled "Selling in Europe," he was transferred to the London office in March 1993.', 5, 'http://accweb/emmployees/davolio.bmp');
INSERT INTO employees VALUES (8, 'Callahan', 'Laura', 'Inside Sales Coordinator', 'Ms.', '1958-01-09', '1994-03-05', '4726 - 11th Ave. N.E.', 'Seattle', 'WA', '98105', 'USA', '(206) 555-1189', '2344', '\x', 'Laura received a BA in psychology from the University of Washington. She has also completed a course in business French. She reads and writes French.', 2, 'http://accweb/emmployees/davolio.bmp');
INSERT INTO employees VALUES (9, 'Dodsworth', 'Anne', 'Sales Representative', 'Ms.', '1966-01-27', '1994-11-15', '7 Houndstooth Rd.', 'London', NULL, 'WG2 7LT', 'UK', '(71) 555-4444', '452', '\x', 'Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German.', 5, 'http://accweb/emmployees/davolio.bmp');
--
-- Data for Name: employeeterritories; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO employeeterritories VALUES (1, '06897');
INSERT INTO employeeterritories VALUES (1, '19713');
INSERT INTO employeeterritories VALUES (2, '01581');
INSERT INTO employeeterritories VALUES (2, '01730');
INSERT INTO employeeterritories VALUES (2, '01833');
INSERT INTO employeeterritories VALUES (2, '02116');
INSERT INTO employeeterritories VALUES (2, '02139');
INSERT INTO employeeterritories VALUES (2, '02184');
INSERT INTO employeeterritories VALUES (2, '40222');
INSERT INTO employeeterritories VALUES (3, '30346');
INSERT INTO employeeterritories VALUES (3, '31406');
INSERT INTO employeeterritories VALUES (3, '32859');
INSERT INTO employeeterritories VALUES (3, '33607');
INSERT INTO employeeterritories VALUES (4, '20852');
INSERT INTO employeeterritories VALUES (4, '27403');
INSERT INTO employeeterritories VALUES (4, '27511');
INSERT INTO employeeterritories VALUES (5, '02903');
INSERT INTO employeeterritories VALUES (5, '07960');
INSERT INTO employeeterritories VALUES (5, '08837');
INSERT INTO employeeterritories VALUES (5, '10019');
INSERT INTO employeeterritories VALUES (5, '10038');
INSERT INTO employeeterritories VALUES (5, '11747');
INSERT INTO employeeterritories VALUES (5, '14450');
INSERT INTO employeeterritories VALUES (6, '85014');
INSERT INTO employeeterritories VALUES (6, '85251');
INSERT INTO employeeterritories VALUES (6, '98004');
INSERT INTO employeeterritories VALUES (6, '98052');
INSERT INTO employeeterritories VALUES (6, '98104');
INSERT INTO employeeterritories VALUES (7, '60179');
INSERT INTO employeeterritories VALUES (7, '60601');
INSERT INTO employeeterritories VALUES (7, '80202');
INSERT INTO employeeterritories VALUES (7, '80909');
INSERT INTO employeeterritories VALUES (7, '90405');
INSERT INTO employeeterritories VALUES (7, '94025');
INSERT INTO employeeterritories VALUES (7, '94105');
INSERT INTO employeeterritories VALUES (7, '95008');
INSERT INTO employeeterritories VALUES (7, '95054');
INSERT INTO employeeterritories VALUES (7, '95060');
INSERT INTO employeeterritories VALUES (8, '19428');
INSERT INTO employeeterritories VALUES (8, '44122');
INSERT INTO employeeterritories VALUES (8, '45839');
INSERT INTO employeeterritories VALUES (8, '53404');
INSERT INTO employeeterritories VALUES (9, '03049');
INSERT INTO employeeterritories VALUES (9, '03801');
INSERT INTO employeeterritories VALUES (9, '48075');
INSERT INTO employeeterritories VALUES (9, '48084');
INSERT INTO employeeterritories VALUES (9, '48304');
INSERT INTO employeeterritories VALUES (9, '55113');
INSERT INTO employeeterritories VALUES (9, '55439');
--
-- Data for Name: order_details; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO order_details VALUES (10248, 11, 14, 12, 0);
INSERT INTO order_details VALUES (10248, 42, 9.80000019, 10, 0);
INSERT INTO order_details VALUES (10248, 72, 34.7999992, 5, 0);
INSERT INTO order_details VALUES (10249, 14, 18.6000004, 9, 0);
INSERT INTO order_details VALUES (10249, 51, 42.4000015, 40, 0);
INSERT INTO order_details VALUES (10250, 41, 7.69999981, 10, 0);
INSERT INTO order_details VALUES (10250, 51, 42.4000015, 35, 0.150000006);
INSERT INTO order_details VALUES (10250, 65, 16.7999992, 15, 0.150000006);
INSERT INTO order_details VALUES (10251, 22, 16.7999992, 6, 0.0500000007);
INSERT INTO order_details VALUES (10251, 57, 15.6000004, 15, 0.0500000007);
INSERT INTO order_details VALUES (10251, 65, 16.7999992, 20, 0);
INSERT INTO order_details VALUES (10252, 20, 64.8000031, 40, 0.0500000007);
INSERT INTO order_details VALUES (10252, 33, 2, 25, 0.0500000007);
INSERT INTO order_details VALUES (10252, 60, 27.2000008, 40, 0);
INSERT INTO order_details VALUES (10253, 31, 10, 20, 0);
INSERT INTO order_details VALUES (10253, 39, 14.3999996, 42, 0);
INSERT INTO order_details VALUES (10253, 49, 16, 40, 0);
INSERT INTO order_details VALUES (10254, 24, 3.5999999, 15, 0.150000006);
INSERT INTO order_details VALUES (10254, 55, 19.2000008, 21, 0.150000006);
INSERT INTO order_details VALUES (10254, 74, 8, 21, 0);
INSERT INTO order_details VALUES (10255, 2, 15.1999998, 20, 0);
INSERT INTO order_details VALUES (10255, 16, 13.8999996, 35, 0);
INSERT INTO order_details VALUES (10255, 36, 15.1999998, 25, 0);
INSERT INTO order_details VALUES (10255, 59, 44, 30, 0);
INSERT INTO order_details VALUES (10256, 53, 26.2000008, 15, 0);
INSERT INTO order_details VALUES (10256, 77, 10.3999996, 12, 0);
INSERT INTO order_details VALUES (10257, 27, 35.0999985, 25, 0);
INSERT INTO order_details VALUES (10257, 39, 14.3999996, 6, 0);
INSERT INTO order_details VALUES (10257, 77, 10.3999996, 15, 0);
INSERT INTO order_details VALUES (10258, 2, 15.1999998, 50, 0.200000003);
INSERT INTO order_details VALUES (10258, 5, 17, 65, 0.200000003);
INSERT INTO order_details VALUES (10258, 32, 25.6000004, 6, 0.200000003);
INSERT INTO order_details VALUES (10259, 21, 8, 10, 0);
INSERT INTO order_details VALUES (10259, 37, 20.7999992, 1, 0);
INSERT INTO order_details VALUES (10260, 41, 7.69999981, 16, 0.25);
INSERT INTO order_details VALUES (10260, 57, 15.6000004, 50, 0);
INSERT INTO order_details VALUES (10260, 62, 39.4000015, 15, 0.25);
INSERT INTO order_details VALUES (10260, 70, 12, 21, 0.25);
INSERT INTO order_details VALUES (10261, 21, 8, 20, 0);
INSERT INTO order_details VALUES (10261, 35, 14.3999996, 20, 0);
INSERT INTO order_details VALUES (10262, 5, 17, 12, 0.200000003);
INSERT INTO order_details VALUES (10262, 7, 24, 15, 0);
INSERT INTO order_details VALUES (10262, 56, 30.3999996, 2, 0);
INSERT INTO order_details VALUES (10263, 16, 13.8999996, 60, 0.25);
INSERT INTO order_details VALUES (10263, 24, 3.5999999, 28, 0);
INSERT INTO order_details VALUES (10263, 30, 20.7000008, 60, 0.25);
INSERT INTO order_details VALUES (10263, 74, 8, 36, 0.25);
INSERT INTO order_details VALUES (10264, 2, 15.1999998, 35, 0);
INSERT INTO order_details VALUES (10264, 41, 7.69999981, 25, 0.150000006);
INSERT INTO order_details VALUES (10265, 17, 31.2000008, 30, 0);
INSERT INTO order_details VALUES (10265, 70, 12, 20, 0);
INSERT INTO order_details VALUES (10266, 12, 30.3999996, 12, 0.0500000007);
INSERT INTO order_details VALUES (10267, 40, 14.6999998, 50, 0);
INSERT INTO order_details VALUES (10267, 59, 44, 70, 0.150000006);
INSERT INTO order_details VALUES (10267, 76, 14.3999996, 15, 0.150000006);
INSERT INTO order_details VALUES (10268, 29, 99, 10, 0);
INSERT INTO order_details VALUES (10268, 72, 27.7999992, 4, 0);
INSERT INTO order_details VALUES (10269, 33, 2, 60, 0.0500000007);
INSERT INTO order_details VALUES (10269, 72, 27.7999992, 20, 0.0500000007);
INSERT INTO order_details VALUES (10270, 36, 15.1999998, 30, 0);
INSERT INTO order_details VALUES (10270, 43, 36.7999992, 25, 0);
INSERT INTO order_details VALUES (10271, 33, 2, 24, 0);
INSERT INTO order_details VALUES (10272, 20, 64.8000031, 6, 0);
INSERT INTO order_details VALUES (10272, 31, 10, 40, 0);
INSERT INTO order_details VALUES (10272, 72, 27.7999992, 24, 0);
INSERT INTO order_details VALUES (10273, 10, 24.7999992, 24, 0.0500000007);
INSERT INTO order_details VALUES (10273, 31, 10, 15, 0.0500000007);
INSERT INTO order_details VALUES (10273, 33, 2, 20, 0);
INSERT INTO order_details VALUES (10273, 40, 14.6999998, 60, 0.0500000007);
INSERT INTO order_details VALUES (10273, 76, 14.3999996, 33, 0.0500000007);
INSERT INTO order_details VALUES (10274, 71, 17.2000008, 20, 0);
INSERT INTO order_details VALUES (10274, 72, 27.7999992, 7, 0);
INSERT INTO order_details VALUES (10275, 24, 3.5999999, 12, 0.0500000007);
INSERT INTO order_details VALUES (10275, 59, 44, 6, 0.0500000007);
INSERT INTO order_details VALUES (10276, 10, 24.7999992, 15, 0);
INSERT INTO order_details VALUES (10276, 13, 4.80000019, 10, 0);
INSERT INTO order_details VALUES (10277, 28, 36.4000015, 20, 0);
INSERT INTO order_details VALUES (10277, 62, 39.4000015, 12, 0);
INSERT INTO order_details VALUES (10278, 44, 15.5, 16, 0);
INSERT INTO order_details VALUES (10278, 59, 44, 15, 0);
INSERT INTO order_details VALUES (10278, 63, 35.0999985, 8, 0);
INSERT INTO order_details VALUES (10278, 73, 12, 25, 0);
INSERT INTO order_details VALUES (10279, 17, 31.2000008, 15, 0.25);
INSERT INTO order_details VALUES (10280, 24, 3.5999999, 12, 0);
INSERT INTO order_details VALUES (10280, 55, 19.2000008, 20, 0);
INSERT INTO order_details VALUES (10280, 75, 6.19999981, 30, 0);
INSERT INTO order_details VALUES (10281, 19, 7.30000019, 1, 0);
INSERT INTO order_details VALUES (10281, 24, 3.5999999, 6, 0);
INSERT INTO order_details VALUES (10281, 35, 14.3999996, 4, 0);
INSERT INTO order_details VALUES (10282, 30, 20.7000008, 6, 0);
INSERT INTO order_details VALUES (10282, 57, 15.6000004, 2, 0);
INSERT INTO order_details VALUES (10283, 15, 12.3999996, 20, 0);
INSERT INTO order_details VALUES (10283, 19, 7.30000019, 18, 0);
INSERT INTO order_details VALUES (10283, 60, 27.2000008, 35, 0);
INSERT INTO order_details VALUES (10283, 72, 27.7999992, 3, 0);
INSERT INTO order_details VALUES (10284, 27, 35.0999985, 15, 0.25);
INSERT INTO order_details VALUES (10284, 44, 15.5, 21, 0);
INSERT INTO order_details VALUES (10284, 60, 27.2000008, 20, 0.25);
INSERT INTO order_details VALUES (10284, 67, 11.1999998, 5, 0.25);
INSERT INTO order_details VALUES (10285, 1, 14.3999996, 45, 0.200000003);
INSERT INTO order_details VALUES (10285, 40, 14.6999998, 40, 0.200000003);
INSERT INTO order_details VALUES (10285, 53, 26.2000008, 36, 0.200000003);
INSERT INTO order_details VALUES (10286, 35, 14.3999996, 100, 0);
INSERT INTO order_details VALUES (10286, 62, 39.4000015, 40, 0);
INSERT INTO order_details VALUES (10287, 16, 13.8999996, 40, 0.150000006);
INSERT INTO order_details VALUES (10287, 34, 11.1999998, 20, 0);
INSERT INTO order_details VALUES (10287, 46, 9.60000038, 15, 0.150000006);
INSERT INTO order_details VALUES (10288, 54, 5.9000001, 10, 0.100000001);
INSERT INTO order_details VALUES (10288, 68, 10, 3, 0.100000001);
INSERT INTO order_details VALUES (10289, 3, 8, 30, 0);
INSERT INTO order_details VALUES (10289, 64, 26.6000004, 9, 0);
INSERT INTO order_details VALUES (10290, 5, 17, 20, 0);
INSERT INTO order_details VALUES (10290, 29, 99, 15, 0);
INSERT INTO order_details VALUES (10290, 49, 16, 15, 0);
INSERT INTO order_details VALUES (10290, 77, 10.3999996, 10, 0);
INSERT INTO order_details VALUES (10291, 13, 4.80000019, 20, 0.100000001);
INSERT INTO order_details VALUES (10291, 44, 15.5, 24, 0.100000001);
INSERT INTO order_details VALUES (10291, 51, 42.4000015, 2, 0.100000001);
INSERT INTO order_details VALUES (10292, 20, 64.8000031, 20, 0);
INSERT INTO order_details VALUES (10293, 18, 50, 12, 0);
INSERT INTO order_details VALUES (10293, 24, 3.5999999, 10, 0);
INSERT INTO order_details VALUES (10293, 63, 35.0999985, 5, 0);
INSERT INTO order_details VALUES (10293, 75, 6.19999981, 6, 0);
INSERT INTO order_details VALUES (10294, 1, 14.3999996, 18, 0);
INSERT INTO order_details VALUES (10294, 17, 31.2000008, 15, 0);
INSERT INTO order_details VALUES (10294, 43, 36.7999992, 15, 0);
INSERT INTO order_details VALUES (10294, 60, 27.2000008, 21, 0);
INSERT INTO order_details VALUES (10294, 75, 6.19999981, 6, 0);
INSERT INTO order_details VALUES (10295, 56, 30.3999996, 4, 0);
INSERT INTO order_details VALUES (10296, 11, 16.7999992, 12, 0);
INSERT INTO order_details VALUES (10296, 16, 13.8999996, 30, 0);
INSERT INTO order_details VALUES (10296, 69, 28.7999992, 15, 0);
INSERT INTO order_details VALUES (10297, 39, 14.3999996, 60, 0);
INSERT INTO order_details VALUES (10297, 72, 27.7999992, 20, 0);
INSERT INTO order_details VALUES (10298, 2, 15.1999998, 40, 0);
INSERT INTO order_details VALUES (10298, 36, 15.1999998, 40, 0.25);
INSERT INTO order_details VALUES (10298, 59, 44, 30, 0.25);
INSERT INTO order_details VALUES (10298, 62, 39.4000015, 15, 0);
INSERT INTO order_details VALUES (10299, 19, 7.30000019, 15, 0);
INSERT INTO order_details VALUES (10299, 70, 12, 20, 0);
INSERT INTO order_details VALUES (10300, 66, 13.6000004, 30, 0);
INSERT INTO order_details VALUES (10300, 68, 10, 20, 0);
INSERT INTO order_details VALUES (10301, 40, 14.6999998, 10, 0);
INSERT INTO order_details VALUES (10301, 56, 30.3999996, 20, 0);
INSERT INTO order_details VALUES (10302, 17, 31.2000008, 40, 0);
INSERT INTO order_details VALUES (10302, 28, 36.4000015, 28, 0);
INSERT INTO order_details VALUES (10302, 43, 36.7999992, 12, 0);
INSERT INTO order_details VALUES (10303, 40, 14.6999998, 40, 0.100000001);
INSERT INTO order_details VALUES (10303, 65, 16.7999992, 30, 0.100000001);
INSERT INTO order_details VALUES (10303, 68, 10, 15, 0.100000001);
INSERT INTO order_details VALUES (10304, 49, 16, 30, 0);
INSERT INTO order_details VALUES (10304, 59, 44, 10, 0);
INSERT INTO order_details VALUES (10304, 71, 17.2000008, 2, 0);
INSERT INTO order_details VALUES (10305, 18, 50, 25, 0.100000001);
INSERT INTO order_details VALUES (10305, 29, 99, 25, 0.100000001);
INSERT INTO order_details VALUES (10305, 39, 14.3999996, 30, 0.100000001);
INSERT INTO order_details VALUES (10306, 30, 20.7000008, 10, 0);
INSERT INTO order_details VALUES (10306, 53, 26.2000008, 10, 0);
INSERT INTO order_details VALUES (10306, 54, 5.9000001, 5, 0);
INSERT INTO order_details VALUES (10307, 62, 39.4000015, 10, 0);
INSERT INTO order_details VALUES (10307, 68, 10, 3, 0);
INSERT INTO order_details VALUES (10308, 69, 28.7999992, 1, 0);
INSERT INTO order_details VALUES (10308, 70, 12, 5, 0);
INSERT INTO order_details VALUES (10309, 4, 17.6000004, 20, 0);
INSERT INTO order_details VALUES (10309, 6, 20, 30, 0);
INSERT INTO order_details VALUES (10309, 42, 11.1999998, 2, 0);
INSERT INTO order_details VALUES (10309, 43, 36.7999992, 20, 0);
INSERT INTO order_details VALUES (10309, 71, 17.2000008, 3, 0);
INSERT INTO order_details VALUES (10310, 16, 13.8999996, 10, 0);
INSERT INTO order_details VALUES (10310, 62, 39.4000015, 5, 0);
INSERT INTO order_details VALUES (10311, 42, 11.1999998, 6, 0);
INSERT INTO order_details VALUES (10311, 69, 28.7999992, 7, 0);
INSERT INTO order_details VALUES (10312, 28, 36.4000015, 4, 0);
INSERT INTO order_details VALUES (10312, 43, 36.7999992, 24, 0);
INSERT INTO order_details VALUES (10312, 53, 26.2000008, 20, 0);
INSERT INTO order_details VALUES (10312, 75, 6.19999981, 10, 0);
INSERT INTO order_details VALUES (10313, 36, 15.1999998, 12, 0);
INSERT INTO order_details VALUES (10314, 32, 25.6000004, 40, 0.100000001);
INSERT INTO order_details VALUES (10314, 58, 10.6000004, 30, 0.100000001);
INSERT INTO order_details VALUES (10314, 62, 39.4000015, 25, 0.100000001);
INSERT INTO order_details VALUES (10315, 34, 11.1999998, 14, 0);
INSERT INTO order_details VALUES (10315, 70, 12, 30, 0);
INSERT INTO order_details VALUES (10316, 41, 7.69999981, 10, 0);
INSERT INTO order_details VALUES (10316, 62, 39.4000015, 70, 0);
INSERT INTO order_details VALUES (10317, 1, 14.3999996, 20, 0);
INSERT INTO order_details VALUES (10318, 41, 7.69999981, 20, 0);
INSERT INTO order_details VALUES (10318, 76, 14.3999996, 6, 0);
INSERT INTO order_details VALUES (10319, 17, 31.2000008, 8, 0);
INSERT INTO order_details VALUES (10319, 28, 36.4000015, 14, 0);
INSERT INTO order_details VALUES (10319, 76, 14.3999996, 30, 0);
INSERT INTO order_details VALUES (10320, 71, 17.2000008, 30, 0);
INSERT INTO order_details VALUES (10321, 35, 14.3999996, 10, 0);
INSERT INTO order_details VALUES (10322, 52, 5.5999999, 20, 0);
INSERT INTO order_details VALUES (10323, 15, 12.3999996, 5, 0);
INSERT INTO order_details VALUES (10323, 25, 11.1999998, 4, 0);
INSERT INTO order_details VALUES (10323, 39, 14.3999996, 4, 0);
INSERT INTO order_details VALUES (10324, 16, 13.8999996, 21, 0.150000006);
INSERT INTO order_details VALUES (10324, 35, 14.3999996, 70, 0.150000006);
INSERT INTO order_details VALUES (10324, 46, 9.60000038, 30, 0);
INSERT INTO order_details VALUES (10324, 59, 44, 40, 0.150000006);
INSERT INTO order_details VALUES (10324, 63, 35.0999985, 80, 0.150000006);
INSERT INTO order_details VALUES (10325, 6, 20, 6, 0);
INSERT INTO order_details VALUES (10325, 13, 4.80000019, 12, 0);
INSERT INTO order_details VALUES (10325, 14, 18.6000004, 9, 0);
INSERT INTO order_details VALUES (10325, 31, 10, 4, 0);
INSERT INTO order_details VALUES (10325, 72, 27.7999992, 40, 0);
INSERT INTO order_details VALUES (10326, 4, 17.6000004, 24, 0);
INSERT INTO order_details VALUES (10326, 57, 15.6000004, 16, 0);
INSERT INTO order_details VALUES (10326, 75, 6.19999981, 50, 0);
INSERT INTO order_details VALUES (10327, 2, 15.1999998, 25, 0.200000003);
INSERT INTO order_details VALUES (10327, 11, 16.7999992, 50, 0.200000003);
INSERT INTO order_details VALUES (10327, 30, 20.7000008, 35, 0.200000003);
INSERT INTO order_details VALUES (10327, 58, 10.6000004, 30, 0.200000003);
INSERT INTO order_details VALUES (10328, 59, 44, 9, 0);
INSERT INTO order_details VALUES (10328, 65, 16.7999992, 40, 0);
INSERT INTO order_details VALUES (10328, 68, 10, 10, 0);
INSERT INTO order_details VALUES (10329, 19, 7.30000019, 10, 0.0500000007);
INSERT INTO order_details VALUES (10329, 30, 20.7000008, 8, 0.0500000007);
INSERT INTO order_details VALUES (10329, 38, 210.800003, 20, 0.0500000007);
INSERT INTO order_details VALUES (10329, 56, 30.3999996, 12, 0.0500000007);
INSERT INTO order_details VALUES (10330, 26, 24.8999996, 50, 0.150000006);
INSERT INTO order_details VALUES (10330, 72, 27.7999992, 25, 0.150000006);
INSERT INTO order_details VALUES (10331, 54, 5.9000001, 15, 0);
INSERT INTO order_details VALUES (10332, 18, 50, 40, 0.200000003);
INSERT INTO order_details VALUES (10332, 42, 11.1999998, 10, 0.200000003);
INSERT INTO order_details VALUES (10332, 47, 7.5999999, 16, 0.200000003);
INSERT INTO order_details VALUES (10333, 14, 18.6000004, 10, 0);
INSERT INTO order_details VALUES (10333, 21, 8, 10, 0.100000001);
INSERT INTO order_details VALUES (10333, 71, 17.2000008, 40, 0.100000001);
INSERT INTO order_details VALUES (10334, 52, 5.5999999, 8, 0);
INSERT INTO order_details VALUES (10334, 68, 10, 10, 0);
INSERT INTO order_details VALUES (10335, 2, 15.1999998, 7, 0.200000003);
INSERT INTO order_details VALUES (10335, 31, 10, 25, 0.200000003);
INSERT INTO order_details VALUES (10335, 32, 25.6000004, 6, 0.200000003);
INSERT INTO order_details VALUES (10335, 51, 42.4000015, 48, 0.200000003);
INSERT INTO order_details VALUES (10336, 4, 17.6000004, 18, 0.100000001);
INSERT INTO order_details VALUES (10337, 23, 7.19999981, 40, 0);
INSERT INTO order_details VALUES (10337, 26, 24.8999996, 24, 0);
INSERT INTO order_details VALUES (10337, 36, 15.1999998, 20, 0);
INSERT INTO order_details VALUES (10337, 37, 20.7999992, 28, 0);
INSERT INTO order_details VALUES (10337, 72, 27.7999992, 25, 0);
INSERT INTO order_details VALUES (10338, 17, 31.2000008, 20, 0);
INSERT INTO order_details VALUES (10338, 30, 20.7000008, 15, 0);
INSERT INTO order_details VALUES (10339, 4, 17.6000004, 10, 0);
INSERT INTO order_details VALUES (10339, 17, 31.2000008, 70, 0.0500000007);
INSERT INTO order_details VALUES (10339, 62, 39.4000015, 28, 0);
INSERT INTO order_details VALUES (10340, 18, 50, 20, 0.0500000007);
INSERT INTO order_details VALUES (10340, 41, 7.69999981, 12, 0.0500000007);
INSERT INTO order_details VALUES (10340, 43, 36.7999992, 40, 0.0500000007);
INSERT INTO order_details VALUES (10341, 33, 2, 8, 0);
INSERT INTO order_details VALUES (10341, 59, 44, 9, 0.150000006);
INSERT INTO order_details VALUES (10342, 2, 15.1999998, 24, 0.200000003);
INSERT INTO order_details VALUES (10342, 31, 10, 56, 0.200000003);