-
Notifications
You must be signed in to change notification settings - Fork 1
/
virtuoso-northwind-ansi.sql
3450 lines (3383 loc) · 630 KB
/
virtuoso-northwind-ansi.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
-- Northwind Trading Database Schema
USE Demo;
-- Cleanup
DROP TABLE Order_Details;
DROP TABLE Orders;
DROP TABLE Employees;
DROP TABLE Customers;
DROP TABLE Products;
DROP TABLE Suppliers;
DROP TABLE Shippers;
DROP TABLE Categories;
-- Create Schema
CREATE TABLE demo.Categories (
CategoryID INTEGER,
CategoryName VARCHAR(15),
Description LONG VARCHAR,
Picture LONG VARBINARY,
PRIMARY KEY (CategoryID));
CREATE INDEX CategoryName ON demo.Categories (CategoryName);
CREATE TABLE demo.Shippers (
ShipperID INTEGER,
CompanyName VARCHAR(40),
Phone VARCHAR(24),
PRIMARY KEY (ShipperID));
CREATE TABLE demo.Suppliers (
SupplierID INTEGER,
CompanyName VARCHAR(40),
ContactName VARCHAR(30),
ContactTitle VARCHAR(30),
Address VARCHAR(60),
City VARCHAR(15),
Region VARCHAR(15),
PostalCode VARCHAR(10),
Country VARCHAR(15),
CountryCode VARCHAR (2),
Phone VARCHAR(24),
Fax VARCHAR(24),
HomePage LONG VARCHAR,
PRIMARY KEY (SupplierID));
CREATE INDEX CompanyName1 ON demo.Suppliers (CompanyName);
CREATE INDEX PostalCode1 ON demo.Suppliers (PostalCode);
CREATE TABLE demo.Products (
ProductID INTEGER,
ProductName VARCHAR(40),
SupplierID INTEGER,
CategoryID INTEGER,
QuantityPerUnit VARCHAR(20),
UnitPrice DOUBLE PRECISION,
UnitsInStock SMALLINT,
UnitsOnOrder SMALLINT,
ReorderLevel SMALLINT,
Discontinued SMALLINT,
PRIMARY KEY (ProductID),
FOREIGN KEY (SupplierID) REFERENCES Suppliers,
FOREIGN KEY (CategoryID) REFERENCES Categories);
CREATE INDEX CategoryID ON demo.Products (CategoryID);
CREATE INDEX ProductName ON demo.Products (ProductName);
CREATE INDEX SupplierID ON demo.Products (SupplierID);
CREATE TABLE demo.Customers (
CustomerID VARCHAR(5),
CompanyName VARCHAR(40),
ContactName VARCHAR(30),
ContactTitle VARCHAR(30),
Address VARCHAR(60),
City VARCHAR(15),
Region VARCHAR(15),
PostalCode VARCHAR(10),
Country VARCHAR(15),
CountryCode VARCHAR (2),
Phone VARCHAR(24),
Fax VARCHAR(24),
PRIMARY KEY (CustomerID));
CREATE INDEX City ON demo.Customers (City);
CREATE INDEX CompanyName2 ON demo.Customers (CompanyName);
CREATE INDEX PostalCode2 ON demo.Customers (PostalCode);
CREATE INDEX Region ON demo.Customers (Region);
CREATE TABLE demo.Employees (
EmployeeID INTEGER,
LastName VARCHAR(20),
FirstName VARCHAR(10),
Title VARCHAR(30),
TitleOfCourtesy VARCHAR(25),
BirthDate DATE,
HireDate DATE,
Address VARCHAR(60),
City VARCHAR(15),
Region VARCHAR(15),
PostalCode VARCHAR(10),
Country VARCHAR(15),
CountryCode VARCHAR (2),
HomePhone VARCHAR(24),
Extension VARCHAR(4),
Photo LONG VARBINARY,
Notes LONG VARCHAR,
ReportsTo INTEGER,
PRIMARY KEY (EmployeeID));
CREATE INDEX LastName ON demo.Employees (LastName);
CREATE INDEX PostalCode3 ON demo.Employees (PostalCode);
CREATE TABLE demo.Orders (
OrderID INTEGER,
CustomerID VARCHAR(5),
EmployeeID INTEGER,
OrderDate DATETIME,
RequiredDate DATE,
ShippedDate DATETIME,
ShipVia INTEGER,
Freight DOUBLE PRECISION,
ShipName VARCHAR(40),
ShipAddress VARCHAR(60),
ShipCity VARCHAR(15),
ShipRegion VARCHAR(15),
ShipPostalCode VARCHAR(10),
ShipCountry VARCHAR(15),
ShipCountryCode VARCHAR (2),
PRIMARY KEY (OrderID),
FOREIGN KEY (CustomerID) REFERENCES Customers,
FOREIGN KEY (ShipVia) REFERENCES Shippers,
FOREIGN KEY (EmployeeID) REFERENCES Employees);
CREATE INDEX CustomerID ON demo.Orders (CustomerID);
CREATE INDEX EmployeeID ON demo.Orders (EmployeeID);
CREATE INDEX OrderDate ON demo.Orders (OrderDate);
CREATE INDEX ShippedDate ON demo.Orders (ShippedDate);
CREATE TABLE demo.Order_Details (
OrderID INTEGER,
ProductID INTEGER,
UnitPrice DOUBLE PRECISION,
Quantity SMALLINT,
Discount REAL,
PRIMARY KEY (OrderID, ProductID),
FOREIGN KEY (OrderID) REFERENCES Orders,
FOREIGN KEY (ProductID) REFERENCES Products);
CREATE INDEX OrderID ON demo.Order_Details (OrderID);
CREATE INDEX ProductID ON demo.Order_Details (ProductID);
-- Generate Data
--
--
DELETE FROM Categories;
INSERT INTO Categories(CategoryID,CategoryName,Description,Picture) VALUES(1, 'Beverages', 'Soft drinks, coffees, teas, beers, and ales', file_to_string('CAT1'));
INSERT INTO Categories(CategoryID,CategoryName,Description,Picture) VALUES(2, 'Condiments', 'Sweet and savory sauces, relishes, spreads, and seasonings', file_to_string('CAT3'));
INSERT INTO Categories(CategoryID,CategoryName,Description,Picture) VALUES(3, 'Confections', 'Desserts, candies, and sweet breads', file_to_string('CAT4'));
INSERT INTO Categories(CategoryID,CategoryName,Description,Picture) VALUES(4, 'Dairy Products', 'Cheeses', file_to_string('CAT5'));
INSERT INTO Categories(CategoryID,CategoryName,Description,Picture) VALUES(5, 'Grains/Cereals', 'Breads, crackers, pasta, and cereal', file_to_string('CAT6'));
INSERT INTO Categories(CategoryID,CategoryName,Description,Picture) VALUES(6, 'Meat/Poultry', 'Prepared meats', file_to_string('CAT7'));
INSERT INTO Categories(CategoryID,CategoryName,Description,Picture) VALUES(7, 'Produce', 'Dried fruit and bean curd', file_to_string('CAT8'));
INSERT INTO Categories(CategoryID,CategoryName,Description,Picture) VALUES(8, 'Seafood', 'Seaweed and fish', file_to_string('CAT1'));
SELECT COUNT(*) FROM Categories;
--
--
--
DELETE FROM Shippers;
INSERT INTO Shippers(ShipperID,CompanyName,Phone) VALUES(1, 'Speedy Express', '(503) 555-9831');
INSERT INTO Shippers(ShipperID,CompanyName,Phone) VALUES(2, 'United Package', '(503) 555-3199');
INSERT INTO Shippers(ShipperID,CompanyName,Phone) VALUES(3, 'Federal Shipping', '(503) 555-9931');
SELECT COUNT(*) FROM Shippers;
--
--
--
DELETE FROM Suppliers;
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(1,'Exotic Liquids','Charlotte Cooper','Purchasing Manager','49 Gilbert St.','London',NULL,'EC1 4SD','United Kingdom','(171) 555-2222',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(2,'New Orleans Cajun Delights','Shelley Burke','Order Administrator','P.O. Box 78934','New Orleans','LA','70117','United States','(100) 555-4822',NULL,'#CAJUN.HTM#');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(3,'Grandma Kelly\47s Homestead','Regina Murphy','Sales Representative','707 Oxford Rd.','Ann Arbor','MI','48104','United States','(313) 555-5735','(313) 555-3349','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(4,'Tokyo Traders','Yoshi Nagase','Marketing Manager','9-8 Sekimai\15\12Musashino-shi','Tokyo',NULL,'100','Japan','(03) 3555-5011',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(5,'Cooperativa de Quesos \47Las Cabras\47','Antonio del Valle Saavedra ','Export Administrator','Calle del Rosal 4','Oviedo','Asturias','33007','Spain','(98) 598 76 54',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(6,'Mayumi\47s','Mayumi Ohno','Marketing Representative','92 Setsuko\15\12Chuo-ku','Osaka',NULL,'545','Japan','(06) 431-7877',NULL,'Mayumi\47s (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(7,'Pavlova, Ltd.','Ian Devling','Marketing Manager','74 Rose St.\15\12Moonie Ponds','Melbourne','Victoria','3058','Australia','(03) 444-2343','(03) 444-6588','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(8,'Specialty Biscuits, Ltd.','Peter Wilson','Sales Representative','29 King\47s Way','Manchester',NULL,'M14 GSD','United Kingdom','(161) 555-4448',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(9,'PB Knäckebröd AB','Lars Peterson','Sales Agent','Kaloadagatan 13','Göteborg',NULL,'S-345 67','Sweden','031-987 65 43','031-987 65 91','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(10,'Refrescos Americanas LTDA','Carlos Diaz','Marketing Manager','Av. das Americanas 12.890','São Paulo',NULL,'5442','Brazil','(11) 555 4640',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(11,'Heli Süßwaren GmbH & Co. KG','Petra Winkler','Sales Manager','Tiergartenstraße 5','Berlin',NULL,'10785','Germany','(010) 9984510',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(12,'Plutzer Lebensmittelgroßmärkte AG','Martin Bein','International Marketing Mgr.','Bogenallee 51','Frankfurt',NULL,'60439','Germany','(069) 992755',NULL,'Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(13,'Nord-Ost-Fisch Handelsgesellschaft mbH','Sven Petersen','Coordinator Foreign Markets','Frahmredder 112a','Cuxhaven',NULL,'27478','Germany','(04721) 8713','(04721) 8714','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(14,'Formaggi Fortini s.r.l.','Elio Rossi','Sales Representative','Viale Dante, 75','Ravenna',NULL,'48100','Italy','(0544) 60323','(0544) 60603','#FORMAGGI.HTM#');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(15,'Norske Meierier','Beate Vileid','Marketing Manager','Hatlevegen 5','Sandvika',NULL,'1320','Norway','(0)2-953010',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(16,'Bigfoot Breweries','Cheryl Saylor','Regional Account Rep.','3400 - 8th Avenue\15\12Suite 210','Bend','OR','97101','United States','(503) 555-9931',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(17,'Svensk Sjöföda AB','Michael Björn','Sales Representative','Brovallavägen 231','Stockholm',NULL,'S-123 45','Sweden','08-123 45 67',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(18,'Aux joyeux ecclésiastiques','Guylène Nodier','Sales Manager','203, Rue des Francs-Bourgeois','Paris',NULL,'75004','France','(1) 03.83.00.68','(1) 03.83.00.62','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(19,'New England Seafood Cannery','Robb Merchant','Wholesale Account Agent','Order Processing Dept.\15\122100 Paul Revere Blvd.','Boston','MA','02134','United States','(617) 555-3267','(617) 555-3389','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(20,'Leka Trading','Chandra Leka','Owner','471 Serangoon Loop, Suite #402','Singapore',NULL,'0512','Singapore','555-8787',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(21,'Lyngbysild','Niels Petersen','Sales Manager','Lyngbysild\15\12Fiskebakken 10','Lyngby',NULL,'2800','Denmark','43844108','43844115','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(22,'Zaanse Snoepfabriek','Dirk Luchte','Accounting Manager','Verkoop\15\12Rijnweg 22','Zaandam',NULL,'9999 ZZ','Netherlands','(12345) 1212','(12345) 1210','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(23,'Karkki Oy','Anne Heikkonen','Product Manager','Valtakatu 12','Lappeenranta',NULL,'53120','Finland','(953) 10956',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(24,'G\47day, Mate','Wendy Mackenzie','Sales Representative','170 Prince Edward Parade\15\12Hunter\47s Hill','Sydney','NSW','2042','Australia','(02) 555-5914','(02) 555-4873','G\47day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(25,'Ma Maison','Jean-Guy Lauzon','Marketing Manager','2960 Rue St. Laurent','Montréal','Québec','H1J 1C3','Canada','(514) 555-9022',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(26,'Pasta Buttini s.r.l.','Giovanni Giudici','Order Administrator','Via dei Gelsomini, 153','Salerno',NULL,'84100','Italy','(089) 6547665','(089) 6547667','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(27,'Escargots Nouveaux','Marie Delamare','Sales Manager','22, rue H. Voiron','Montceau',NULL,'71300','France','85.57.00.07',NULL,'');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(28,'Gai pâturage','Eliane Noz','Sales Representative','Bat. B\15\123, rue des Alpes','Annecy',NULL,'74000','France','38.76.98.06','38.76.98.58','');
INSERT INTO Suppliers(SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage) VALUES(29,'Forêts d\47érables','Chantal Goulet','Accounting Manager','148 rue Chasseur','Ste-Hyacinthe','Québec','J2S 7S8','Canada','(514) 555-2955','(514) 555-2921','');
SELECT COUNT(*) FROM Suppliers;
--
--
--
DELETE FROM Products;
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(1,'Chai',1,1,'10 boxes x 20 bags',18.000000,39,0,10,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(2,'Chang',1,1,'24 - 12 oz bottles',19.000000,17,40,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(3,'Aniseed Syrup',1,2,'12 - 550 ml bottles',10.000000,13,70,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(4,'Chef Anton\47s Cajun Seasoning',2,2,'48 - 6 oz jars',22.000000,53,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(5,'Chef Anton\47s Gumbo Mix',2,2,'36 boxes',21.350000,0,0,0,1);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(6,'Grandma\47s Boysenberry Spread',3,2,'12 - 8 oz jars',25.000000,120,0,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(7,'Uncle Bob\47s Organic Dried Pears',3,7,'12 - 1 lb pkgs.',30.000000,15,0,10,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(8,'Northwoods Cranberry Sauce',3,2,'12 - 12 oz jars',40.000000,6,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(9,'Mishi Kobe Niku',4,6,'18 - 500 g pkgs.',97.000000,29,0,0,1);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(10,'Ikura',4,8,'12 - 200 ml jars',31.000000,31,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(11,'Queso Cabrales',5,4,'1 kg pkg.',21.000000,22,30,30,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(12,'Queso Manchego La Pastora',5,4,'10 - 500 g pkgs.',38.000000,86,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(13,'Konbu',6,8,'2 kg box',6.000000,24,0,5,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(14,'Tofu',6,7,'40 - 100 g pkgs.',23.250000,35,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(15,'Genen Shouyu',6,2,'24 - 250 ml bottles',15.500000,39,0,5,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(16,'Pavlova',7,3,'32 - 500 g boxes',17.450000,29,0,10,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(17,'Alice Mutton',7,6,'20 - 1 kg tins',39.000000,0,0,0,1);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(18,'Carnarvon Tigers',7,8,'16 kg pkg.',62.500000,42,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(19,'Teatime Chocolate Biscuits',8,3,'10 boxes x 12 pieces',9.200000,25,0,5,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(20,'Sir Rodney\47s Marmalade',8,3,'30 gift boxes',81.000000,40,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(21,'Sir Rodney\47s Scones',8,3,'24 pkgs. x 4 pieces',10.000000,3,40,5,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(22,'Gustaf\47s Knäckebröd',9,5,'24 - 500 g pkgs.',21.000000,104,0,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(23,'Tunnbröd',9,5,'12 - 250 g pkgs.',9.000000,61,0,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(24,'Guaraná Fantástica',10,1,'12 - 355 ml cans',4.500000,20,0,0,1);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(25,'NuNuCa Nuß-Nougat-Creme',11,3,'20 - 450 g glasses',14.000000,76,0,30,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(26,'Gumbär Gummibärchen',11,3,'100 - 250 g bags',31.230000,15,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(27,'Schoggi Schokolade',11,3,'100 - 100 g pieces',43.900000,49,0,30,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(28,'Rössle Sauerkraut',12,7,'25 - 825 g cans',45.600000,26,0,0,1);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(29,'Thüringer Rostbratwurst',12,6,'50 bags x 30 sausgs.',123.790000,0,0,0,1);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(30,'Nord-Ost Matjeshering',13,8,'10 - 200 g glasses',25.890000,10,0,15,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(31,'Gorgonzola Telino',14,4,'12 - 100 g pkgs',12.500000,0,70,20,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(32,'Mascarpone Fabioli',14,4,'24 - 200 g pkgs.',32.000000,9,40,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(33,'Geitost',15,4,'500 g',2.500000,112,0,20,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(34,'Sasquatch Ale',16,1,'24 - 12 oz bottles',14.000000,111,0,15,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(35,'Steeleye Stout',16,1,'24 - 12 oz bottles',18.000000,20,0,15,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(36,'Inlagd Sill',17,8,'24 - 250 g jars',19.000000,112,0,20,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(37,'Gravad lax',17,8,'12 - 500 g pkgs.',26.000000,11,50,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(38,'Côte de Blaye',18,1,'12 - 75 cl bottles',263.500000,17,0,15,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(39,'Chartreuse verte',18,1,'750 cc per bottle',18.000000,69,0,5,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(40,'Boston Crab Meat',19,8,'24 - 4 oz tins',18.400000,123,0,30,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(41,'Jack\47s New England Clam Chowder',19,8,'12 - 12 oz cans',9.650000,85,0,10,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(42,'Singaporean Hokkien Fried Mee',20,5,'32 - 1 kg pkgs.',14.000000,26,0,0,1);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(43,'Ipoh Coffee',20,1,'16 - 500 g tins',46.000000,17,10,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(44,'Gula Malacca',20,2,'20 - 2 kg bags',19.450000,27,0,15,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(45,'Røgede sild',21,8,'1k pkg.',9.500000,5,70,15,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(46,'Spegesild',21,8,'4 - 450 g glasses',12.000000,95,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(47,'Zaanse koeken',22,3,'10 - 4 oz boxes',9.500000,36,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(48,'Chocolade',22,3,'10 pkgs.',12.750000,15,70,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(49,'Maxilaku',23,3,'24 - 50 g pkgs.',20.000000,10,60,15,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(50,'Valkoinen suklaa',23,3,'12 - 100 g bars',16.250000,65,0,30,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(51,'Manjimup Dried Apples',24,7,'50 - 300 g pkgs.',53.000000,20,0,10,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(52,'Filo Mix',24,5,'16 - 2 kg boxes',7.000000,38,0,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(53,'Perth Pasties',24,6,'48 pieces',32.800000,0,0,0,1);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(54,'Tourtière',25,6,'16 pies',7.450000,21,0,10,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(55,'Pâté chinois',25,6,'24 boxes x 2 pies',24.000000,115,0,20,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(56,'Gnocchi di nonna Alice',26,5,'24 - 250 g pkgs.',38.000000,21,10,30,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(57,'Ravioli Angelo',26,5,'24 - 250 g pkgs.',19.500000,36,0,20,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(58,'Escargots de Bourgogne',27,8,'24 pieces',13.250000,62,0,20,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(59,'Raclette Courdavault',28,4,'5 kg pkg.',55.000000,79,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(60,'Camembert Pierrot',28,4,'15 - 300 g rounds',34.000000,19,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(61,'Sirop d\47érable',29,2,'24 - 500 ml bottles',28.500000,113,0,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(62,'Tarte au sucre',29,3,'48 pies',49.300000,17,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(63,'Vegie-spread',7,2,'15 - 625 g jars',43.900000,24,0,5,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(64,'Wimmers gute Semmelknödel',12,5,'20 bags x 4 pieces',33.250000,22,80,30,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(65,'Louisiana Fiery Hot Pepper Sauce',2,2,'32 - 8 oz bottles',21.050000,76,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(66,'Louisiana Hot Spiced Okra',2,2,'24 - 8 oz jars',17.000000,4,100,20,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(67,'Laughing Lumberjack Lager',16,1,'24 - 12 oz bottles',14.000000,52,0,10,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(68,'Scottish Longbreads',8,3,'10 boxes x 8 pieces',12.500000,6,10,15,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(69,'Gudbrandsdalsost',15,4,'10 kg pkg.',36.000000,26,0,15,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(70,'Outback Lager',7,1,'24 - 355 ml bottles',15.000000,15,10,30,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(71,'Fløtemysost',15,4,'10 - 500 g pkgs.',21.500000,26,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(72,'Mozzarella di Giovanni',14,4,'24 - 200 g pkgs.',34.800000,14,0,0,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(73,'Röd Kaviar',17,8,'24 - 150 g jars',15.000000,101,0,5,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(74,'Longlife Tofu',4,7,'5 kg pkg.',10.000000,4,20,5,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(75,'Rhönbräu Klosterbier',12,1,'24 - 0.5 l bottles',7.750000,125,0,25,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(76,'Lakkalikööri',23,1,'500 ml',18.000000,57,0,20,0);
INSERT INTO Products(ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued) VALUES(77,'Original Frankfurter grüne Soße',12,2,'12 boxes',13.000000,32,0,15,0);
SELECT COUNT(*) FROM Products;
--
--
--
DELETE FROM Customers;
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('ALFKI','Alfreds Futterkiste','Maria Anders','Sales Representative','Obere Str. 57','Berlin',NULL,'12209','Germany','030-0074321','030-0076545');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('AROUT','Around the Horn','Thomas Hardy','Sales Representative','120 Hanover Sq.','London',NULL,'WA1 1DP','United Kingdom','(171) 555-7788','(171) 555-6750');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('BLAUS','Blauer See Delikatessen','Hanna Moos','Sales Representative','Forsterstr. 57','Mannheim',NULL,'68306','Germany','0621-08460','0621-08924');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('BLONP','Blondel 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('BONAP','Bon app\47','Laurence Lebihan','Owner','12, rue des Bouchers','Marseille',NULL,'13008','France','91.24.45.40','91.24.45.41');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('BSBEV','B\47s Beverages','Victoria Ashworth','Sales Representative','Fauntleroy Circus','London',NULL,'EC2 5NT','United Kingdom','(171) 555-1212',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('CHOPS','Chop-suey Chinese','Yang Wang','Owner','Hauptstr. 29','Bern',NULL,'3012','Switzerland','0452-076545',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('COMMI','Comércio Mineiro','Pedro Afonso','Sales Associate','Av. dos Lusíadas, 23','São Paulo','SP','05432-043','Brazil','(11) 555-7647',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('CONSH','Consolidated Holdings','Elizabeth Brown','Sales Representative','Berkeley Gardens\15\1212 Brewery ','London',NULL,'WX1 6LT','United Kingdom','(171) 555-2282','(171) 555-9199');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('DRACD','Drachenblut Delikatessen','Sven Ottlieb','Order Administrator','Walserweg 21','Aachen',NULL,'52066','Germany','0241-039123','0241-059428');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('EASTC','Eastern Connection','Ann Devon','Sales Agent','35 King George','London',NULL,'WX3 6FW','United Kingdom','(171) 555-0297','(171) 555-3373');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('ERNSH','Ernst Handel','Roland Mendel','Sales Manager','Kirchgasse 6','Graz',NULL,'8010','Austria','7675-3425','7675-3426');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('FAMIA','Familia Arquibaldo','Aria Cruz','Marketing Assistant','Rua Orós, 92','São Paulo','SP','05442-030','Brazil','(11) 555-9857',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('FRANK','Frankenversand','Peter Franken','Marketing Manager','Berliner Platz 43','München',NULL,'80805','Germany','089-0877310','089-0877451');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('GOURL','Gourmet Lanchonetes','André Fonseca','Sales Associate','Av. Brasil, 442','Campinas','SP','04876-786','Brazil','(11) 555-9482',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('GREAL','Great Lakes Food Market','Howard Snyder','Marketing Manager','2732 Baker Blvd.','Eugene','OR','97403','United States','(503) 555-7555',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('HILAA','HILARIÓN-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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('HUNGC','Hungry Coyote Import Store','Yoshi Latimer','Sales Representative','City Center Plaza\15\12516 Main St.','Elgin','OR','97827','United States','(503) 555-6874','(503) 555-2376');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('ISLAT','Island Trading','Helen Bennett','Marketing Manager','Garden House\15\12Crowther Way','Cowes','Isle of Wight','PO31 7PJ','United Kingdom','(198) 555-8888',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('KOENE','Königlich Essen','Philip Cramer','Sales Associate','Maubelstr. 90','Brandenburg',NULL,'14776','Germany','0555-09876',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('LACOR','La corne d\47abondance','Daniel Tonini','Sales Representative','67, avenue de l\47Europe','Versailles',NULL,'78000','France','30.59.84.10','30.59.85.11');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('LAMAI','La maison d\47Asie','Annette Roulet','Sales Manager','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France','61.77.61.10','61.77.61.11');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('LAZYK','Lazy K Kountry Store','John Steel','Marketing Manager','12 Orchestra Terrace','Walla Walla','WA','99362','United States','(509) 555-7969','(509) 555-6221');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('LEHMS','Lehmanns Marktstand','Renate Messner','Sales Representative','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany','069-0245984','069-0245874');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('LETSS','Let\47s Stop N Shop','Jaime Yorres','Owner','87 Polk St.\15\12Suite 5','San Francisco','CA','94117','United States','(415) 555-5938',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('LONEP','Lonesome Pine Restaurant','Fran Wilson','Sales Manager','89 Chiaroscuro Rd.','Portland','OR','97219','United States','(503) 555-9573','(503) 555-9646');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('MORGK','Morgenstern Gesundkost','Alexander Feuer','Marketing Assistant','Heerstr. 22','Leipzig',NULL,'04179','Germany','0342-023176',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('NORTS','North/South','Simon Crowther','Sales Associate','South House\15\12300 Queensbridge','London',NULL,'SW7 1RZ','United Kingdom','(171) 555-7733','(171) 555-2530');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('OCEAN','Océano Atlántico Ltda.','Yvonne Moncada','Sales Agent','Ing. Gustavo Moncada 8585\15\12Piso 20-A','Buenos Aires',NULL,'1010','Argentina','(1) 135-5333','(1) 135-5535');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('OLDWO','Old World Delicatessen','Rene Phillips','Sales Representative','2743 Bering St.','Anchorage','AK','99508','United States','(907) 555-7584','(907) 555-2880');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('OTTIK','Ottilies Käseladen','Henriette Pfalzheim','Owner','Mehrheimerstr. 369','Köln',NULL,'50739','Germany','0221-0644327','0221-0765721');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('PICCO','Piccolo und mehr','Georg Pipps','Sales Manager','Geislweg 14','Salzburg',NULL,'5020','Austria','6562-9722','6562-9723');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('QUEEN','Queen Cozinha','Lúcia Carvalho','Marketing Assistant','Alameda dos Canàrios, 891','São Paulo','SP','05487-020','Brazil','(11) 555-1189',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('QUICK','QUICK-Stop','Horst Kloss','Accounting Manager','Taucherstraße 10','Cunewalde',NULL,'01307','Germany','0372-035188',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('RATTC','Rattlesnake Canyon Grocery','Paula Wilson','Assistant Sales Representative','2817 Milton Dr.','Albuquerque','NM','87110','United States','(505) 555-5939','(505) 555-3620');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('REGGC','Reggiani Caseifici','Maurizio Moroni','Sales Associate','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy','0522-556721','0522-556722');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('RICSU','Richter Supermarkt','Michael Holz','Sales Manager','Grenzacherweg 237','Genève',NULL,'1203','Switzerland','0897-034214',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('SAVEA','Save-a-lot Markets','Jose Pavarotti','Sales Representative','187 Suffolk Ln.','Boise','ID','83720','United States','(208) 555-8097',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('SEVES','Seven Seas Imports','Hari Kumar','Sales Manager','90 Wadhurst Rd.','London',NULL,'OX15 4NB','United Kingdom','(171) 555-1717','(171) 555-5646');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('SIMOB','Simons bistro','Jytte Petersen','Owner','Vinbæltet 34','København',NULL,'1734','Denmark','31 12 34 56','31 13 35 57');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('SPLIR','Split Rail Beer & Ale','Art Braunschweiger','Sales Manager','P.O. Box 555','Lander','WY','82520','United States','(307) 555-4680','(307) 555-6525');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('THEBI','The Big Cheese','Liz Nixon','Marketing Manager','89 Jefferson Way\15\12Suite 2','Portland','OR','97201','United States','(503) 555-3612',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('THECR','The Cracker Box','Liu Wong','Marketing Assistant','55 Grizzly Peak Rd.','Butte','MT','59801','United States','(406) 555-5834','(406) 555-8083');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('TOMSP','Toms Spezialitäten','Karin Josephs','Marketing Manager','Luisenstr. 48','Münster',NULL,'44087','Germany','0251-031259','0251-035695');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('TRADH','Tradição Hipermercados','Anabela Domingues','Sales Representative','Av. Inês de Castro, 414','São Paulo','SP','05634-030','Brazil','(11) 555-2167','(11) 555-2168');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('TRAIH','Trail\47s Head Gourmet Provisioners','Helvetius Nagy','Sales Associate','722 DaVinci Blvd.','Kirkland','WA','98034','United States','(206) 555-8257','(206) 555-2174');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('VAFFE','Vaffeljernet','Palle Ibsen','Sales Manager','Smagsløget 45','Århus',NULL,'8200','Denmark','86 21 32 43','86 22 33 44');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) 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(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('VINET','Vins et alcools Chevalier','Paul Henriot','Accounting Manager','59 rue de l\47Abbaye','Reims',NULL,'51100','France','26.47.15.10','26.47.15.11');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('WANDK','Die Wandernde Kuh','Rita Müller','Sales Representative','Adenauerallee 900','Stuttgart',NULL,'70563','Germany','0711-020361','0711-035428');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('WARTH','Wartian Herkku','Pirkko Koskitalo','Accounting Manager','Torikatu 38','Oulu',NULL,'90110','Finland','981-443655','981-443655');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('WELLI','Wellington Importadora','Paula Parente','Sales Manager','Rua do Mercado, 12','Resende','SP','08737-363','Brazil','(14) 555-8122',NULL);
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('WHITC','White Clover Markets','Karl Jablonski','Owner','305 - 14th Ave. S.\15\12Suite 3B','Seattle','WA','98128','United States','(206) 555-4112','(206) 555-4115');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('WILMK','Wilman Kala','Matti Karttunen','Owner/Marketing Assistant','Keskuskatu 45','Helsinki',NULL,'21240','Finland','90-224 8858','90-224 8858');
INSERT INTO Customers(CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax) VALUES('WOLZA','Wolski Zajazd','Zbyszek Piestrzeniewicz','Owner','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland','(26) 642-7012','(26) 642-7012');
select count(*) from Customers;
ECHO BOTH $IF $EQU $LAST[1] 91 "PASSED" "***FAILED";
SET ARGV[$LIF] $+ $ARGV[$LIF] 1;
ECHO BOTH ": " $LAST[1] " Customers loaded\n";
--
--
--
DELETE FROM Employees;
INSERT INTO Employees(EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo) VALUES(1,'Davolio','Nancy','Sales Representative','Ms.',stringdate('1948.12.08 00:00.00 000000'),stringdate('1992.05.01 00:00.00 000000'),'507 - 20th Ave. E.\15\12Apt. 2A','Seattle','WA','98122','United States','(206) 555-9857','5467',file_to_string('EMP1'), '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);
INSERT INTO Employees(EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo) VALUES(2,'Fuller','Andrew','Vice President, Sales','Dr.',stringdate('1952.02.19 00:00.00 000000'),stringdate('1992.08.14 00:00.00 000000'),'908 W. Capital Way','Tacoma','WA','98401','United States','(206) 555-9482','3457',file_to_string('EMP2'), '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);
INSERT INTO Employees(EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo) VALUES(3,'Leverling','Janet','Sales Representative','Ms.',stringdate('1963.08.30 00:00.00 000000'),stringdate('1992.04.01 00:00.00 000000'),'722 Moss Bay Blvd.','Kirkland','WA','98033','United States','(206) 555-3412','3355',file_to_string('EMP3'), '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);
INSERT INTO Employees(EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo) VALUES(4,'Peacock','Margaret','Sales Representative','Mrs.',stringdate('1937.09.19 00:00.00 000000'),stringdate('1993.05.03 00:00.00 000000'),'4110 Old Redmond Rd.','Redmond','WA','98052','United States','(206) 555-8122','5176',file_to_string('EMP4'), '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);
INSERT INTO Employees(EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo) VALUES(5,'Buchanan','Steven','Sales Manager','Mr.',stringdate('1955.03.04 00:00.00 000000'),stringdate('1993.10.17 00:00.00 000000'),'14 Garrett Hill','London',NULL,'SW1 8JR','United Kingdom','(71) 555-4848','3453',file_to_string('EMP5'), '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);
INSERT INTO Employees(EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo) VALUES(6,'Suyama','Michael','Sales Representative','Mr.',stringdate('1963.07.02 00:00.00 000000'),stringdate('1993.10.17 00:00.00 000000'),'Coventry House\15\12Miner Rd.','London',NULL,'EC2 7JR','United Kingdom','(71) 555-7773','428',file_to_string('EMP6'), '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);
INSERT INTO Employees(EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo) VALUES(7,'King','Robert','Sales Representative','Mr.',stringdate('1960.05.29 00:00.00 000000'),stringdate('1994.01.02 00:00.00 000000'),'Edgeham Hollow\15\12Winchester Way','London',NULL,'RG1 9SP','United Kingdom','(71) 555-5598','465',file_to_string('EMP7'), '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);
INSERT INTO Employees(EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo) VALUES(8,'Callahan','Laura','Inside Sales Coordinator','Ms.',stringdate('1958.01.09 00:00.00 000000'),stringdate('1994.03.05 00:00.00 000000'),'4726 - 11th Ave. N.E.','Seattle','WA','98105','United States','(206) 555-1189','2344',file_to_string('EMP8'), '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);
INSERT INTO Employees(EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo) VALUES(9,'Dodsworth','Anne','Sales Representative','Ms.',stringdate('1966.01.27 00:00.00 000000'),stringdate('1994.11.15 00:00.00 000000'),'7 Houndstooth Rd.','London',NULL,'WG2 7LT','United Kingdom','(71) 555-4444','452',file_to_string('EMP9'), 'Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German.',5);
-- Test
SELECT COUNT(*) FROM Employees;
--
--
--
DELETE FROM Orders;
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10330,'LILAS',3,stringdate('1994.11.16 00:00.00 000000'),stringdate('1994.12.14 00:00.00 000000'),stringdate('1994.11.28 00:00.00 000000'),1,12.750000,'LILA-Supermercado','Carrera 52 con Ave. Bolívar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10331,'BONAP',9,stringdate('1994.11.16 00:00.00 000000'),stringdate('1994.12.28 00:00.00 000000'),stringdate('1994.11.21 00:00.00 000000'),1,10.190000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10332,'MEREP',3,stringdate('1994.11.17 00:00.00 000000'),stringdate('1994.12.29 00:00.00 000000'),stringdate('1994.11.21 00:00.00 000000'),2,52.840000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10333,'WARTH',5,stringdate('1994.11.18 00:00.00 000000'),stringdate('1994.12.16 00:00.00 000000'),stringdate('1994.11.25 00:00.00 000000'),3,0.590000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10334,'VICTE',8,stringdate('1994.11.21 00:00.00 000000'),stringdate('1994.12.19 00:00.00 000000'),stringdate('1994.11.28 00:00.00 000000'),2,8.560000,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10335,'HUNGO',7,stringdate('1994.11.22 00:00.00 000000'),stringdate('1994.12.20 00:00.00 000000'),stringdate('1994.11.24 00:00.00 000000'),2,42.110000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10336,'PRINI',7,stringdate('1994.11.23 00:00.00 000000'),stringdate('1994.12.21 00:00.00 000000'),stringdate('1994.11.25 00:00.00 000000'),2,15.510000,'Princesa Isabel Vinhos','Estrada da saúde n. 58','Lisboa',NULL,'1756','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10337,'FRANK',4,stringdate('1994.11.24 00:00.00 000000'),stringdate('1994.12.22 00:00.00 000000'),stringdate('1994.11.29 00:00.00 000000'),3,108.260000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10338,'OLDWO',4,stringdate('1994.11.25 00:00.00 000000'),stringdate('1994.12.23 00:00.00 000000'),stringdate('1994.11.29 00:00.00 000000'),3,84.210000,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10339,'MEREP',2,stringdate('1994.11.28 00:00.00 000000'),stringdate('1994.12.26 00:00.00 000000'),stringdate('1994.12.05 00:00.00 000000'),2,15.660000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10340,'BONAP',1,stringdate('1994.11.29 00:00.00 000000'),stringdate('1994.12.27 00:00.00 000000'),stringdate('1994.12.09 00:00.00 000000'),3,166.310000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10341,'SIMOB',7,stringdate('1994.11.29 00:00.00 000000'),stringdate('1994.12.27 00:00.00 000000'),stringdate('1994.12.06 00:00.00 000000'),3,26.780000,'Simons bistro','Vinbæltet 34','København',NULL,'1734','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10342,'FRANK',4,stringdate('1994.11.30 00:00.00 000000'),stringdate('1994.12.14 00:00.00 000000'),stringdate('1994.12.05 00:00.00 000000'),2,54.830000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10343,'LEHMS',4,stringdate('1994.12.01 00:00.00 000000'),stringdate('1994.12.29 00:00.00 000000'),stringdate('1994.12.07 00:00.00 000000'),1,110.370000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10344,'WHITC',4,stringdate('1994.12.02 00:00.00 000000'),stringdate('1994.12.30 00:00.00 000000'),stringdate('1994.12.06 00:00.00 000000'),2,23.290000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10345,'QUICK',2,stringdate('1994.12.05 00:00.00 000000'),stringdate('1995.01.02 00:00.00 000000'),stringdate('1994.12.12 00:00.00 000000'),2,249.060000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10346,'RATTC',3,stringdate('1994.12.06 00:00.00 000000'),stringdate('1995.01.17 00:00.00 000000'),stringdate('1994.12.09 00:00.00 000000'),3,142.080000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10248,'VINET',5,stringdate('1994.08.04 00:00.00 000000'),stringdate('1994.09.01 00:00.00 000000'),stringdate('1994.08.16 00:00.00 000000'),3,32.380000,'Vins et alcools Chevalier','59 rue de l\47Abbaye','Reims',NULL,'51100','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10249,'TOMSP',6,stringdate('1994.08.05 00:00.00 000000'),stringdate('1994.09.16 00:00.00 000000'),stringdate('1994.08.10 00:00.00 000000'),1,11.610000,'Toms Spezialitäten','Luisenstr. 48','Münster',NULL,'44087','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10250,'HANAR',4,stringdate('1994.08.08 00:00.00 000000'),stringdate('1994.09.05 00:00.00 000000'),stringdate('1994.08.12 00:00.00 000000'),2,65.830000,'Hanari Carnes','Rua do Paço, 67','Rio de Janeiro','RJ','05454-876','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10251,'VICTE',3,stringdate('1994.08.08 00:00.00 000000'),stringdate('1994.09.05 00:00.00 000000'),stringdate('1994.08.15 00:00.00 000000'),1,41.340000,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10252,'SUPRD',4,stringdate('1994.08.09 00:00.00 000000'),stringdate('1994.09.06 00:00.00 000000'),stringdate('1994.08.11 00:00.00 000000'),2,51.300000,'Suprêmes délices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10253,'HANAR',3,stringdate('1994.08.10 00:00.00 000000'),stringdate('1994.08.24 00:00.00 000000'),stringdate('1994.08.16 00:00.00 000000'),2,58.170000,'Hanari Carnes','Rua do Paço, 67','Rio de Janeiro','RJ','05454-876','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10254,'CHOPS',5,stringdate('1994.08.11 00:00.00 000000'),stringdate('1994.09.08 00:00.00 000000'),stringdate('1994.08.23 00:00.00 000000'),2,22.980000,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10255,'RICSU',9,stringdate('1994.08.12 00:00.00 000000'),stringdate('1994.09.09 00:00.00 000000'),stringdate('1994.08.15 00:00.00 000000'),3,148.330000,'Richter Supermarkt','Starenweg 5','Genève',NULL,'1204','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10256,'WELLI',3,stringdate('1994.08.15 00:00.00 000000'),stringdate('1994.09.12 00:00.00 000000'),stringdate('1994.08.17 00:00.00 000000'),2,13.970000,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10257,'HILAA',4,stringdate('1994.08.16 00:00.00 000000'),stringdate('1994.09.13 00:00.00 000000'),stringdate('1994.08.22 00:00.00 000000'),3,81.910000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10258,'ERNSH',1,stringdate('1994.08.17 00:00.00 000000'),stringdate('1994.09.14 00:00.00 000000'),stringdate('1994.08.23 00:00.00 000000'),1,140.510000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10259,'CENTC',4,stringdate('1994.08.18 00:00.00 000000'),stringdate('1994.09.15 00:00.00 000000'),stringdate('1994.08.25 00:00.00 000000'),3,3.250000,'Centro comercial Moctezuma','Sierras de Granada 9993','México D.F.',NULL,'05022','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10260,'OTTIK',4,stringdate('1994.08.19 00:00.00 000000'),stringdate('1994.09.16 00:00.00 000000'),stringdate('1994.08.29 00:00.00 000000'),1,55.090000,'Ottilies Käseladen','Mehrheimerstr. 369','Köln',NULL,'50739','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10261,'QUEDE',4,stringdate('1994.08.19 00:00.00 000000'),stringdate('1994.09.16 00:00.00 000000'),stringdate('1994.08.30 00:00.00 000000'),2,3.050000,'Que Delícia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10262,'RATTC',8,stringdate('1994.08.22 00:00.00 000000'),stringdate('1994.09.19 00:00.00 000000'),stringdate('1994.08.25 00:00.00 000000'),3,48.290000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10263,'ERNSH',9,stringdate('1994.08.23 00:00.00 000000'),stringdate('1994.09.20 00:00.00 000000'),stringdate('1994.08.31 00:00.00 000000'),3,146.060000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10264,'FOLKO',6,stringdate('1994.08.24 00:00.00 000000'),stringdate('1994.09.21 00:00.00 000000'),stringdate('1994.09.23 00:00.00 000000'),3,3.670000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10265,'BLONP',2,stringdate('1994.08.25 00:00.00 000000'),stringdate('1994.09.22 00:00.00 000000'),stringdate('1994.09.12 00:00.00 000000'),1,55.280000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10266,'WARTH',3,stringdate('1994.08.26 00:00.00 000000'),stringdate('1994.10.07 00:00.00 000000'),stringdate('1994.08.31 00:00.00 000000'),3,25.730000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10267,'FRANK',4,stringdate('1994.08.29 00:00.00 000000'),stringdate('1994.09.26 00:00.00 000000'),stringdate('1994.09.06 00:00.00 000000'),1,208.580000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10268,'GROSR',8,stringdate('1994.08.30 00:00.00 000000'),stringdate('1994.09.27 00:00.00 000000'),stringdate('1994.09.02 00:00.00 000000'),3,66.290000,'GROSELLA-Restaurante','5ª Ave. Los Palos Grandes','Caracas','DF','1081','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10269,'WHITC',5,stringdate('1994.08.31 00:00.00 000000'),stringdate('1994.09.14 00:00.00 000000'),stringdate('1994.09.09 00:00.00 000000'),1,4.560000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10270,'WARTH',1,stringdate('1994.09.01 00:00.00 000000'),stringdate('1994.09.29 00:00.00 000000'),stringdate('1994.09.02 00:00.00 000000'),1,136.540000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10271,'SPLIR',6,stringdate('1994.09.01 00:00.00 000000'),stringdate('1994.09.29 00:00.00 000000'),stringdate('1994.09.30 00:00.00 000000'),2,4.540000,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10272,'RATTC',6,stringdate('1994.09.02 00:00.00 000000'),stringdate('1994.09.30 00:00.00 000000'),stringdate('1994.09.06 00:00.00 000000'),2,98.030000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10273,'QUICK',3,stringdate('1994.09.05 00:00.00 000000'),stringdate('1994.10.03 00:00.00 000000'),stringdate('1994.09.12 00:00.00 000000'),3,76.070000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10274,'VINET',6,stringdate('1994.09.06 00:00.00 000000'),stringdate('1994.10.04 00:00.00 000000'),stringdate('1994.09.16 00:00.00 000000'),1,6.010000,'Vins et alcools Chevalier','59 rue de l\47Abbaye','Reims',NULL,'51100','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10275,'MAGAA',1,stringdate('1994.09.07 00:00.00 000000'),stringdate('1994.10.05 00:00.00 000000'),stringdate('1994.09.09 00:00.00 000000'),1,26.930000,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10276,'TORTU',8,stringdate('1994.09.08 00:00.00 000000'),stringdate('1994.09.22 00:00.00 000000'),stringdate('1994.09.14 00:00.00 000000'),3,13.840000,'Tortuga Restaurante','Avda. Azteca 123','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10277,'MORGK',2,stringdate('1994.09.09 00:00.00 000000'),stringdate('1994.10.07 00:00.00 000000'),stringdate('1994.09.13 00:00.00 000000'),3,125.770000,'Morgenstern Gesundkost','Heerstr. 22','Leipzig',NULL,'04179','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10278,'BERGS',8,stringdate('1994.09.12 00:00.00 000000'),stringdate('1994.10.10 00:00.00 000000'),stringdate('1994.09.16 00:00.00 000000'),2,92.690000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10279,'LEHMS',8,stringdate('1994.09.13 00:00.00 000000'),stringdate('1994.10.11 00:00.00 000000'),stringdate('1994.09.16 00:00.00 000000'),2,25.830000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10280,'BERGS',2,stringdate('1994.09.14 00:00.00 000000'),stringdate('1994.10.12 00:00.00 000000'),stringdate('1994.10.13 00:00.00 000000'),1,8.980000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10281,'ROMEY',4,stringdate('1994.09.14 00:00.00 000000'),stringdate('1994.09.28 00:00.00 000000'),stringdate('1994.09.21 00:00.00 000000'),1,2.940000,'Romero y tomillo','Gran Vía, 1','Madrid',NULL,'28001','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10282,'ROMEY',4,stringdate('1994.09.15 00:00.00 000000'),stringdate('1994.10.13 00:00.00 000000'),stringdate('1994.09.21 00:00.00 000000'),1,12.690000,'Romero y tomillo','Gran Vía, 1','Madrid',NULL,'28001','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10283,'LILAS',3,stringdate('1994.09.16 00:00.00 000000'),stringdate('1994.10.14 00:00.00 000000'),stringdate('1994.09.23 00:00.00 000000'),3,84.810000,'LILA-Supermercado','Carrera 52 con Ave. Bolívar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10284,'LEHMS',4,stringdate('1994.09.19 00:00.00 000000'),stringdate('1994.10.17 00:00.00 000000'),stringdate('1994.09.27 00:00.00 000000'),1,76.560000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10285,'QUICK',1,stringdate('1994.09.20 00:00.00 000000'),stringdate('1994.10.18 00:00.00 000000'),stringdate('1994.09.26 00:00.00 000000'),2,76.830000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10286,'QUICK',8,stringdate('1994.09.21 00:00.00 000000'),stringdate('1994.10.19 00:00.00 000000'),stringdate('1994.09.30 00:00.00 000000'),3,229.240000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10287,'RICAR',8,stringdate('1994.09.22 00:00.00 000000'),stringdate('1994.10.20 00:00.00 000000'),stringdate('1994.09.28 00:00.00 000000'),3,12.760000,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10288,'REGGC',4,stringdate('1994.09.23 00:00.00 000000'),stringdate('1994.10.21 00:00.00 000000'),stringdate('1994.10.04 00:00.00 000000'),1,7.450000,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10289,'BSBEV',7,stringdate('1994.09.26 00:00.00 000000'),stringdate('1994.10.24 00:00.00 000000'),stringdate('1994.09.28 00:00.00 000000'),3,22.770000,'B\47s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10290,'COMMI',8,stringdate('1994.09.27 00:00.00 000000'),stringdate('1994.10.25 00:00.00 000000'),stringdate('1994.10.04 00:00.00 000000'),1,79.700000,'Comércio Mineiro','Av. dos Lusíadas, 23','São Paulo','SP','05432-043','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10291,'QUEDE',6,stringdate('1994.09.27 00:00.00 000000'),stringdate('1994.10.25 00:00.00 000000'),stringdate('1994.10.05 00:00.00 000000'),2,6.400000,'Que Delícia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10292,'TRADH',1,stringdate('1994.09.28 00:00.00 000000'),stringdate('1994.10.26 00:00.00 000000'),stringdate('1994.10.03 00:00.00 000000'),2,1.350000,'Tradição Hipermercados','Av. Inês de Castro, 414','São Paulo','SP','05634-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10293,'TORTU',1,stringdate('1994.09.29 00:00.00 000000'),stringdate('1994.10.27 00:00.00 000000'),stringdate('1994.10.12 00:00.00 000000'),3,21.180000,'Tortuga Restaurante','Avda. Azteca 123','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10294,'RATTC',4,stringdate('1994.09.30 00:00.00 000000'),stringdate('1994.10.28 00:00.00 000000'),stringdate('1994.10.06 00:00.00 000000'),2,147.260000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10295,'VINET',2,stringdate('1994.10.03 00:00.00 000000'),stringdate('1994.10.31 00:00.00 000000'),stringdate('1994.10.11 00:00.00 000000'),2,1.150000,'Vins et alcools Chevalier','59 rue de l\47Abbaye','Reims',NULL,'51100','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10296,'LILAS',6,stringdate('1994.10.04 00:00.00 000000'),stringdate('1994.11.01 00:00.00 000000'),stringdate('1994.10.12 00:00.00 000000'),1,0.120000,'LILA-Supermercado','Carrera 52 con Ave. Bolívar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10297,'BLONP',5,stringdate('1994.10.05 00:00.00 000000'),stringdate('1994.11.16 00:00.00 000000'),stringdate('1994.10.11 00:00.00 000000'),2,5.740000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10298,'HUNGO',6,stringdate('1994.10.06 00:00.00 000000'),stringdate('1994.11.03 00:00.00 000000'),stringdate('1994.10.12 00:00.00 000000'),2,168.220000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10299,'RICAR',4,stringdate('1994.10.07 00:00.00 000000'),stringdate('1994.11.04 00:00.00 000000'),stringdate('1994.10.14 00:00.00 000000'),2,29.760000,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10300,'MAGAA',2,stringdate('1994.10.10 00:00.00 000000'),stringdate('1994.11.07 00:00.00 000000'),stringdate('1994.10.19 00:00.00 000000'),2,17.680000,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10301,'WANDK',8,stringdate('1994.10.10 00:00.00 000000'),stringdate('1994.11.07 00:00.00 000000'),stringdate('1994.10.18 00:00.00 000000'),2,45.080000,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10302,'SUPRD',4,stringdate('1994.10.11 00:00.00 000000'),stringdate('1994.11.08 00:00.00 000000'),stringdate('1994.11.09 00:00.00 000000'),2,6.270000,'Suprêmes délices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10303,'GODOS',7,stringdate('1994.10.12 00:00.00 000000'),stringdate('1994.11.09 00:00.00 000000'),stringdate('1994.10.19 00:00.00 000000'),2,107.830000,'Godos Cocina Típica','C/ Romero, 33','Sevilla',NULL,'41101','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10304,'TORTU',1,stringdate('1994.10.13 00:00.00 000000'),stringdate('1994.11.10 00:00.00 000000'),stringdate('1994.10.18 00:00.00 000000'),2,63.790000,'Tortuga Restaurante','Avda. Azteca 123','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10305,'OLDWO',8,stringdate('1994.10.14 00:00.00 000000'),stringdate('1994.11.11 00:00.00 000000'),stringdate('1994.11.09 00:00.00 000000'),3,257.620000,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10306,'ROMEY',1,stringdate('1994.10.17 00:00.00 000000'),stringdate('1994.11.14 00:00.00 000000'),stringdate('1994.10.24 00:00.00 000000'),3,7.560000,'Romero y tomillo','Gran Vía, 1','Madrid',NULL,'28001','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10307,'LONEP',2,stringdate('1994.10.18 00:00.00 000000'),stringdate('1994.11.15 00:00.00 000000'),stringdate('1994.10.26 00:00.00 000000'),2,0.560000,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10308,'ANATR',7,stringdate('1994.10.19 00:00.00 000000'),stringdate('1994.11.16 00:00.00 000000'),stringdate('1994.10.25 00:00.00 000000'),3,1.610000,'Ana Trujillo Emparedados y helados','Avda. de la Constitución 2222','México D.F.',NULL,'05021','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10309,'HUNGO',3,stringdate('1994.10.20 00:00.00 000000'),stringdate('1994.11.17 00:00.00 000000'),stringdate('1994.11.23 00:00.00 000000'),1,47.300000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10310,'THEBI',8,stringdate('1994.10.21 00:00.00 000000'),stringdate('1994.11.18 00:00.00 000000'),stringdate('1994.10.28 00:00.00 000000'),2,17.520000,'The Big Cheese','89 Jefferson Way\15\12Suite 2','Portland','OR','97201','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10311,'DUMON',1,stringdate('1994.10.21 00:00.00 000000'),stringdate('1994.11.04 00:00.00 000000'),stringdate('1994.10.27 00:00.00 000000'),3,24.690000,'Du monde entier','67, rue des Cinquante Otages','Nantes',NULL,'44000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10312,'WANDK',2,stringdate('1994.10.24 00:00.00 000000'),stringdate('1994.11.21 00:00.00 000000'),stringdate('1994.11.03 00:00.00 000000'),2,40.260000,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10313,'QUICK',2,stringdate('1994.10.25 00:00.00 000000'),stringdate('1994.11.22 00:00.00 000000'),stringdate('1994.11.04 00:00.00 000000'),2,1.960000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10314,'RATTC',1,stringdate('1994.10.26 00:00.00 000000'),stringdate('1994.11.23 00:00.00 000000'),stringdate('1994.11.04 00:00.00 000000'),2,74.160000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10315,'ISLAT',4,stringdate('1994.10.27 00:00.00 000000'),stringdate('1994.11.24 00:00.00 000000'),stringdate('1994.11.03 00:00.00 000000'),2,41.760000,'Island Trading','Garden House\15\12Crowther Way','Cowes','Isle of Wight','PO31 7PJ','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10316,'RATTC',1,stringdate('1994.10.28 00:00.00 000000'),stringdate('1994.11.25 00:00.00 000000'),stringdate('1994.11.08 00:00.00 000000'),3,150.150000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10317,'LONEP',6,stringdate('1994.10.31 00:00.00 000000'),stringdate('1994.11.28 00:00.00 000000'),stringdate('1994.11.10 00:00.00 000000'),1,12.690000,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10318,'ISLAT',8,stringdate('1994.11.01 00:00.00 000000'),stringdate('1994.11.29 00:00.00 000000'),stringdate('1994.11.04 00:00.00 000000'),2,4.730000,'Island Trading','Garden House\15\12Crowther Way','Cowes','Isle of Wight','PO31 7PJ','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10319,'TORTU',7,stringdate('1994.11.02 00:00.00 000000'),stringdate('1994.11.30 00:00.00 000000'),stringdate('1994.11.11 00:00.00 000000'),3,64.500000,'Tortuga Restaurante','Avda. Azteca 123','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10320,'WARTH',5,stringdate('1994.11.03 00:00.00 000000'),stringdate('1994.11.17 00:00.00 000000'),stringdate('1994.11.18 00:00.00 000000'),3,34.570000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10321,'ISLAT',3,stringdate('1994.11.03 00:00.00 000000'),stringdate('1994.12.01 00:00.00 000000'),stringdate('1994.11.11 00:00.00 000000'),2,3.430000,'Island Trading','Garden House\15\12Crowther Way','Cowes','Isle of Wight','PO31 7PJ','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10322,'PERIC',7,stringdate('1994.11.04 00:00.00 000000'),stringdate('1994.12.02 00:00.00 000000'),stringdate('1994.11.23 00:00.00 000000'),3,0.400000,'Pericles Comidas clásicas','Calle Dr. Jorge Cash 321','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10323,'KOENE',4,stringdate('1994.11.07 00:00.00 000000'),stringdate('1994.12.05 00:00.00 000000'),stringdate('1994.11.14 00:00.00 000000'),1,4.880000,'Königlich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10324,'SAVEA',9,stringdate('1994.11.08 00:00.00 000000'),stringdate('1994.12.06 00:00.00 000000'),stringdate('1994.11.10 00:00.00 000000'),1,214.270000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10325,'KOENE',1,stringdate('1994.11.09 00:00.00 000000'),stringdate('1994.11.23 00:00.00 000000'),stringdate('1994.11.14 00:00.00 000000'),3,64.860000,'Königlich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10326,'BOLID',4,stringdate('1994.11.10 00:00.00 000000'),stringdate('1994.12.08 00:00.00 000000'),stringdate('1994.11.14 00:00.00 000000'),2,77.920000,'Bólido Comidas preparadas','C/ Araquil, 67','Madrid',NULL,'28023','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10327,'FOLKO',2,stringdate('1994.11.11 00:00.00 000000'),stringdate('1994.12.09 00:00.00 000000'),stringdate('1994.11.14 00:00.00 000000'),1,63.360000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10328,'FURIB',4,stringdate('1994.11.14 00:00.00 000000'),stringdate('1994.12.12 00:00.00 000000'),stringdate('1994.11.17 00:00.00 000000'),3,87.030000,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10329,'SPLIR',4,stringdate('1994.11.15 00:00.00 000000'),stringdate('1994.12.27 00:00.00 000000'),stringdate('1994.11.23 00:00.00 000000'),2,191.670000,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10347,'FAMIA',4,stringdate('1994.12.07 00:00.00 000000'),stringdate('1995.01.04 00:00.00 000000'),stringdate('1994.12.09 00:00.00 000000'),3,3.100000,'Familia Arquibaldo','Rua Orós, 92','São Paulo','SP','05442-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10348,'WANDK',4,stringdate('1994.12.08 00:00.00 000000'),stringdate('1995.01.05 00:00.00 000000'),stringdate('1994.12.16 00:00.00 000000'),2,0.780000,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10349,'SPLIR',7,stringdate('1994.12.09 00:00.00 000000'),stringdate('1995.01.06 00:00.00 000000'),stringdate('1994.12.16 00:00.00 000000'),1,8.630000,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10350,'LAMAI',6,stringdate('1994.12.12 00:00.00 000000'),stringdate('1995.01.09 00:00.00 000000'),stringdate('1995.01.03 00:00.00 000000'),2,64.190000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10351,'ERNSH',1,stringdate('1994.12.12 00:00.00 000000'),stringdate('1995.01.09 00:00.00 000000'),stringdate('1994.12.21 00:00.00 000000'),1,162.330000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10352,'FURIB',3,stringdate('1994.12.13 00:00.00 000000'),stringdate('1994.12.27 00:00.00 000000'),stringdate('1994.12.19 00:00.00 000000'),3,1.300000,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10353,'PICCO',7,stringdate('1994.12.14 00:00.00 000000'),stringdate('1995.01.11 00:00.00 000000'),stringdate('1994.12.26 00:00.00 000000'),3,360.630000,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10354,'PERIC',8,stringdate('1994.12.15 00:00.00 000000'),stringdate('1995.01.12 00:00.00 000000'),stringdate('1994.12.21 00:00.00 000000'),3,53.800000,'Pericles Comidas clásicas','Calle Dr. Jorge Cash 321','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10355,'AROUT',6,stringdate('1994.12.16 00:00.00 000000'),stringdate('1995.01.13 00:00.00 000000'),stringdate('1994.12.21 00:00.00 000000'),1,41.950000,'Around the Horn','Brook Farm\15\12Stratford St. Mary','Colchester','Essex','CO7 6JX','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10356,'WANDK',6,stringdate('1994.12.19 00:00.00 000000'),stringdate('1995.01.16 00:00.00 000000'),stringdate('1994.12.28 00:00.00 000000'),2,36.710000,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10357,'LILAS',1,stringdate('1994.12.20 00:00.00 000000'),stringdate('1995.01.17 00:00.00 000000'),stringdate('1995.01.02 00:00.00 000000'),3,34.880000,'LILA-Supermercado','Carrera 52 con Ave. Bolívar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10358,'LAMAI',5,stringdate('1994.12.21 00:00.00 000000'),stringdate('1995.01.18 00:00.00 000000'),stringdate('1994.12.28 00:00.00 000000'),1,19.640000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10359,'SEVES',5,stringdate('1994.12.22 00:00.00 000000'),stringdate('1995.01.19 00:00.00 000000'),stringdate('1994.12.27 00:00.00 000000'),3,288.430000,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10360,'BLONP',4,stringdate('1994.12.23 00:00.00 000000'),stringdate('1995.01.20 00:00.00 000000'),stringdate('1995.01.02 00:00.00 000000'),3,131.700000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10361,'QUICK',1,stringdate('1994.12.23 00:00.00 000000'),stringdate('1995.01.20 00:00.00 000000'),stringdate('1995.01.03 00:00.00 000000'),2,183.170000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10362,'BONAP',3,stringdate('1994.12.26 00:00.00 000000'),stringdate('1995.01.23 00:00.00 000000'),stringdate('1994.12.29 00:00.00 000000'),1,96.040000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10363,'DRACD',4,stringdate('1994.12.27 00:00.00 000000'),stringdate('1995.01.24 00:00.00 000000'),stringdate('1995.01.04 00:00.00 000000'),3,30.540000,'Drachenblut Delikatessen','Walserweg 21','Aachen',NULL,'52066','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10364,'EASTC',1,stringdate('1994.12.27 00:00.00 000000'),stringdate('1995.02.07 00:00.00 000000'),stringdate('1995.01.04 00:00.00 000000'),1,71.970000,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10365,'ANTON',3,stringdate('1994.12.28 00:00.00 000000'),stringdate('1995.01.25 00:00.00 000000'),stringdate('1995.01.02 00:00.00 000000'),2,22.000000,'Antonio Moreno Taquería','Mataderos 2312','México D.F.',NULL,'05023','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10366,'GALED',8,stringdate('1994.12.29 00:00.00 000000'),stringdate('1995.02.09 00:00.00 000000'),stringdate('1995.01.30 00:00.00 000000'),2,10.140000,'Galería del gastronómo','Rambla de Cataluña, 23','Barcelona',NULL,'8022','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10367,'VAFFE',7,stringdate('1994.12.29 00:00.00 000000'),stringdate('1995.01.26 00:00.00 000000'),stringdate('1995.01.02 00:00.00 000000'),3,13.550000,'Vaffeljernet','Smagsløget 45','Århus',NULL,'8200','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10368,'ERNSH',2,stringdate('1994.12.30 00:00.00 000000'),stringdate('1995.01.27 00:00.00 000000'),stringdate('1995.01.02 00:00.00 000000'),2,101.950000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10369,'SPLIR',8,stringdate('1995.01.02 00:00.00 000000'),stringdate('1995.01.30 00:00.00 000000'),stringdate('1995.01.09 00:00.00 000000'),2,195.680000,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10370,'CHOPS',6,stringdate('1995.01.03 00:00.00 000000'),stringdate('1995.01.31 00:00.00 000000'),stringdate('1995.01.27 00:00.00 000000'),2,1.170000,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10371,'LAMAI',1,stringdate('1995.01.03 00:00.00 000000'),stringdate('1995.01.31 00:00.00 000000'),stringdate('1995.01.24 00:00.00 000000'),1,0.450000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10372,'QUEEN',5,stringdate('1995.01.04 00:00.00 000000'),stringdate('1995.02.01 00:00.00 000000'),stringdate('1995.01.09 00:00.00 000000'),2,890.780000,'Queen Cozinha','Alameda dos Canàrios, 891','São Paulo','SP','05487-020','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10373,'HUNGO',4,stringdate('1995.01.05 00:00.00 000000'),stringdate('1995.02.02 00:00.00 000000'),stringdate('1995.01.11 00:00.00 000000'),3,124.120000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10374,'WOLZA',1,stringdate('1995.01.05 00:00.00 000000'),stringdate('1995.02.02 00:00.00 000000'),stringdate('1995.01.09 00:00.00 000000'),3,3.940000,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10375,'HUNGC',3,stringdate('1995.01.06 00:00.00 000000'),stringdate('1995.02.03 00:00.00 000000'),stringdate('1995.01.09 00:00.00 000000'),2,20.120000,'Hungry Coyote Import Store','City Center Plaza\15\12516 Main St.','Elgin','OR','97827','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10376,'MEREP',1,stringdate('1995.01.09 00:00.00 000000'),stringdate('1995.02.06 00:00.00 000000'),stringdate('1995.01.13 00:00.00 000000'),2,20.390000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10377,'SEVES',1,stringdate('1995.01.09 00:00.00 000000'),stringdate('1995.02.06 00:00.00 000000'),stringdate('1995.01.13 00:00.00 000000'),3,22.210000,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10378,'FOLKO',5,stringdate('1995.01.10 00:00.00 000000'),stringdate('1995.02.07 00:00.00 000000'),stringdate('1995.01.19 00:00.00 000000'),3,5.440000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10379,'QUEDE',2,stringdate('1995.01.11 00:00.00 000000'),stringdate('1995.02.08 00:00.00 000000'),stringdate('1995.01.13 00:00.00 000000'),1,45.030000,'Que Delícia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10380,'HUNGO',8,stringdate('1995.01.12 00:00.00 000000'),stringdate('1995.02.09 00:00.00 000000'),stringdate('1995.02.16 00:00.00 000000'),3,35.030000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10381,'LILAS',3,stringdate('1995.01.12 00:00.00 000000'),stringdate('1995.02.09 00:00.00 000000'),stringdate('1995.01.13 00:00.00 000000'),3,7.990000,'LILA-Supermercado','Carrera 52 con Ave. Bolívar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10382,'ERNSH',4,stringdate('1995.01.13 00:00.00 000000'),stringdate('1995.02.10 00:00.00 000000'),stringdate('1995.01.16 00:00.00 000000'),1,94.770000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10383,'AROUT',8,stringdate('1995.01.16 00:00.00 000000'),stringdate('1995.02.13 00:00.00 000000'),stringdate('1995.01.18 00:00.00 000000'),3,34.240000,'Around the Horn','Brook Farm\15\12Stratford St. Mary','Colchester','Essex','CO7 6JX','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10384,'BERGS',3,stringdate('1995.01.16 00:00.00 000000'),stringdate('1995.02.13 00:00.00 000000'),stringdate('1995.01.20 00:00.00 000000'),3,168.640000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10385,'SPLIR',1,stringdate('1995.01.17 00:00.00 000000'),stringdate('1995.02.14 00:00.00 000000'),stringdate('1995.01.23 00:00.00 000000'),2,30.960000,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10386,'FAMIA',9,stringdate('1995.01.18 00:00.00 000000'),stringdate('1995.02.01 00:00.00 000000'),stringdate('1995.01.25 00:00.00 000000'),3,13.990000,'Familia Arquibaldo','Rua Orós, 92','São Paulo','SP','05442-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10387,'SANTG',1,stringdate('1995.01.18 00:00.00 000000'),stringdate('1995.02.15 00:00.00 000000'),stringdate('1995.01.20 00:00.00 000000'),2,93.630000,'Santé Gourmet','Erling Skakkes gate 78','Stavern',NULL,'4110','Norway');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10388,'SEVES',2,stringdate('1995.01.19 00:00.00 000000'),stringdate('1995.02.16 00:00.00 000000'),stringdate('1995.01.20 00:00.00 000000'),1,34.860000,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10389,'BOTTM',4,stringdate('1995.01.20 00:00.00 000000'),stringdate('1995.02.17 00:00.00 000000'),stringdate('1995.01.24 00:00.00 000000'),2,47.420000,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10390,'ERNSH',6,stringdate('1995.01.23 00:00.00 000000'),stringdate('1995.02.20 00:00.00 000000'),stringdate('1995.01.26 00:00.00 000000'),1,126.380000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10391,'DRACD',3,stringdate('1995.01.23 00:00.00 000000'),stringdate('1995.02.20 00:00.00 000000'),stringdate('1995.01.31 00:00.00 000000'),3,5.450000,'Drachenblut Delikatessen','Walserweg 21','Aachen',NULL,'52066','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10392,'PICCO',2,stringdate('1995.01.24 00:00.00 000000'),stringdate('1995.02.21 00:00.00 000000'),stringdate('1995.02.01 00:00.00 000000'),3,122.460000,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10393,'SAVEA',1,stringdate('1995.01.25 00:00.00 000000'),stringdate('1995.02.22 00:00.00 000000'),stringdate('1995.02.03 00:00.00 000000'),3,126.560000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10394,'HUNGC',1,stringdate('1995.01.25 00:00.00 000000'),stringdate('1995.02.22 00:00.00 000000'),stringdate('1995.02.03 00:00.00 000000'),3,30.340000,'Hungry Coyote Import Store','City Center Plaza\15\12516 Main St.','Elgin','OR','97827','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10395,'HILAA',6,stringdate('1995.01.26 00:00.00 000000'),stringdate('1995.02.23 00:00.00 000000'),stringdate('1995.02.03 00:00.00 000000'),1,184.410000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10396,'FRANK',1,stringdate('1995.01.27 00:00.00 000000'),stringdate('1995.02.10 00:00.00 000000'),stringdate('1995.02.06 00:00.00 000000'),3,135.350000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10397,'PRINI',5,stringdate('1995.01.27 00:00.00 000000'),stringdate('1995.02.24 00:00.00 000000'),stringdate('1995.02.02 00:00.00 000000'),1,60.260000,'Princesa Isabel Vinhos','Estrada da saúde n. 58','Lisboa',NULL,'1756','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10398,'SAVEA',2,stringdate('1995.01.30 00:00.00 000000'),stringdate('1995.02.27 00:00.00 000000'),stringdate('1995.02.09 00:00.00 000000'),3,89.160000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10399,'VAFFE',8,stringdate('1995.01.31 00:00.00 000000'),stringdate('1995.02.14 00:00.00 000000'),stringdate('1995.02.08 00:00.00 000000'),3,27.360000,'Vaffeljernet','Smagsløget 45','Århus',NULL,'8200','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10400,'EASTC',1,stringdate('1995.02.01 00:00.00 000000'),stringdate('1995.03.01 00:00.00 000000'),stringdate('1995.02.16 00:00.00 000000'),3,83.930000,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10401,'RATTC',1,stringdate('1995.02.01 00:00.00 000000'),stringdate('1995.03.01 00:00.00 000000'),stringdate('1995.02.10 00:00.00 000000'),1,12.510000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10402,'ERNSH',8,stringdate('1995.02.02 00:00.00 000000'),stringdate('1995.03.16 00:00.00 000000'),stringdate('1995.02.10 00:00.00 000000'),2,67.880000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10403,'ERNSH',4,stringdate('1995.02.03 00:00.00 000000'),stringdate('1995.03.03 00:00.00 000000'),stringdate('1995.02.09 00:00.00 000000'),3,73.790000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10404,'MAGAA',2,stringdate('1995.02.03 00:00.00 000000'),stringdate('1995.03.03 00:00.00 000000'),stringdate('1995.02.08 00:00.00 000000'),1,155.970000,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10405,'LINOD',1,stringdate('1995.02.06 00:00.00 000000'),stringdate('1995.03.06 00:00.00 000000'),stringdate('1995.02.22 00:00.00 000000'),1,34.820000,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10406,'QUEEN',7,stringdate('1995.02.07 00:00.00 000000'),stringdate('1995.03.21 00:00.00 000000'),stringdate('1995.02.13 00:00.00 000000'),1,108.040000,'Queen Cozinha','Alameda dos Canàrios, 891','São Paulo','SP','05487-020','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10407,'OTTIK',2,stringdate('1995.02.07 00:00.00 000000'),stringdate('1995.03.07 00:00.00 000000'),stringdate('1995.03.02 00:00.00 000000'),2,91.480000,'Ottilies Käseladen','Mehrheimerstr. 369','Köln',NULL,'50739','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10408,'FOLIG',8,stringdate('1995.02.08 00:00.00 000000'),stringdate('1995.03.08 00:00.00 000000'),stringdate('1995.02.14 00:00.00 000000'),1,11.260000,'Folies gourmandes','184, chaussée de Tournai','Lille',NULL,'59000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10409,'OCEAN',3,stringdate('1995.02.09 00:00.00 000000'),stringdate('1995.03.09 00:00.00 000000'),stringdate('1995.02.14 00:00.00 000000'),1,29.830000,'Océano Atlántico Ltda.','Ing. Gustavo Moncada 8585\15\12Piso 20-A','Buenos Aires',NULL,'1010','Argentina');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10410,'BOTTM',3,stringdate('1995.02.10 00:00.00 000000'),stringdate('1995.03.10 00:00.00 000000'),stringdate('1995.02.15 00:00.00 000000'),3,2.400000,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10411,'BOTTM',9,stringdate('1995.02.10 00:00.00 000000'),stringdate('1995.03.10 00:00.00 000000'),stringdate('1995.02.21 00:00.00 000000'),3,23.650000,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10412,'WARTH',8,stringdate('1995.02.13 00:00.00 000000'),stringdate('1995.03.13 00:00.00 000000'),stringdate('1995.02.15 00:00.00 000000'),2,3.770000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10413,'LAMAI',3,stringdate('1995.02.14 00:00.00 000000'),stringdate('1995.03.14 00:00.00 000000'),stringdate('1995.02.16 00:00.00 000000'),2,95.660000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10414,'FAMIA',2,stringdate('1995.02.14 00:00.00 000000'),stringdate('1995.03.14 00:00.00 000000'),stringdate('1995.02.17 00:00.00 000000'),3,21.480000,'Familia Arquibaldo','Rua Orós, 92','São Paulo','SP','05442-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10415,'HUNGC',3,stringdate('1995.02.15 00:00.00 000000'),stringdate('1995.03.15 00:00.00 000000'),stringdate('1995.02.24 00:00.00 000000'),1,0.200000,'Hungry Coyote Import Store','City Center Plaza\15\12516 Main St.','Elgin','OR','97827','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10416,'WARTH',8,stringdate('1995.02.16 00:00.00 000000'),stringdate('1995.03.16 00:00.00 000000'),stringdate('1995.02.27 00:00.00 000000'),3,22.720000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10417,'SIMOB',4,stringdate('1995.02.16 00:00.00 000000'),stringdate('1995.03.16 00:00.00 000000'),stringdate('1995.02.28 00:00.00 000000'),3,70.290000,'Simons bistro','Vinbæltet 34','København',NULL,'1734','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10418,'QUICK',4,stringdate('1995.02.17 00:00.00 000000'),stringdate('1995.03.17 00:00.00 000000'),stringdate('1995.02.24 00:00.00 000000'),1,17.550000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10419,'RICSU',4,stringdate('1995.02.20 00:00.00 000000'),stringdate('1995.03.20 00:00.00 000000'),stringdate('1995.03.02 00:00.00 000000'),2,137.350000,'Richter Supermarkt','Starenweg 5','Genève',NULL,'1204','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10420,'WELLI',3,stringdate('1995.02.21 00:00.00 000000'),stringdate('1995.03.21 00:00.00 000000'),stringdate('1995.02.27 00:00.00 000000'),1,44.120000,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10421,'QUEDE',8,stringdate('1995.02.21 00:00.00 000000'),stringdate('1995.04.04 00:00.00 000000'),stringdate('1995.02.27 00:00.00 000000'),1,99.230000,'Que Delícia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10422,'FRANS',2,stringdate('1995.02.22 00:00.00 000000'),stringdate('1995.03.22 00:00.00 000000'),stringdate('1995.03.03 00:00.00 000000'),1,3.020000,'Franchi S.p.A.','Via Monte Bianco 34','Torino',NULL,'10100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10423,'GOURL',6,stringdate('1995.02.23 00:00.00 000000'),stringdate('1995.03.09 00:00.00 000000'),stringdate('1995.03.27 00:00.00 000000'),3,24.500000,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10424,'MEREP',7,stringdate('1995.02.23 00:00.00 000000'),stringdate('1995.03.23 00:00.00 000000'),stringdate('1995.02.27 00:00.00 000000'),2,370.610000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10425,'LAMAI',6,stringdate('1995.02.24 00:00.00 000000'),stringdate('1995.03.24 00:00.00 000000'),stringdate('1995.03.17 00:00.00 000000'),2,7.930000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10426,'GALED',4,stringdate('1995.02.27 00:00.00 000000'),stringdate('1995.03.27 00:00.00 000000'),stringdate('1995.03.09 00:00.00 000000'),1,18.690000,'Galería del gastronómo','Rambla de Cataluña, 23','Barcelona',NULL,'8022','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10427,'PICCO',4,stringdate('1995.02.27 00:00.00 000000'),stringdate('1995.03.27 00:00.00 000000'),stringdate('1995.04.03 00:00.00 000000'),2,31.290000,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10428,'REGGC',7,stringdate('1995.02.28 00:00.00 000000'),stringdate('1995.03.28 00:00.00 000000'),stringdate('1995.03.07 00:00.00 000000'),1,11.090000,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10429,'HUNGO',3,stringdate('1995.03.01 00:00.00 000000'),stringdate('1995.04.12 00:00.00 000000'),stringdate('1995.03.10 00:00.00 000000'),2,56.630000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10430,'ERNSH',4,stringdate('1995.03.02 00:00.00 000000'),stringdate('1995.03.16 00:00.00 000000'),stringdate('1995.03.06 00:00.00 000000'),1,458.780000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10431,'BOTTM',4,stringdate('1995.03.02 00:00.00 000000'),stringdate('1995.03.16 00:00.00 000000'),stringdate('1995.03.10 00:00.00 000000'),2,44.170000,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10432,'SPLIR',3,stringdate('1995.03.03 00:00.00 000000'),stringdate('1995.03.17 00:00.00 000000'),stringdate('1995.03.10 00:00.00 000000'),2,4.340000,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10433,'PRINI',3,stringdate('1995.03.06 00:00.00 000000'),stringdate('1995.04.03 00:00.00 000000'),stringdate('1995.04.04 00:00.00 000000'),3,73.830000,'Princesa Isabel Vinhos','Estrada da saúde n. 58','Lisboa',NULL,'1756','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10434,'FOLKO',3,stringdate('1995.03.06 00:00.00 000000'),stringdate('1995.04.03 00:00.00 000000'),stringdate('1995.03.16 00:00.00 000000'),2,17.920000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10435,'CONSH',8,stringdate('1995.03.07 00:00.00 000000'),stringdate('1995.04.18 00:00.00 000000'),stringdate('1995.03.10 00:00.00 000000'),2,9.210000,'Consolidated Holdings','Berkeley Gardens\15\1212 Brewery ','London',NULL,'WX1 6LT','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10436,'BLONP',3,stringdate('1995.03.08 00:00.00 000000'),stringdate('1995.04.05 00:00.00 000000'),stringdate('1995.03.14 00:00.00 000000'),2,156.660000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10437,'WARTH',8,stringdate('1995.03.08 00:00.00 000000'),stringdate('1995.04.05 00:00.00 000000'),stringdate('1995.03.15 00:00.00 000000'),1,19.970000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10438,'TOMSP',3,stringdate('1995.03.09 00:00.00 000000'),stringdate('1995.04.06 00:00.00 000000'),stringdate('1995.03.17 00:00.00 000000'),2,8.240000,'Toms Spezialitäten','Luisenstr. 48','Münster',NULL,'44087','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10439,'MEREP',6,stringdate('1995.03.10 00:00.00 000000'),stringdate('1995.04.07 00:00.00 000000'),stringdate('1995.03.13 00:00.00 000000'),3,4.070000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10440,'SAVEA',4,stringdate('1995.03.13 00:00.00 000000'),stringdate('1995.04.10 00:00.00 000000'),stringdate('1995.03.31 00:00.00 000000'),2,86.530000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10441,'OLDWO',3,stringdate('1995.03.13 00:00.00 000000'),stringdate('1995.04.24 00:00.00 000000'),stringdate('1995.04.14 00:00.00 000000'),2,73.020000,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10442,'ERNSH',3,stringdate('1995.03.14 00:00.00 000000'),stringdate('1995.04.11 00:00.00 000000'),stringdate('1995.03.21 00:00.00 000000'),2,47.940000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10443,'REGGC',8,stringdate('1995.03.15 00:00.00 000000'),stringdate('1995.04.12 00:00.00 000000'),stringdate('1995.03.17 00:00.00 000000'),1,13.950000,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10444,'BERGS',3,stringdate('1995.03.15 00:00.00 000000'),stringdate('1995.04.12 00:00.00 000000'),stringdate('1995.03.24 00:00.00 000000'),3,3.500000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10445,'BERGS',3,stringdate('1995.03.16 00:00.00 000000'),stringdate('1995.04.13 00:00.00 000000'),stringdate('1995.03.23 00:00.00 000000'),1,9.300000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10446,'TOMSP',6,stringdate('1995.03.17 00:00.00 000000'),stringdate('1995.04.14 00:00.00 000000'),stringdate('1995.03.22 00:00.00 000000'),1,14.680000,'Toms Spezialitäten','Luisenstr. 48','Münster',NULL,'44087','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10447,'RICAR',4,stringdate('1995.03.17 00:00.00 000000'),stringdate('1995.04.14 00:00.00 000000'),stringdate('1995.04.07 00:00.00 000000'),2,68.660000,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10448,'RANCH',4,stringdate('1995.03.20 00:00.00 000000'),stringdate('1995.04.17 00:00.00 000000'),stringdate('1995.03.27 00:00.00 000000'),2,38.820000,'Rancho grande','Av. del Libertador 900','Buenos Aires',NULL,'1010','Argentina');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10449,'BLONP',3,stringdate('1995.03.21 00:00.00 000000'),stringdate('1995.04.18 00:00.00 000000'),stringdate('1995.03.30 00:00.00 000000'),2,53.300000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10450,'VICTE',8,stringdate('1995.03.22 00:00.00 000000'),stringdate('1995.04.19 00:00.00 000000'),stringdate('1995.04.11 00:00.00 000000'),2,7.230000,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10451,'QUICK',4,stringdate('1995.03.22 00:00.00 000000'),stringdate('1995.04.05 00:00.00 000000'),stringdate('1995.04.12 00:00.00 000000'),3,189.090000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10452,'SAVEA',8,stringdate('1995.03.23 00:00.00 000000'),stringdate('1995.04.20 00:00.00 000000'),stringdate('1995.03.29 00:00.00 000000'),1,140.260000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10453,'AROUT',1,stringdate('1995.03.24 00:00.00 000000'),stringdate('1995.04.21 00:00.00 000000'),stringdate('1995.03.29 00:00.00 000000'),2,25.360000,'Around the Horn','Brook Farm\15\12Stratford St. Mary','Colchester','Essex','CO7 6JX','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10454,'LAMAI',4,stringdate('1995.03.24 00:00.00 000000'),stringdate('1995.04.21 00:00.00 000000'),stringdate('1995.03.28 00:00.00 000000'),3,2.740000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10455,'WARTH',8,stringdate('1995.03.27 00:00.00 000000'),stringdate('1995.05.08 00:00.00 000000'),stringdate('1995.04.03 00:00.00 000000'),2,180.450000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10456,'KOENE',8,stringdate('1995.03.28 00:00.00 000000'),stringdate('1995.05.09 00:00.00 000000'),stringdate('1995.03.31 00:00.00 000000'),2,8.120000,'Königlich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10457,'KOENE',2,stringdate('1995.03.28 00:00.00 000000'),stringdate('1995.04.25 00:00.00 000000'),stringdate('1995.04.03 00:00.00 000000'),1,11.570000,'Königlich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10458,'SUPRD',7,stringdate('1995.03.29 00:00.00 000000'),stringdate('1995.04.26 00:00.00 000000'),stringdate('1995.04.04 00:00.00 000000'),3,147.060000,'Suprêmes délices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10459,'VICTE',4,stringdate('1995.03.30 00:00.00 000000'),stringdate('1995.04.27 00:00.00 000000'),stringdate('1995.03.31 00:00.00 000000'),2,25.090000,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10460,'FOLKO',8,stringdate('1995.03.31 00:00.00 000000'),stringdate('1995.04.28 00:00.00 000000'),stringdate('1995.04.03 00:00.00 000000'),1,16.270000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10461,'LILAS',1,stringdate('1995.03.31 00:00.00 000000'),stringdate('1995.04.28 00:00.00 000000'),stringdate('1995.04.05 00:00.00 000000'),3,148.610000,'LILA-Supermercado','Carrera 52 con Ave. Bolívar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10462,'CONSH',2,stringdate('1995.04.03 00:00.00 000000'),stringdate('1995.05.01 00:00.00 000000'),stringdate('1995.04.18 00:00.00 000000'),1,6.170000,'Consolidated Holdings','Berkeley Gardens\15\1212 Brewery ','London',NULL,'WX1 6LT','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10463,'SUPRD',5,stringdate('1995.04.04 00:00.00 000000'),stringdate('1995.05.02 00:00.00 000000'),stringdate('1995.04.06 00:00.00 000000'),3,14.780000,'Suprêmes délices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10464,'FURIB',4,stringdate('1995.04.04 00:00.00 000000'),stringdate('1995.05.02 00:00.00 000000'),stringdate('1995.04.14 00:00.00 000000'),2,89.000000,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10465,'VAFFE',1,stringdate('1995.04.05 00:00.00 000000'),stringdate('1995.05.03 00:00.00 000000'),stringdate('1995.04.14 00:00.00 000000'),3,145.040000,'Vaffeljernet','Smagsløget 45','Århus',NULL,'8200','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10466,'COMMI',4,stringdate('1995.04.06 00:00.00 000000'),stringdate('1995.05.04 00:00.00 000000'),stringdate('1995.04.13 00:00.00 000000'),1,11.930000,'Comércio Mineiro','Av. dos Lusíadas, 23','São Paulo','SP','05432-043','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10467,'MAGAA',8,stringdate('1995.04.06 00:00.00 000000'),stringdate('1995.05.04 00:00.00 000000'),stringdate('1995.04.11 00:00.00 000000'),2,4.930000,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10468,'KOENE',3,stringdate('1995.04.07 00:00.00 000000'),stringdate('1995.05.05 00:00.00 000000'),stringdate('1995.04.12 00:00.00 000000'),3,44.120000,'Königlich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10469,'WHITC',1,stringdate('1995.04.10 00:00.00 000000'),stringdate('1995.05.08 00:00.00 000000'),stringdate('1995.04.14 00:00.00 000000'),1,60.180000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10470,'BONAP',4,stringdate('1995.04.11 00:00.00 000000'),stringdate('1995.05.09 00:00.00 000000'),stringdate('1995.04.14 00:00.00 000000'),2,64.560000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10471,'BSBEV',2,stringdate('1995.04.11 00:00.00 000000'),stringdate('1995.05.09 00:00.00 000000'),stringdate('1995.04.18 00:00.00 000000'),3,45.590000,'B\47s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10472,'SEVES',8,stringdate('1995.04.12 00:00.00 000000'),stringdate('1995.05.10 00:00.00 000000'),stringdate('1995.04.19 00:00.00 000000'),1,4.200000,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10473,'ISLAT',1,stringdate('1995.04.13 00:00.00 000000'),stringdate('1995.04.27 00:00.00 000000'),stringdate('1995.04.21 00:00.00 000000'),3,16.370000,'Island Trading','Garden House\15\12Crowther Way','Cowes','Isle of Wight','PO31 7PJ','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10474,'PERIC',5,stringdate('1995.04.13 00:00.00 000000'),stringdate('1995.05.11 00:00.00 000000'),stringdate('1995.04.21 00:00.00 000000'),2,83.490000,'Pericles Comidas clásicas','Calle Dr. Jorge Cash 321','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10475,'SUPRD',9,stringdate('1995.04.14 00:00.00 000000'),stringdate('1995.05.12 00:00.00 000000'),stringdate('1995.05.05 00:00.00 000000'),1,68.520000,'Suprêmes délices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10476,'HILAA',8,stringdate('1995.04.17 00:00.00 000000'),stringdate('1995.05.15 00:00.00 000000'),stringdate('1995.04.24 00:00.00 000000'),3,4.410000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10477,'PRINI',5,stringdate('1995.04.17 00:00.00 000000'),stringdate('1995.05.15 00:00.00 000000'),stringdate('1995.04.25 00:00.00 000000'),2,13.020000,'Princesa Isabel Vinhos','Estrada da saúde n. 58','Lisboa',NULL,'1756','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10478,'VICTE',2,stringdate('1995.04.18 00:00.00 000000'),stringdate('1995.05.02 00:00.00 000000'),stringdate('1995.04.26 00:00.00 000000'),3,4.810000,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10479,'RATTC',3,stringdate('1995.04.19 00:00.00 000000'),stringdate('1995.05.17 00:00.00 000000'),stringdate('1995.04.21 00:00.00 000000'),3,708.950000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10480,'FOLIG',6,stringdate('1995.04.20 00:00.00 000000'),stringdate('1995.05.18 00:00.00 000000'),stringdate('1995.04.24 00:00.00 000000'),2,1.350000,'Folies gourmandes','184, chaussée de Tournai','Lille',NULL,'59000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10481,'RICAR',8,stringdate('1995.04.20 00:00.00 000000'),stringdate('1995.05.18 00:00.00 000000'),stringdate('1995.04.25 00:00.00 000000'),2,64.330000,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10482,'LAZYK',1,stringdate('1995.04.21 00:00.00 000000'),stringdate('1995.05.19 00:00.00 000000'),stringdate('1995.05.11 00:00.00 000000'),3,7.480000,'Lazy K Kountry Store','12 Orchestra Terrace','Walla Walla','WA','99362','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10483,'WHITC',7,stringdate('1995.04.24 00:00.00 000000'),stringdate('1995.05.22 00:00.00 000000'),stringdate('1995.05.26 00:00.00 000000'),2,15.280000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10484,'BSBEV',3,stringdate('1995.04.24 00:00.00 000000'),stringdate('1995.05.22 00:00.00 000000'),stringdate('1995.05.02 00:00.00 000000'),3,6.880000,'B\47s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10485,'LINOD',4,stringdate('1995.04.25 00:00.00 000000'),stringdate('1995.05.09 00:00.00 000000'),stringdate('1995.05.01 00:00.00 000000'),2,64.450000,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10486,'HILAA',1,stringdate('1995.04.26 00:00.00 000000'),stringdate('1995.05.24 00:00.00 000000'),stringdate('1995.05.03 00:00.00 000000'),2,30.530000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10487,'QUEEN',2,stringdate('1995.04.26 00:00.00 000000'),stringdate('1995.05.24 00:00.00 000000'),stringdate('1995.04.28 00:00.00 000000'),2,71.070000,'Queen Cozinha','Alameda dos Canàrios, 891','São Paulo','SP','05487-020','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10488,'FRANK',8,stringdate('1995.04.27 00:00.00 000000'),stringdate('1995.05.25 00:00.00 000000'),stringdate('1995.05.03 00:00.00 000000'),2,4.930000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10489,'PICCO',6,stringdate('1995.04.28 00:00.00 000000'),stringdate('1995.05.26 00:00.00 000000'),stringdate('1995.05.10 00:00.00 000000'),2,5.290000,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10490,'HILAA',7,stringdate('1995.05.01 00:00.00 000000'),stringdate('1995.05.29 00:00.00 000000'),stringdate('1995.05.04 00:00.00 000000'),2,210.190000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10491,'FURIB',8,stringdate('1995.05.01 00:00.00 000000'),stringdate('1995.05.29 00:00.00 000000'),stringdate('1995.05.09 00:00.00 000000'),3,16.960000,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10492,'BOTTM',3,stringdate('1995.05.02 00:00.00 000000'),stringdate('1995.05.30 00:00.00 000000'),stringdate('1995.05.12 00:00.00 000000'),1,62.890000,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10493,'LAMAI',4,stringdate('1995.05.03 00:00.00 000000'),stringdate('1995.05.31 00:00.00 000000'),stringdate('1995.05.11 00:00.00 000000'),3,10.640000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10494,'COMMI',4,stringdate('1995.05.03 00:00.00 000000'),stringdate('1995.05.31 00:00.00 000000'),stringdate('1995.05.10 00:00.00 000000'),2,65.990000,'Comércio Mineiro','Av. dos Lusíadas, 23','São Paulo','SP','05432-043','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10495,'LAUGB',3,stringdate('1995.05.04 00:00.00 000000'),stringdate('1995.06.01 00:00.00 000000'),stringdate('1995.05.12 00:00.00 000000'),3,4.650000,'Laughing Bacchus Wine Cellars','2319 Elm St.','Vancouver','BC','V3F 2K1','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10496,'TRADH',7,stringdate('1995.05.05 00:00.00 000000'),stringdate('1995.06.02 00:00.00 000000'),stringdate('1995.05.08 00:00.00 000000'),2,46.770000,'Tradição Hipermercados','Av. Inês de Castro, 414','São Paulo','SP','05634-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10497,'LEHMS',7,stringdate('1995.05.05 00:00.00 000000'),stringdate('1995.06.02 00:00.00 000000'),stringdate('1995.05.08 00:00.00 000000'),1,36.210000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10498,'HILAA',8,stringdate('1995.05.08 00:00.00 000000'),stringdate('1995.06.05 00:00.00 000000'),stringdate('1995.05.12 00:00.00 000000'),2,29.750000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10499,'LILAS',4,stringdate('1995.05.09 00:00.00 000000'),stringdate('1995.06.06 00:00.00 000000'),stringdate('1995.05.17 00:00.00 000000'),2,102.020000,'LILA-Supermercado','Carrera 52 con Ave. Bolívar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10500,'LAMAI',6,stringdate('1995.05.10 00:00.00 000000'),stringdate('1995.06.07 00:00.00 000000'),stringdate('1995.05.18 00:00.00 000000'),1,42.680000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10501,'BLAUS',9,stringdate('1995.05.10 00:00.00 000000'),stringdate('1995.06.07 00:00.00 000000'),stringdate('1995.05.17 00:00.00 000000'),3,8.850000,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10502,'PERIC',2,stringdate('1995.05.11 00:00.00 000000'),stringdate('1995.06.08 00:00.00 000000'),stringdate('1995.05.30 00:00.00 000000'),1,69.320000,'Pericles Comidas clásicas','Calle Dr. Jorge Cash 321','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10503,'HUNGO',6,stringdate('1995.05.12 00:00.00 000000'),stringdate('1995.06.09 00:00.00 000000'),stringdate('1995.05.17 00:00.00 000000'),2,16.740000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10504,'WHITC',4,stringdate('1995.05.12 00:00.00 000000'),stringdate('1995.06.09 00:00.00 000000'),stringdate('1995.05.19 00:00.00 000000'),3,59.130000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10505,'MEREP',3,stringdate('1995.05.15 00:00.00 000000'),stringdate('1995.06.12 00:00.00 000000'),stringdate('1995.05.22 00:00.00 000000'),3,7.130000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10506,'KOENE',9,stringdate('1995.05.16 00:00.00 000000'),stringdate('1995.06.13 00:00.00 000000'),stringdate('1995.06.02 00:00.00 000000'),2,21.190000,'Königlich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10507,'ANTON',7,stringdate('1995.05.16 00:00.00 000000'),stringdate('1995.06.13 00:00.00 000000'),stringdate('1995.05.23 00:00.00 000000'),1,47.450000,'Antonio Moreno Taquería','Mataderos 2312','México D.F.',NULL,'05023','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10508,'OTTIK',1,stringdate('1995.05.17 00:00.00 000000'),stringdate('1995.06.14 00:00.00 000000'),stringdate('1995.06.13 00:00.00 000000'),2,4.990000,'Ottilies Käseladen','Mehrheimerstr. 369','Köln',NULL,'50739','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10509,'BLAUS',4,stringdate('1995.05.18 00:00.00 000000'),stringdate('1995.06.15 00:00.00 000000'),stringdate('1995.05.30 00:00.00 000000'),1,0.150000,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10510,'SAVEA',6,stringdate('1995.05.19 00:00.00 000000'),stringdate('1995.06.16 00:00.00 000000'),stringdate('1995.05.29 00:00.00 000000'),3,367.630000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10511,'BONAP',4,stringdate('1995.05.19 00:00.00 000000'),stringdate('1995.06.16 00:00.00 000000'),stringdate('1995.05.22 00:00.00 000000'),3,350.640000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10512,'FAMIA',7,stringdate('1995.05.22 00:00.00 000000'),stringdate('1995.06.19 00:00.00 000000'),stringdate('1995.05.25 00:00.00 000000'),2,3.530000,'Familia Arquibaldo','Rua Orós, 92','São Paulo','SP','05442-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10513,'WANDK',7,stringdate('1995.05.23 00:00.00 000000'),stringdate('1995.07.04 00:00.00 000000'),stringdate('1995.05.29 00:00.00 000000'),1,105.650000,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10514,'ERNSH',3,stringdate('1995.05.23 00:00.00 000000'),stringdate('1995.06.20 00:00.00 000000'),stringdate('1995.06.16 00:00.00 000000'),2,789.950000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10515,'QUICK',2,stringdate('1995.05.24 00:00.00 000000'),stringdate('1995.06.07 00:00.00 000000'),stringdate('1995.06.23 00:00.00 000000'),1,204.470000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10516,'HUNGO',2,stringdate('1995.05.25 00:00.00 000000'),stringdate('1995.06.22 00:00.00 000000'),stringdate('1995.06.01 00:00.00 000000'),3,62.780000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10517,'NORTS',3,stringdate('1995.05.25 00:00.00 000000'),stringdate('1995.06.22 00:00.00 000000'),stringdate('1995.05.30 00:00.00 000000'),3,32.070000,'North/South','South House\15\12300 Queensbridge','London',NULL,'SW7 1RZ','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10518,'TORTU',4,stringdate('1995.05.26 00:00.00 000000'),stringdate('1995.06.09 00:00.00 000000'),stringdate('1995.06.05 00:00.00 000000'),2,218.150000,'Tortuga Restaurante','Avda. Azteca 123','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10519,'CHOPS',6,stringdate('1995.05.29 00:00.00 000000'),stringdate('1995.06.26 00:00.00 000000'),stringdate('1995.06.01 00:00.00 000000'),3,91.760000,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10520,'SANTG',7,stringdate('1995.05.30 00:00.00 000000'),stringdate('1995.06.27 00:00.00 000000'),stringdate('1995.06.01 00:00.00 000000'),1,13.370000,'Santé Gourmet','Erling Skakkes gate 78','Stavern',NULL,'4110','Norway');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10521,'CACTU',8,stringdate('1995.05.30 00:00.00 000000'),stringdate('1995.06.27 00:00.00 000000'),stringdate('1995.06.02 00:00.00 000000'),2,17.220000,'Cactus Comidas para llevar','Cerrito 333','Buenos Aires',NULL,'1010','Argentina');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10522,'LEHMS',4,stringdate('1995.05.31 00:00.00 000000'),stringdate('1995.06.28 00:00.00 000000'),stringdate('1995.06.06 00:00.00 000000'),1,45.330000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10523,'SEVES',7,stringdate('1995.06.01 00:00.00 000000'),stringdate('1995.06.29 00:00.00 000000'),stringdate('1995.06.30 00:00.00 000000'),2,77.630000,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10524,'BERGS',1,stringdate('1995.06.01 00:00.00 000000'),stringdate('1995.06.29 00:00.00 000000'),stringdate('1995.06.07 00:00.00 000000'),2,244.790000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10525,'BONAP',1,stringdate('1995.06.02 00:00.00 000000'),stringdate('1995.06.30 00:00.00 000000'),stringdate('1995.06.23 00:00.00 000000'),2,11.060000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10526,'WARTH',4,stringdate('1995.06.05 00:00.00 000000'),stringdate('1995.07.03 00:00.00 000000'),stringdate('1995.06.15 00:00.00 000000'),2,58.590000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10527,'QUICK',7,stringdate('1995.06.05 00:00.00 000000'),stringdate('1995.07.03 00:00.00 000000'),stringdate('1995.06.07 00:00.00 000000'),1,41.900000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10528,'GREAL',6,stringdate('1995.06.06 00:00.00 000000'),stringdate('1995.06.20 00:00.00 000000'),stringdate('1995.06.09 00:00.00 000000'),2,3.350000,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10529,'MAISD',5,stringdate('1995.06.07 00:00.00 000000'),stringdate('1995.07.05 00:00.00 000000'),stringdate('1995.06.09 00:00.00 000000'),2,66.690000,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10530,'PICCO',3,stringdate('1995.06.08 00:00.00 000000'),stringdate('1995.07.06 00:00.00 000000'),stringdate('1995.06.12 00:00.00 000000'),2,339.220000,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10531,'OCEAN',7,stringdate('1995.06.08 00:00.00 000000'),stringdate('1995.07.06 00:00.00 000000'),stringdate('1995.06.19 00:00.00 000000'),1,8.120000,'Océano Atlántico Ltda.','Ing. Gustavo Moncada 8585\15\12Piso 20-A','Buenos Aires',NULL,'1010','Argentina');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10532,'EASTC',7,stringdate('1995.06.09 00:00.00 000000'),stringdate('1995.07.07 00:00.00 000000'),stringdate('1995.06.12 00:00.00 000000'),3,74.460000,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10533,'FOLKO',8,stringdate('1995.06.12 00:00.00 000000'),stringdate('1995.07.10 00:00.00 000000'),stringdate('1995.06.22 00:00.00 000000'),1,188.040000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10534,'LEHMS',8,stringdate('1995.06.12 00:00.00 000000'),stringdate('1995.07.10 00:00.00 000000'),stringdate('1995.06.14 00:00.00 000000'),2,27.940000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10535,'ANTON',4,stringdate('1995.06.13 00:00.00 000000'),stringdate('1995.07.11 00:00.00 000000'),stringdate('1995.06.21 00:00.00 000000'),1,15.640000,'Antonio Moreno Taquería','Mataderos 2312','México D.F.',NULL,'05023','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10536,'LEHMS',3,stringdate('1995.06.14 00:00.00 000000'),stringdate('1995.07.12 00:00.00 000000'),stringdate('1995.07.07 00:00.00 000000'),2,58.880000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10537,'RICSU',1,stringdate('1995.06.14 00:00.00 000000'),stringdate('1995.06.28 00:00.00 000000'),stringdate('1995.06.19 00:00.00 000000'),1,78.850000,'Richter Supermarkt','Starenweg 5','Genève',NULL,'1204','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10538,'BSBEV',9,stringdate('1995.06.15 00:00.00 000000'),stringdate('1995.07.13 00:00.00 000000'),stringdate('1995.06.16 00:00.00 000000'),3,4.870000,'B\47s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10539,'BSBEV',6,stringdate('1995.06.16 00:00.00 000000'),stringdate('1995.07.14 00:00.00 000000'),stringdate('1995.06.23 00:00.00 000000'),3,12.360000,'B\47s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10540,'QUICK',3,stringdate('1995.06.19 00:00.00 000000'),stringdate('1995.07.17 00:00.00 000000'),stringdate('1995.07.14 00:00.00 000000'),3,1007.640000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10541,'HANAR',2,stringdate('1995.06.19 00:00.00 000000'),stringdate('1995.07.17 00:00.00 000000'),stringdate('1995.06.29 00:00.00 000000'),1,68.650000,'Hanari Carnes','Rua do Paço, 67','Rio de Janeiro','RJ','05454-876','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10542,'KOENE',1,stringdate('1995.06.20 00:00.00 000000'),stringdate('1995.07.18 00:00.00 000000'),stringdate('1995.06.26 00:00.00 000000'),3,10.950000,'Königlich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10543,'LILAS',8,stringdate('1995.06.21 00:00.00 000000'),stringdate('1995.07.19 00:00.00 000000'),stringdate('1995.06.23 00:00.00 000000'),2,48.170000,'LILA-Supermercado','Carrera 52 con Ave. Bolívar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10544,'LONEP',4,stringdate('1995.06.21 00:00.00 000000'),stringdate('1995.07.19 00:00.00 000000'),stringdate('1995.06.30 00:00.00 000000'),1,24.910000,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10545,'LAZYK',8,stringdate('1995.06.22 00:00.00 000000'),stringdate('1995.07.20 00:00.00 000000'),stringdate('1995.07.27 00:00.00 000000'),2,11.920000,'Lazy K Kountry Store','12 Orchestra Terrace','Walla Walla','WA','99362','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10546,'VICTE',1,stringdate('1995.06.23 00:00.00 000000'),stringdate('1995.07.21 00:00.00 000000'),stringdate('1995.06.27 00:00.00 000000'),3,194.720000,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10547,'SEVES',3,stringdate('1995.06.23 00:00.00 000000'),stringdate('1995.07.21 00:00.00 000000'),stringdate('1995.07.03 00:00.00 000000'),2,178.430000,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10548,'TOMSP',3,stringdate('1995.06.26 00:00.00 000000'),stringdate('1995.07.24 00:00.00 000000'),stringdate('1995.07.03 00:00.00 000000'),2,1.430000,'Toms Spezialitäten','Luisenstr. 48','Münster',NULL,'44087','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10549,'QUICK',5,stringdate('1995.06.27 00:00.00 000000'),stringdate('1995.07.11 00:00.00 000000'),stringdate('1995.06.30 00:00.00 000000'),1,171.240000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10550,'GODOS',7,stringdate('1995.06.28 00:00.00 000000'),stringdate('1995.07.26 00:00.00 000000'),stringdate('1995.07.07 00:00.00 000000'),3,4.320000,'Godos Cocina Típica','C/ Romero, 33','Sevilla',NULL,'41101','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10551,'FURIB',4,stringdate('1995.06.28 00:00.00 000000'),stringdate('1995.08.09 00:00.00 000000'),stringdate('1995.07.07 00:00.00 000000'),3,72.950000,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10552,'HILAA',2,stringdate('1995.06.29 00:00.00 000000'),stringdate('1995.07.27 00:00.00 000000'),stringdate('1995.07.06 00:00.00 000000'),1,83.220000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10553,'WARTH',2,stringdate('1995.06.30 00:00.00 000000'),stringdate('1995.07.28 00:00.00 000000'),stringdate('1995.07.04 00:00.00 000000'),2,149.490000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10554,'OTTIK',4,stringdate('1995.06.30 00:00.00 000000'),stringdate('1995.07.28 00:00.00 000000'),stringdate('1995.07.06 00:00.00 000000'),3,120.970000,'Ottilies Käseladen','Mehrheimerstr. 369','Köln',NULL,'50739','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10555,'SAVEA',6,stringdate('1995.07.03 00:00.00 000000'),stringdate('1995.07.31 00:00.00 000000'),stringdate('1995.07.05 00:00.00 000000'),3,252.490000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10556,'SIMOB',2,stringdate('1995.07.04 00:00.00 000000'),stringdate('1995.08.15 00:00.00 000000'),stringdate('1995.07.14 00:00.00 000000'),1,9.800000,'Simons bistro','Vinbæltet 34','København',NULL,'1734','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10557,'LEHMS',9,stringdate('1995.07.04 00:00.00 000000'),stringdate('1995.07.18 00:00.00 000000'),stringdate('1995.07.07 00:00.00 000000'),2,96.720000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10558,'AROUT',1,stringdate('1995.07.05 00:00.00 000000'),stringdate('1995.08.02 00:00.00 000000'),stringdate('1995.07.11 00:00.00 000000'),2,72.970000,'Around the Horn','Brook Farm\15\12Stratford St. Mary','Colchester','Essex','CO7 6JX','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10559,'BLONP',6,stringdate('1995.07.06 00:00.00 000000'),stringdate('1995.08.03 00:00.00 000000'),stringdate('1995.07.14 00:00.00 000000'),1,8.050000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10560,'FRANK',8,stringdate('1995.07.07 00:00.00 000000'),stringdate('1995.08.04 00:00.00 000000'),stringdate('1995.07.10 00:00.00 000000'),1,36.650000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10561,'FOLKO',2,stringdate('1995.07.07 00:00.00 000000'),stringdate('1995.08.04 00:00.00 000000'),stringdate('1995.07.10 00:00.00 000000'),2,242.210000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10562,'REGGC',1,stringdate('1995.07.10 00:00.00 000000'),stringdate('1995.08.07 00:00.00 000000'),stringdate('1995.07.13 00:00.00 000000'),1,22.950000,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10563,'RICAR',2,stringdate('1995.07.11 00:00.00 000000'),stringdate('1995.08.22 00:00.00 000000'),stringdate('1995.07.25 00:00.00 000000'),2,60.430000,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10564,'RATTC',4,stringdate('1995.07.11 00:00.00 000000'),stringdate('1995.08.08 00:00.00 000000'),stringdate('1995.07.17 00:00.00 000000'),3,13.750000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10565,'MEREP',8,stringdate('1995.07.12 00:00.00 000000'),stringdate('1995.08.09 00:00.00 000000'),stringdate('1995.07.19 00:00.00 000000'),2,7.150000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10566,'BLONP',9,stringdate('1995.07.13 00:00.00 000000'),stringdate('1995.08.10 00:00.00 000000'),stringdate('1995.07.19 00:00.00 000000'),1,88.400000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10567,'HUNGO',1,stringdate('1995.07.13 00:00.00 000000'),stringdate('1995.08.10 00:00.00 000000'),stringdate('1995.07.18 00:00.00 000000'),1,33.970000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10568,'GALED',3,stringdate('1995.07.14 00:00.00 000000'),stringdate('1995.08.11 00:00.00 000000'),stringdate('1995.08.09 00:00.00 000000'),3,6.540000,'Galería del gastronómo','Rambla de Cataluña, 23','Barcelona',NULL,'8022','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10569,'RATTC',5,stringdate('1995.07.17 00:00.00 000000'),stringdate('1995.08.14 00:00.00 000000'),stringdate('1995.08.11 00:00.00 000000'),1,58.980000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10570,'MEREP',3,stringdate('1995.07.18 00:00.00 000000'),stringdate('1995.08.15 00:00.00 000000'),stringdate('1995.07.20 00:00.00 000000'),3,188.990000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10571,'ERNSH',8,stringdate('1995.07.18 00:00.00 000000'),stringdate('1995.08.29 00:00.00 000000'),stringdate('1995.08.04 00:00.00 000000'),3,26.060000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10572,'BERGS',3,stringdate('1995.07.19 00:00.00 000000'),stringdate('1995.08.16 00:00.00 000000'),stringdate('1995.07.26 00:00.00 000000'),2,116.430000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10573,'ANTON',7,stringdate('1995.07.20 00:00.00 000000'),stringdate('1995.08.17 00:00.00 000000'),stringdate('1995.07.21 00:00.00 000000'),3,84.840000,'Antonio Moreno Taquería','Mataderos 2312','México D.F.',NULL,'05023','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10574,'TRAIH',4,stringdate('1995.07.20 00:00.00 000000'),stringdate('1995.08.17 00:00.00 000000'),stringdate('1995.07.31 00:00.00 000000'),2,37.600000,'Trail\47s Head Gourmet Provisioners','722 DaVinci Blvd.','Kirkland','WA','98034','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10575,'MORGK',5,stringdate('1995.07.21 00:00.00 000000'),stringdate('1995.08.04 00:00.00 000000'),stringdate('1995.07.31 00:00.00 000000'),1,127.340000,'Morgenstern Gesundkost','Heerstr. 22','Leipzig',NULL,'04179','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10576,'TORTU',3,stringdate('1995.07.24 00:00.00 000000'),stringdate('1995.08.07 00:00.00 000000'),stringdate('1995.07.31 00:00.00 000000'),3,18.560000,'Tortuga Restaurante','Avda. Azteca 123','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10577,'TRAIH',9,stringdate('1995.07.24 00:00.00 000000'),stringdate('1995.09.04 00:00.00 000000'),stringdate('1995.07.31 00:00.00 000000'),2,25.410000,'Trail\47s Head Gourmet Provisioners','722 DaVinci Blvd.','Kirkland','WA','98034','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10578,'BSBEV',4,stringdate('1995.07.25 00:00.00 000000'),stringdate('1995.08.22 00:00.00 000000'),stringdate('1995.08.25 00:00.00 000000'),3,29.600000,'B\47s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10579,'LETSS',1,stringdate('1995.07.26 00:00.00 000000'),stringdate('1995.08.23 00:00.00 000000'),stringdate('1995.08.04 00:00.00 000000'),2,13.730000,'Let\47s Stop N Shop','87 Polk St.\15\12Suite 5','San Francisco','CA','94117','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10580,'OTTIK',4,stringdate('1995.07.27 00:00.00 000000'),stringdate('1995.08.24 00:00.00 000000'),stringdate('1995.08.01 00:00.00 000000'),3,75.890000,'Ottilies Käseladen','Mehrheimerstr. 369','Köln',NULL,'50739','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10581,'FAMIA',3,stringdate('1995.07.27 00:00.00 000000'),stringdate('1995.08.24 00:00.00 000000'),stringdate('1995.08.02 00:00.00 000000'),1,3.010000,'Familia Arquibaldo','Rua Orós, 92','São Paulo','SP','05442-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10582,'BLAUS',3,stringdate('1995.07.28 00:00.00 000000'),stringdate('1995.08.25 00:00.00 000000'),stringdate('1995.08.14 00:00.00 000000'),2,27.710000,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10583,'WARTH',2,stringdate('1995.07.31 00:00.00 000000'),stringdate('1995.08.28 00:00.00 000000'),stringdate('1995.08.04 00:00.00 000000'),2,7.280000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10584,'BLONP',4,stringdate('1995.07.31 00:00.00 000000'),stringdate('1995.08.28 00:00.00 000000'),stringdate('1995.08.04 00:00.00 000000'),1,59.140000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10585,'WELLI',7,stringdate('1995.08.01 00:00.00 000000'),stringdate('1995.08.29 00:00.00 000000'),stringdate('1995.08.10 00:00.00 000000'),1,13.410000,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10586,'REGGC',9,stringdate('1995.08.02 00:00.00 000000'),stringdate('1995.08.30 00:00.00 000000'),stringdate('1995.08.09 00:00.00 000000'),1,0.480000,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10587,'QUEDE',1,stringdate('1995.08.02 00:00.00 000000'),stringdate('1995.08.30 00:00.00 000000'),stringdate('1995.08.09 00:00.00 000000'),1,62.520000,'Que Delícia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10588,'QUICK',2,stringdate('1995.08.03 00:00.00 000000'),stringdate('1995.08.31 00:00.00 000000'),stringdate('1995.08.10 00:00.00 000000'),3,194.670000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10589,'GREAL',8,stringdate('1995.08.04 00:00.00 000000'),stringdate('1995.09.01 00:00.00 000000'),stringdate('1995.08.14 00:00.00 000000'),2,4.420000,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10590,'MEREP',4,stringdate('1995.08.07 00:00.00 000000'),stringdate('1995.09.04 00:00.00 000000'),stringdate('1995.08.14 00:00.00 000000'),3,44.770000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10591,'VAFFE',1,stringdate('1995.08.07 00:00.00 000000'),stringdate('1995.08.21 00:00.00 000000'),stringdate('1995.08.16 00:00.00 000000'),1,55.920000,'Vaffeljernet','Smagsløget 45','Århus',NULL,'8200','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10592,'LEHMS',3,stringdate('1995.08.08 00:00.00 000000'),stringdate('1995.09.05 00:00.00 000000'),stringdate('1995.08.16 00:00.00 000000'),1,32.100000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10593,'LEHMS',7,stringdate('1995.08.09 00:00.00 000000'),stringdate('1995.09.06 00:00.00 000000'),stringdate('1995.09.13 00:00.00 000000'),2,174.200000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10594,'OLDWO',3,stringdate('1995.08.09 00:00.00 000000'),stringdate('1995.09.06 00:00.00 000000'),stringdate('1995.08.16 00:00.00 000000'),2,5.240000,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10595,'ERNSH',2,stringdate('1995.08.10 00:00.00 000000'),stringdate('1995.09.07 00:00.00 000000'),stringdate('1995.08.14 00:00.00 000000'),1,96.780000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10596,'WHITC',8,stringdate('1995.08.11 00:00.00 000000'),stringdate('1995.09.08 00:00.00 000000'),stringdate('1995.09.12 00:00.00 000000'),1,16.340000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10597,'PICCO',7,stringdate('1995.08.11 00:00.00 000000'),stringdate('1995.09.08 00:00.00 000000'),stringdate('1995.08.18 00:00.00 000000'),3,35.120000,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10598,'RATTC',1,stringdate('1995.08.14 00:00.00 000000'),stringdate('1995.09.11 00:00.00 000000'),stringdate('1995.08.18 00:00.00 000000'),3,44.420000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10599,'BSBEV',6,stringdate('1995.08.15 00:00.00 000000'),stringdate('1995.09.26 00:00.00 000000'),stringdate('1995.08.21 00:00.00 000000'),3,29.980000,'B\47s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10600,'HUNGC',4,stringdate('1995.08.16 00:00.00 000000'),stringdate('1995.09.13 00:00.00 000000'),stringdate('1995.08.21 00:00.00 000000'),1,45.130000,'Hungry Coyote Import Store','City Center Plaza\15\12516 Main St.','Elgin','OR','97827','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10601,'HILAA',7,stringdate('1995.08.16 00:00.00 000000'),stringdate('1995.09.27 00:00.00 000000'),stringdate('1995.08.22 00:00.00 000000'),1,58.300000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10602,'VAFFE',8,stringdate('1995.08.17 00:00.00 000000'),stringdate('1995.09.14 00:00.00 000000'),stringdate('1995.08.22 00:00.00 000000'),2,2.920000,'Vaffeljernet','Smagsløget 45','Århus',NULL,'8200','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10603,'SAVEA',8,stringdate('1995.08.18 00:00.00 000000'),stringdate('1995.09.15 00:00.00 000000'),stringdate('1995.09.08 00:00.00 000000'),2,48.770000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10604,'FURIB',1,stringdate('1995.08.18 00:00.00 000000'),stringdate('1995.09.15 00:00.00 000000'),stringdate('1995.08.29 00:00.00 000000'),1,7.460000,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10605,'MEREP',1,stringdate('1995.08.21 00:00.00 000000'),stringdate('1995.09.18 00:00.00 000000'),stringdate('1995.08.29 00:00.00 000000'),2,379.130000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10606,'TRADH',4,stringdate('1995.08.22 00:00.00 000000'),stringdate('1995.09.19 00:00.00 000000'),stringdate('1995.08.31 00:00.00 000000'),3,79.400000,'Tradição Hipermercados','Av. Inês de Castro, 414','São Paulo','SP','05634-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10607,'SAVEA',5,stringdate('1995.08.22 00:00.00 000000'),stringdate('1995.09.19 00:00.00 000000'),stringdate('1995.08.25 00:00.00 000000'),1,200.240000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10608,'TOMSP',4,stringdate('1995.08.23 00:00.00 000000'),stringdate('1995.09.20 00:00.00 000000'),stringdate('1995.09.01 00:00.00 000000'),2,27.790000,'Toms Spezialitäten','Luisenstr. 48','Münster',NULL,'44087','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10609,'DUMON',7,stringdate('1995.08.24 00:00.00 000000'),stringdate('1995.09.21 00:00.00 000000'),stringdate('1995.08.30 00:00.00 000000'),2,1.850000,'Du monde entier','67, rue des Cinquante Otages','Nantes',NULL,'44000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10610,'LAMAI',8,stringdate('1995.08.25 00:00.00 000000'),stringdate('1995.09.22 00:00.00 000000'),stringdate('1995.09.06 00:00.00 000000'),1,26.780000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10611,'WOLZA',6,stringdate('1995.08.25 00:00.00 000000'),stringdate('1995.09.22 00:00.00 000000'),stringdate('1995.09.01 00:00.00 000000'),2,80.650000,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10612,'SAVEA',1,stringdate('1995.08.28 00:00.00 000000'),stringdate('1995.09.25 00:00.00 000000'),stringdate('1995.09.01 00:00.00 000000'),2,544.080000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10613,'HILAA',4,stringdate('1995.08.29 00:00.00 000000'),stringdate('1995.09.26 00:00.00 000000'),stringdate('1995.09.01 00:00.00 000000'),2,8.110000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10614,'BLAUS',8,stringdate('1995.08.29 00:00.00 000000'),stringdate('1995.09.26 00:00.00 000000'),stringdate('1995.09.01 00:00.00 000000'),3,1.930000,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10615,'WILMK',2,stringdate('1995.08.30 00:00.00 000000'),stringdate('1995.09.27 00:00.00 000000'),stringdate('1995.09.06 00:00.00 000000'),3,0.750000,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10616,'GREAL',1,stringdate('1995.08.31 00:00.00 000000'),stringdate('1995.09.28 00:00.00 000000'),stringdate('1995.09.05 00:00.00 000000'),2,116.530000,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10617,'GREAL',4,stringdate('1995.08.31 00:00.00 000000'),stringdate('1995.09.28 00:00.00 000000'),stringdate('1995.09.04 00:00.00 000000'),2,18.530000,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10618,'MEREP',1,stringdate('1995.09.01 00:00.00 000000'),stringdate('1995.10.13 00:00.00 000000'),stringdate('1995.09.08 00:00.00 000000'),1,154.680000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10619,'MEREP',3,stringdate('1995.09.04 00:00.00 000000'),stringdate('1995.10.02 00:00.00 000000'),stringdate('1995.09.07 00:00.00 000000'),3,91.050000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10620,'LAUGB',2,stringdate('1995.09.05 00:00.00 000000'),stringdate('1995.10.03 00:00.00 000000'),stringdate('1995.09.14 00:00.00 000000'),3,0.940000,'Laughing Bacchus Wine Cellars','2319 Elm St.','Vancouver','BC','V3F 2K1','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10621,'ISLAT',4,stringdate('1995.09.05 00:00.00 000000'),stringdate('1995.10.03 00:00.00 000000'),stringdate('1995.09.11 00:00.00 000000'),2,23.730000,'Island Trading','Garden House\15\12Crowther Way','Cowes','Isle of Wight','PO31 7PJ','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10622,'RICAR',4,stringdate('1995.09.06 00:00.00 000000'),stringdate('1995.10.04 00:00.00 000000'),stringdate('1995.09.11 00:00.00 000000'),3,50.970000,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10623,'FRANK',8,stringdate('1995.09.07 00:00.00 000000'),stringdate('1995.10.05 00:00.00 000000'),stringdate('1995.09.12 00:00.00 000000'),2,97.180000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10624,'THECR',4,stringdate('1995.09.07 00:00.00 000000'),stringdate('1995.10.05 00:00.00 000000'),stringdate('1995.09.19 00:00.00 000000'),2,94.800000,'The Cracker Box','55 Grizzly Peak Rd.','Butte','MT','59801','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10625,'ANATR',3,stringdate('1995.09.08 00:00.00 000000'),stringdate('1995.10.06 00:00.00 000000'),stringdate('1995.09.14 00:00.00 000000'),1,43.900000,'Ana Trujillo Emparedados y helados','Avda. de la Constitución 2222','México D.F.',NULL,'05021','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10626,'BERGS',1,stringdate('1995.09.11 00:00.00 000000'),stringdate('1995.10.09 00:00.00 000000'),stringdate('1995.09.20 00:00.00 000000'),2,138.690000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10627,'SAVEA',8,stringdate('1995.09.11 00:00.00 000000'),stringdate('1995.10.23 00:00.00 000000'),stringdate('1995.09.21 00:00.00 000000'),3,107.460000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10628,'BLONP',4,stringdate('1995.09.12 00:00.00 000000'),stringdate('1995.10.10 00:00.00 000000'),stringdate('1995.09.20 00:00.00 000000'),3,30.360000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10629,'GODOS',4,stringdate('1995.09.12 00:00.00 000000'),stringdate('1995.10.10 00:00.00 000000'),stringdate('1995.09.20 00:00.00 000000'),3,85.460000,'Godos Cocina Típica','C/ Romero, 33','Sevilla',NULL,'41101','Spain');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10630,'KOENE',1,stringdate('1995.09.13 00:00.00 000000'),stringdate('1995.10.11 00:00.00 000000'),stringdate('1995.09.19 00:00.00 000000'),2,32.350000,'Königlich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10631,'LAMAI',8,stringdate('1995.09.14 00:00.00 000000'),stringdate('1995.10.12 00:00.00 000000'),stringdate('1995.09.15 00:00.00 000000'),1,0.870000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10632,'WANDK',8,stringdate('1995.09.14 00:00.00 000000'),stringdate('1995.10.12 00:00.00 000000'),stringdate('1995.09.19 00:00.00 000000'),1,41.380000,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10633,'ERNSH',7,stringdate('1995.09.15 00:00.00 000000'),stringdate('1995.10.13 00:00.00 000000'),stringdate('1995.09.18 00:00.00 000000'),3,477.900000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10634,'FOLIG',4,stringdate('1995.09.15 00:00.00 000000'),stringdate('1995.10.13 00:00.00 000000'),stringdate('1995.09.21 00:00.00 000000'),3,487.380000,'Folies gourmandes','184, chaussée de Tournai','Lille',NULL,'59000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10635,'MAGAA',8,stringdate('1995.09.18 00:00.00 000000'),stringdate('1995.10.16 00:00.00 000000'),stringdate('1995.09.21 00:00.00 000000'),3,47.460000,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10636,'WARTH',4,stringdate('1995.09.19 00:00.00 000000'),stringdate('1995.10.17 00:00.00 000000'),stringdate('1995.09.26 00:00.00 000000'),1,1.150000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10637,'QUEEN',6,stringdate('1995.09.19 00:00.00 000000'),stringdate('1995.10.17 00:00.00 000000'),stringdate('1995.09.26 00:00.00 000000'),1,201.290000,'Queen Cozinha','Alameda dos Canàrios, 891','São Paulo','SP','05487-020','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10638,'LINOD',3,stringdate('1995.09.20 00:00.00 000000'),stringdate('1995.10.18 00:00.00 000000'),stringdate('1995.10.02 00:00.00 000000'),1,158.440000,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10639,'SANTG',7,stringdate('1995.09.20 00:00.00 000000'),stringdate('1995.10.18 00:00.00 000000'),stringdate('1995.09.27 00:00.00 000000'),3,38.640000,'Santé Gourmet','Erling Skakkes gate 78','Stavern',NULL,'4110','Norway');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10640,'WANDK',4,stringdate('1995.09.21 00:00.00 000000'),stringdate('1995.10.19 00:00.00 000000'),stringdate('1995.09.28 00:00.00 000000'),1,23.550000,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10641,'HILAA',4,stringdate('1995.09.22 00:00.00 000000'),stringdate('1995.10.20 00:00.00 000000'),stringdate('1995.09.26 00:00.00 000000'),2,179.610000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10642,'SIMOB',7,stringdate('1995.09.22 00:00.00 000000'),stringdate('1995.10.20 00:00.00 000000'),stringdate('1995.10.06 00:00.00 000000'),3,41.890000,'Simons bistro','Vinbæltet 34','København',NULL,'1734','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10643,'ALFKI',6,stringdate('1995.09.25 00:00.00 000000'),stringdate('1995.10.23 00:00.00 000000'),stringdate('1995.10.03 00:00.00 000000'),1,29.460000,'Alfreds Futterkiste','Obere Str. 57','Berlin',NULL,'12209','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10644,'WELLI',3,stringdate('1995.09.25 00:00.00 000000'),stringdate('1995.10.23 00:00.00 000000'),stringdate('1995.10.02 00:00.00 000000'),2,0.140000,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10645,'HANAR',4,stringdate('1995.09.26 00:00.00 000000'),stringdate('1995.10.24 00:00.00 000000'),stringdate('1995.10.03 00:00.00 000000'),1,12.410000,'Hanari Carnes','Rua do Paço, 67','Rio de Janeiro','RJ','05454-876','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10646,'HUNGO',9,stringdate('1995.09.27 00:00.00 000000'),stringdate('1995.11.08 00:00.00 000000'),stringdate('1995.10.04 00:00.00 000000'),3,142.330000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10647,'QUEDE',4,stringdate('1995.09.27 00:00.00 000000'),stringdate('1995.10.11 00:00.00 000000'),stringdate('1995.10.04 00:00.00 000000'),2,45.540000,'Que Delícia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10648,'RICAR',5,stringdate('1995.09.28 00:00.00 000000'),stringdate('1995.11.09 00:00.00 000000'),stringdate('1995.10.10 00:00.00 000000'),2,14.250000,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10649,'MAISD',5,stringdate('1995.09.28 00:00.00 000000'),stringdate('1995.10.26 00:00.00 000000'),stringdate('1995.09.29 00:00.00 000000'),3,6.200000,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10650,'FAMIA',5,stringdate('1995.09.29 00:00.00 000000'),stringdate('1995.10.27 00:00.00 000000'),stringdate('1995.10.04 00:00.00 000000'),3,176.810000,'Familia Arquibaldo','Rua Orós, 92','São Paulo','SP','05442-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10651,'WANDK',8,stringdate('1995.10.02 00:00.00 000000'),stringdate('1995.10.30 00:00.00 000000'),stringdate('1995.10.12 00:00.00 000000'),2,20.600000,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10652,'GOURL',4,stringdate('1995.10.02 00:00.00 000000'),stringdate('1995.10.30 00:00.00 000000'),stringdate('1995.10.09 00:00.00 000000'),2,7.140000,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10653,'FRANK',1,stringdate('1995.10.03 00:00.00 000000'),stringdate('1995.10.31 00:00.00 000000'),stringdate('1995.10.20 00:00.00 000000'),1,93.250000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10654,'BERGS',5,stringdate('1995.10.03 00:00.00 000000'),stringdate('1995.10.31 00:00.00 000000'),stringdate('1995.10.12 00:00.00 000000'),1,55.260000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10655,'REGGC',1,stringdate('1995.10.04 00:00.00 000000'),stringdate('1995.11.01 00:00.00 000000'),stringdate('1995.10.12 00:00.00 000000'),2,4.410000,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10656,'GREAL',6,stringdate('1995.10.05 00:00.00 000000'),stringdate('1995.11.02 00:00.00 000000'),stringdate('1995.10.11 00:00.00 000000'),1,57.150000,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10657,'SAVEA',2,stringdate('1995.10.05 00:00.00 000000'),stringdate('1995.11.02 00:00.00 000000'),stringdate('1995.10.16 00:00.00 000000'),2,352.690000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10658,'QUICK',4,stringdate('1995.10.06 00:00.00 000000'),stringdate('1995.11.03 00:00.00 000000'),stringdate('1995.10.09 00:00.00 000000'),1,364.150000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10659,'QUEEN',7,stringdate('1995.10.06 00:00.00 000000'),stringdate('1995.11.03 00:00.00 000000'),stringdate('1995.10.11 00:00.00 000000'),2,105.810000,'Queen Cozinha','Alameda dos Canàrios, 891','São Paulo','SP','05487-020','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10660,'HUNGC',8,stringdate('1995.10.09 00:00.00 000000'),stringdate('1995.11.06 00:00.00 000000'),stringdate('1995.11.15 00:00.00 000000'),1,111.290000,'Hungry Coyote Import Store','City Center Plaza\15\12516 Main St.','Elgin','OR','97827','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10661,'HUNGO',7,stringdate('1995.10.10 00:00.00 000000'),stringdate('1995.11.07 00:00.00 000000'),stringdate('1995.10.16 00:00.00 000000'),3,17.550000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10662,'LONEP',3,stringdate('1995.10.10 00:00.00 000000'),stringdate('1995.11.07 00:00.00 000000'),stringdate('1995.10.19 00:00.00 000000'),2,1.280000,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10663,'BONAP',2,stringdate('1995.10.11 00:00.00 000000'),stringdate('1995.10.25 00:00.00 000000'),stringdate('1995.11.03 00:00.00 000000'),2,113.150000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10664,'FURIB',1,stringdate('1995.10.11 00:00.00 000000'),stringdate('1995.11.08 00:00.00 000000'),stringdate('1995.10.20 00:00.00 000000'),3,1.270000,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10665,'LONEP',1,stringdate('1995.10.12 00:00.00 000000'),stringdate('1995.11.09 00:00.00 000000'),stringdate('1995.10.18 00:00.00 000000'),2,26.310000,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10666,'RICSU',7,stringdate('1995.10.13 00:00.00 000000'),stringdate('1995.11.10 00:00.00 000000'),stringdate('1995.10.23 00:00.00 000000'),2,232.420000,'Richter Supermarkt','Starenweg 5','Genève',NULL,'1204','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10667,'ERNSH',7,stringdate('1995.10.13 00:00.00 000000'),stringdate('1995.11.10 00:00.00 000000'),stringdate('1995.10.20 00:00.00 000000'),1,78.090000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10668,'WANDK',1,stringdate('1995.10.16 00:00.00 000000'),stringdate('1995.11.13 00:00.00 000000'),stringdate('1995.10.24 00:00.00 000000'),2,47.220000,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10669,'SIMOB',2,stringdate('1995.10.16 00:00.00 000000'),stringdate('1995.11.13 00:00.00 000000'),stringdate('1995.10.23 00:00.00 000000'),1,24.390000,'Simons bistro','Vinbæltet 34','København',NULL,'1734','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10670,'FRANK',4,stringdate('1995.10.17 00:00.00 000000'),stringdate('1995.11.14 00:00.00 000000'),stringdate('1995.10.19 00:00.00 000000'),1,203.480000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10671,'FRANR',1,stringdate('1995.10.18 00:00.00 000000'),stringdate('1995.11.15 00:00.00 000000'),stringdate('1995.10.25 00:00.00 000000'),1,30.340000,'France restauration','54, rue Royale','Nantes',NULL,'44000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10672,'BERGS',9,stringdate('1995.10.18 00:00.00 000000'),stringdate('1995.11.01 00:00.00 000000'),stringdate('1995.10.27 00:00.00 000000'),2,95.750000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10673,'WILMK',2,stringdate('1995.10.19 00:00.00 000000'),stringdate('1995.11.16 00:00.00 000000'),stringdate('1995.10.20 00:00.00 000000'),1,22.760000,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10674,'ISLAT',4,stringdate('1995.10.19 00:00.00 000000'),stringdate('1995.11.16 00:00.00 000000'),stringdate('1995.10.31 00:00.00 000000'),2,0.900000,'Island Trading','Garden House\15\12Crowther Way','Cowes','Isle of Wight','PO31 7PJ','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10675,'FRANK',5,stringdate('1995.10.20 00:00.00 000000'),stringdate('1995.11.17 00:00.00 000000'),stringdate('1995.10.24 00:00.00 000000'),2,31.850000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10676,'TORTU',2,stringdate('1995.10.23 00:00.00 000000'),stringdate('1995.11.20 00:00.00 000000'),stringdate('1995.10.30 00:00.00 000000'),2,2.010000,'Tortuga Restaurante','Avda. Azteca 123','México D.F.',NULL,'05033','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10677,'ANTON',1,stringdate('1995.10.23 00:00.00 000000'),stringdate('1995.11.20 00:00.00 000000'),stringdate('1995.10.27 00:00.00 000000'),3,4.030000,'Antonio Moreno Taquería','Mataderos 2312','México D.F.',NULL,'05023','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10678,'SAVEA',7,stringdate('1995.10.24 00:00.00 000000'),stringdate('1995.11.21 00:00.00 000000'),stringdate('1995.11.16 00:00.00 000000'),3,388.980000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10679,'BLONP',8,stringdate('1995.10.24 00:00.00 000000'),stringdate('1995.11.21 00:00.00 000000'),stringdate('1995.10.31 00:00.00 000000'),3,27.940000,'Blondel père et fils','24, place Kléber','Strasbourg',NULL,'67000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10680,'OLDWO',1,stringdate('1995.10.25 00:00.00 000000'),stringdate('1995.11.22 00:00.00 000000'),stringdate('1995.10.27 00:00.00 000000'),1,26.610000,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10681,'GREAL',3,stringdate('1995.10.26 00:00.00 000000'),stringdate('1995.11.23 00:00.00 000000'),stringdate('1995.10.31 00:00.00 000000'),3,76.130000,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10682,'ANTON',3,stringdate('1995.10.26 00:00.00 000000'),stringdate('1995.11.23 00:00.00 000000'),stringdate('1995.11.01 00:00.00 000000'),2,36.130000,'Antonio Moreno Taquería','Mataderos 2312','México D.F.',NULL,'05023','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10683,'DUMON',2,stringdate('1995.10.27 00:00.00 000000'),stringdate('1995.11.24 00:00.00 000000'),stringdate('1995.11.01 00:00.00 000000'),1,4.400000,'Du monde entier','67, rue des Cinquante Otages','Nantes',NULL,'44000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10684,'OTTIK',3,stringdate('1995.10.27 00:00.00 000000'),stringdate('1995.11.24 00:00.00 000000'),stringdate('1995.10.31 00:00.00 000000'),1,145.630000,'Ottilies Käseladen','Mehrheimerstr. 369','Köln',NULL,'50739','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10685,'GOURL',4,stringdate('1995.10.30 00:00.00 000000'),stringdate('1995.11.13 00:00.00 000000'),stringdate('1995.11.03 00:00.00 000000'),2,33.750000,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10686,'PICCO',2,stringdate('1995.10.31 00:00.00 000000'),stringdate('1995.11.28 00:00.00 000000'),stringdate('1995.11.08 00:00.00 000000'),1,96.500000,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10687,'HUNGO',9,stringdate('1995.10.31 00:00.00 000000'),stringdate('1995.11.28 00:00.00 000000'),stringdate('1995.11.30 00:00.00 000000'),2,296.430000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10688,'VAFFE',4,stringdate('1995.11.01 00:00.00 000000'),stringdate('1995.11.15 00:00.00 000000'),stringdate('1995.11.07 00:00.00 000000'),2,299.090000,'Vaffeljernet','Smagsløget 45','Århus',NULL,'8200','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10689,'BERGS',1,stringdate('1995.11.01 00:00.00 000000'),stringdate('1995.11.29 00:00.00 000000'),stringdate('1995.11.07 00:00.00 000000'),2,13.420000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10690,'HANAR',1,stringdate('1995.11.02 00:00.00 000000'),stringdate('1995.11.30 00:00.00 000000'),stringdate('1995.11.03 00:00.00 000000'),1,15.800000,'Hanari Carnes','Rua do Paço, 67','Rio de Janeiro','RJ','05454-876','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10691,'QUICK',2,stringdate('1995.11.03 00:00.00 000000'),stringdate('1995.12.15 00:00.00 000000'),stringdate('1995.11.22 00:00.00 000000'),2,810.050000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10692,'ALFKI',4,stringdate('1995.11.03 00:00.00 000000'),stringdate('1995.12.01 00:00.00 000000'),stringdate('1995.11.13 00:00.00 000000'),2,61.020000,'Alfred\47s Futterkiste','Obere Str. 57','Berlin',NULL,'12209','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10693,'WHITC',3,stringdate('1995.11.06 00:00.00 000000'),stringdate('1995.11.20 00:00.00 000000'),stringdate('1995.11.10 00:00.00 000000'),3,139.340000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10694,'QUICK',8,stringdate('1995.11.06 00:00.00 000000'),stringdate('1995.12.04 00:00.00 000000'),stringdate('1995.11.09 00:00.00 000000'),3,398.360000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10695,'WILMK',7,stringdate('1995.11.07 00:00.00 000000'),stringdate('1995.12.19 00:00.00 000000'),stringdate('1995.11.14 00:00.00 000000'),1,16.720000,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10696,'WHITC',8,stringdate('1995.11.08 00:00.00 000000'),stringdate('1995.12.20 00:00.00 000000'),stringdate('1995.11.14 00:00.00 000000'),3,102.550000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10697,'LINOD',3,stringdate('1995.11.08 00:00.00 000000'),stringdate('1995.12.06 00:00.00 000000'),stringdate('1995.11.14 00:00.00 000000'),1,45.520000,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10698,'ERNSH',4,stringdate('1995.11.09 00:00.00 000000'),stringdate('1995.12.07 00:00.00 000000'),stringdate('1995.11.17 00:00.00 000000'),1,272.470000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10699,'MORGK',3,stringdate('1995.11.09 00:00.00 000000'),stringdate('1995.12.07 00:00.00 000000'),stringdate('1995.11.13 00:00.00 000000'),3,0.580000,'Morgenstern Gesundkost','Heerstr. 22','Leipzig',NULL,'04179','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10700,'SAVEA',3,stringdate('1995.11.10 00:00.00 000000'),stringdate('1995.12.08 00:00.00 000000'),stringdate('1995.11.16 00:00.00 000000'),1,65.100000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10701,'HUNGO',6,stringdate('1995.11.13 00:00.00 000000'),stringdate('1995.11.27 00:00.00 000000'),stringdate('1995.11.15 00:00.00 000000'),3,220.310000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10702,'ALFKI',4,stringdate('1995.11.13 00:00.00 000000'),stringdate('1995.12.25 00:00.00 000000'),stringdate('1995.11.21 00:00.00 000000'),1,23.940000,'Alfred\47s Futterkiste','Obere Str. 57','Berlin',NULL,'12209','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10703,'FOLKO',6,stringdate('1995.11.14 00:00.00 000000'),stringdate('1995.12.12 00:00.00 000000'),stringdate('1995.11.20 00:00.00 000000'),2,152.300000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10704,'QUEEN',6,stringdate('1995.11.14 00:00.00 000000'),stringdate('1995.12.12 00:00.00 000000'),stringdate('1995.12.08 00:00.00 000000'),1,4.780000,'Queen Cozinha','Alameda dos Canàrios, 891','São Paulo','SP','05487-020','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10705,'HILAA',9,stringdate('1995.11.15 00:00.00 000000'),stringdate('1995.12.13 00:00.00 000000'),stringdate('1995.12.19 00:00.00 000000'),2,3.520000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10706,'OLDWO',8,stringdate('1995.11.16 00:00.00 000000'),stringdate('1995.12.14 00:00.00 000000'),stringdate('1995.11.21 00:00.00 000000'),3,135.630000,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10707,'AROUT',4,stringdate('1995.11.16 00:00.00 000000'),stringdate('1995.11.30 00:00.00 000000'),stringdate('1995.11.23 00:00.00 000000'),3,21.740000,'Around the Horn','Brook Farm\15\12Stratford St. Mary','Colchester','Essex','CO7 6JX','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10708,'THEBI',6,stringdate('1995.11.17 00:00.00 000000'),stringdate('1995.12.29 00:00.00 000000'),stringdate('1995.12.06 00:00.00 000000'),2,2.960000,'The Big Cheese','89 Jefferson Way\15\12Suite 2','Portland','OR','97201','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10709,'GOURL',1,stringdate('1995.11.17 00:00.00 000000'),stringdate('1995.12.15 00:00.00 000000'),stringdate('1995.12.21 00:00.00 000000'),3,210.800000,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10710,'FRANS',1,stringdate('1995.11.20 00:00.00 000000'),stringdate('1995.12.18 00:00.00 000000'),stringdate('1995.11.23 00:00.00 000000'),1,4.980000,'Franchi S.p.A.','Via Monte Bianco 34','Torino',NULL,'10100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10711,'SAVEA',5,stringdate('1995.11.21 00:00.00 000000'),stringdate('1996.01.02 00:00.00 000000'),stringdate('1995.11.29 00:00.00 000000'),2,52.410000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10712,'HUNGO',3,stringdate('1995.11.21 00:00.00 000000'),stringdate('1995.12.19 00:00.00 000000'),stringdate('1995.12.01 00:00.00 000000'),1,89.930000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10713,'SAVEA',1,stringdate('1995.11.22 00:00.00 000000'),stringdate('1995.12.20 00:00.00 000000'),stringdate('1995.11.24 00:00.00 000000'),1,167.050000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10714,'SAVEA',5,stringdate('1995.11.22 00:00.00 000000'),stringdate('1995.12.20 00:00.00 000000'),stringdate('1995.11.27 00:00.00 000000'),3,24.490000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10715,'BONAP',3,stringdate('1995.11.23 00:00.00 000000'),stringdate('1995.12.07 00:00.00 000000'),stringdate('1995.11.29 00:00.00 000000'),1,63.200000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10716,'RANCH',4,stringdate('1995.11.24 00:00.00 000000'),stringdate('1995.12.22 00:00.00 000000'),stringdate('1995.11.27 00:00.00 000000'),2,22.570000,'Rancho grande','Av. del Libertador 900','Buenos Aires',NULL,'1010','Argentina');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10717,'FRANK',1,stringdate('1995.11.24 00:00.00 000000'),stringdate('1995.12.22 00:00.00 000000'),stringdate('1995.11.29 00:00.00 000000'),2,59.250000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10718,'KOENE',1,stringdate('1995.11.27 00:00.00 000000'),stringdate('1995.12.25 00:00.00 000000'),stringdate('1995.11.29 00:00.00 000000'),3,170.880000,'Königlich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10719,'LETSS',8,stringdate('1995.11.27 00:00.00 000000'),stringdate('1995.12.25 00:00.00 000000'),stringdate('1995.12.06 00:00.00 000000'),2,51.440000,'Let\47s Stop N Shop','87 Polk St.\15\12Suite 5','San Francisco','CA','94117','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10720,'QUEDE',8,stringdate('1995.11.28 00:00.00 000000'),stringdate('1995.12.12 00:00.00 000000'),stringdate('1995.12.06 00:00.00 000000'),2,9.530000,'Que Delícia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10721,'QUICK',5,stringdate('1995.11.29 00:00.00 000000'),stringdate('1995.12.27 00:00.00 000000'),stringdate('1995.12.01 00:00.00 000000'),3,48.920000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10722,'SAVEA',8,stringdate('1995.11.29 00:00.00 000000'),stringdate('1996.01.10 00:00.00 000000'),stringdate('1995.12.05 00:00.00 000000'),1,74.580000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10723,'WHITC',3,stringdate('1995.11.30 00:00.00 000000'),stringdate('1995.12.28 00:00.00 000000'),stringdate('1995.12.26 00:00.00 000000'),1,21.720000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10724,'MEREP',8,stringdate('1995.11.30 00:00.00 000000'),stringdate('1996.01.11 00:00.00 000000'),stringdate('1995.12.06 00:00.00 000000'),2,57.750000,'Mère Paillarde','43 rue St. Laurent','Montréal','Québec','H1J 1C3','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10725,'FAMIA',4,stringdate('1995.12.01 00:00.00 000000'),stringdate('1995.12.29 00:00.00 000000'),stringdate('1995.12.06 00:00.00 000000'),3,10.830000,'Familia Arquibaldo','Rua Orós, 92','São Paulo','SP','05442-030','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10726,'EASTC',4,stringdate('1995.12.04 00:00.00 000000'),stringdate('1995.12.18 00:00.00 000000'),stringdate('1996.01.05 00:00.00 000000'),1,16.560000,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10727,'REGGC',2,stringdate('1995.12.04 00:00.00 000000'),stringdate('1996.01.01 00:00.00 000000'),stringdate('1996.01.05 00:00.00 000000'),1,89.900000,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10728,'QUEEN',4,stringdate('1995.12.05 00:00.00 000000'),stringdate('1996.01.02 00:00.00 000000'),stringdate('1995.12.12 00:00.00 000000'),2,58.330000,'Queen Cozinha','Alameda dos Canàrios, 891','São Paulo','SP','05487-020','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10729,'LINOD',8,stringdate('1995.12.05 00:00.00 000000'),stringdate('1996.01.16 00:00.00 000000'),stringdate('1995.12.15 00:00.00 000000'),3,141.060000,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10730,'BONAP',5,stringdate('1995.12.06 00:00.00 000000'),stringdate('1996.01.03 00:00.00 000000'),stringdate('1995.12.15 00:00.00 000000'),1,20.120000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10731,'CHOPS',7,stringdate('1995.12.07 00:00.00 000000'),stringdate('1996.01.04 00:00.00 000000'),stringdate('1995.12.15 00:00.00 000000'),1,96.650000,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10732,'BONAP',3,stringdate('1995.12.07 00:00.00 000000'),stringdate('1996.01.04 00:00.00 000000'),stringdate('1995.12.08 00:00.00 000000'),1,16.970000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10733,'BERGS',1,stringdate('1995.12.08 00:00.00 000000'),stringdate('1996.01.05 00:00.00 000000'),stringdate('1995.12.11 00:00.00 000000'),3,110.110000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10734,'GOURL',2,stringdate('1995.12.08 00:00.00 000000'),stringdate('1996.01.05 00:00.00 000000'),stringdate('1995.12.13 00:00.00 000000'),3,1.630000,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10735,'LETSS',6,stringdate('1995.12.11 00:00.00 000000'),stringdate('1996.01.08 00:00.00 000000'),stringdate('1995.12.22 00:00.00 000000'),2,45.970000,'Let\47s Stop N Shop','87 Polk St.\15\12Suite 5','San Francisco','CA','94117','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10736,'HUNGO',9,stringdate('1995.12.12 00:00.00 000000'),stringdate('1996.01.09 00:00.00 000000'),stringdate('1995.12.22 00:00.00 000000'),2,44.100000,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10737,'VINET',2,stringdate('1995.12.12 00:00.00 000000'),stringdate('1996.01.09 00:00.00 000000'),stringdate('1995.12.19 00:00.00 000000'),2,7.790000,'Vins et alcools Chevalier','59 rue de l\47Abbaye','Reims',NULL,'51100','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10738,'SPECD',2,stringdate('1995.12.13 00:00.00 000000'),stringdate('1996.01.10 00:00.00 000000'),stringdate('1995.12.19 00:00.00 000000'),1,2.910000,'Spécialités du monde','25, rue Lauriston','Paris',NULL,'75016','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10739,'VINET',3,stringdate('1995.12.13 00:00.00 000000'),stringdate('1996.01.10 00:00.00 000000'),stringdate('1995.12.18 00:00.00 000000'),3,11.080000,'Vins et alcools Chevalier','59 rue de l\47Abbaye','Reims',NULL,'51100','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10740,'WHITC',4,stringdate('1995.12.14 00:00.00 000000'),stringdate('1996.01.11 00:00.00 000000'),stringdate('1995.12.26 00:00.00 000000'),2,81.880000,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10741,'AROUT',4,stringdate('1995.12.15 00:00.00 000000'),stringdate('1995.12.29 00:00.00 000000'),stringdate('1995.12.19 00:00.00 000000'),3,10.960000,'Around the Horn','Brook Farm\15\12Stratford St. Mary','Colchester','Essex','CO7 6JX','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10742,'BOTTM',3,stringdate('1995.12.15 00:00.00 000000'),stringdate('1996.01.12 00:00.00 000000'),stringdate('1995.12.19 00:00.00 000000'),3,243.730000,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10743,'AROUT',1,stringdate('1995.12.18 00:00.00 000000'),stringdate('1996.01.15 00:00.00 000000'),stringdate('1995.12.22 00:00.00 000000'),2,23.720000,'Around the Horn','Brook Farm\15\12Stratford St. Mary','Colchester','Essex','CO7 6JX','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10744,'VAFFE',6,stringdate('1995.12.18 00:00.00 000000'),stringdate('1996.01.15 00:00.00 000000'),stringdate('1995.12.25 00:00.00 000000'),1,69.190000,'Vaffeljernet','Smagsløget 45','Århus',NULL,'8200','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10745,'QUICK',9,stringdate('1995.12.19 00:00.00 000000'),stringdate('1996.01.16 00:00.00 000000'),stringdate('1995.12.28 00:00.00 000000'),1,3.520000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10746,'CHOPS',1,stringdate('1995.12.20 00:00.00 000000'),stringdate('1996.01.17 00:00.00 000000'),stringdate('1995.12.22 00:00.00 000000'),3,31.430000,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10747,'PICCO',6,stringdate('1995.12.20 00:00.00 000000'),stringdate('1996.01.17 00:00.00 000000'),stringdate('1995.12.27 00:00.00 000000'),1,117.330000,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10748,'SAVEA',3,stringdate('1995.12.21 00:00.00 000000'),stringdate('1996.01.18 00:00.00 000000'),stringdate('1995.12.29 00:00.00 000000'),1,232.550000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10749,'ISLAT',4,stringdate('1995.12.21 00:00.00 000000'),stringdate('1996.01.18 00:00.00 000000'),stringdate('1996.01.19 00:00.00 000000'),2,61.530000,'Island Trading','Garden House\15\12Crowther Way','Cowes','Isle of Wight','PO31 7PJ','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10750,'WARTH',9,stringdate('1995.12.22 00:00.00 000000'),stringdate('1996.01.19 00:00.00 000000'),stringdate('1995.12.25 00:00.00 000000'),1,79.300000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10751,'RICSU',3,stringdate('1995.12.25 00:00.00 000000'),stringdate('1996.01.22 00:00.00 000000'),stringdate('1996.01.03 00:00.00 000000'),3,130.790000,'Richter Supermarkt','Starenweg 5','Genève',NULL,'1204','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10752,'NORTS',2,stringdate('1995.12.25 00:00.00 000000'),stringdate('1996.01.22 00:00.00 000000'),stringdate('1995.12.29 00:00.00 000000'),3,1.390000,'North/South','South House\15\12300 Queensbridge','London',NULL,'SW7 1RZ','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10753,'FRANS',3,stringdate('1995.12.26 00:00.00 000000'),stringdate('1996.01.23 00:00.00 000000'),stringdate('1995.12.28 00:00.00 000000'),1,7.700000,'Franchi S.p.A.','Via Monte Bianco 34','Torino',NULL,'10100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10754,'MAGAA',6,stringdate('1995.12.26 00:00.00 000000'),stringdate('1996.01.23 00:00.00 000000'),stringdate('1995.12.28 00:00.00 000000'),3,2.380000,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10755,'BONAP',4,stringdate('1995.12.27 00:00.00 000000'),stringdate('1996.01.24 00:00.00 000000'),stringdate('1995.12.29 00:00.00 000000'),2,16.710000,'Bon app\47','12, rue des Bouchers','Marseille',NULL,'13008','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10756,'SPLIR',8,stringdate('1995.12.28 00:00.00 000000'),stringdate('1996.01.25 00:00.00 000000'),stringdate('1996.01.02 00:00.00 000000'),2,73.210000,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10757,'SAVEA',6,stringdate('1995.12.28 00:00.00 000000'),stringdate('1996.01.25 00:00.00 000000'),stringdate('1996.01.15 00:00.00 000000'),1,8.190000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10758,'RICSU',3,stringdate('1995.12.29 00:00.00 000000'),stringdate('1996.01.26 00:00.00 000000'),stringdate('1996.01.04 00:00.00 000000'),3,138.170000,'Richter Supermarkt','Starenweg 5','Genève',NULL,'1204','Switzerland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10759,'ANATR',3,stringdate('1995.12.29 00:00.00 000000'),stringdate('1996.01.26 00:00.00 000000'),stringdate('1996.01.12 00:00.00 000000'),3,11.990000,'Ana Trujillo Emparedados y helados','Avda. de la Constitución 2222','México D.F.',NULL,'05021','Mexico');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10760,'MAISD',4,stringdate('1996.01.01 00:00.00 000000'),stringdate('1996.01.29 00:00.00 000000'),stringdate('1996.01.10 00:00.00 000000'),1,155.640000,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10761,'RATTC',5,stringdate('1996.01.02 00:00.00 000000'),stringdate('1996.01.30 00:00.00 000000'),stringdate('1996.01.08 00:00.00 000000'),2,18.660000,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10762,'FOLKO',3,stringdate('1996.01.02 00:00.00 000000'),stringdate('1996.01.30 00:00.00 000000'),stringdate('1996.01.09 00:00.00 000000'),1,328.740000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10763,'FOLIG',3,stringdate('1996.01.03 00:00.00 000000'),stringdate('1996.01.31 00:00.00 000000'),stringdate('1996.01.08 00:00.00 000000'),3,37.350000,'Folies gourmandes','184, chaussée de Tournai','Lille',NULL,'59000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10764,'ERNSH',6,stringdate('1996.01.03 00:00.00 000000'),stringdate('1996.01.31 00:00.00 000000'),stringdate('1996.01.08 00:00.00 000000'),3,145.450000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10765,'QUICK',3,stringdate('1996.01.04 00:00.00 000000'),stringdate('1996.02.01 00:00.00 000000'),stringdate('1996.01.09 00:00.00 000000'),3,42.740000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10766,'OTTIK',4,stringdate('1996.01.05 00:00.00 000000'),stringdate('1996.02.02 00:00.00 000000'),stringdate('1996.01.09 00:00.00 000000'),1,157.550000,'Ottilies Käseladen','Mehrheimerstr. 369','Köln',NULL,'50739','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10767,'SUPRD',4,stringdate('1996.01.05 00:00.00 000000'),stringdate('1996.02.02 00:00.00 000000'),stringdate('1996.01.15 00:00.00 000000'),3,1.590000,'Suprêmes délices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10768,'AROUT',3,stringdate('1996.01.08 00:00.00 000000'),stringdate('1996.02.05 00:00.00 000000'),stringdate('1996.01.15 00:00.00 000000'),2,146.320000,'Around the Horn','Brook Farm\15\12Stratford St. Mary','Colchester','Essex','CO7 6JX','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10769,'VAFFE',3,stringdate('1996.01.08 00:00.00 000000'),stringdate('1996.02.05 00:00.00 000000'),stringdate('1996.01.12 00:00.00 000000'),1,65.060000,'Vaffeljernet','Smagsløget 45','Århus',NULL,'8200','Denmark');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10770,'HANAR',8,stringdate('1996.01.09 00:00.00 000000'),stringdate('1996.02.06 00:00.00 000000'),stringdate('1996.01.17 00:00.00 000000'),3,5.320000,'Hanari Carnes','Rua do Paço, 67','Rio de Janeiro','RJ','05454-876','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10771,'ERNSH',9,stringdate('1996.01.10 00:00.00 000000'),stringdate('1996.02.07 00:00.00 000000'),stringdate('1996.02.02 00:00.00 000000'),2,11.190000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10772,'LEHMS',3,stringdate('1996.01.10 00:00.00 000000'),stringdate('1996.02.07 00:00.00 000000'),stringdate('1996.01.19 00:00.00 000000'),2,91.280000,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10773,'ERNSH',1,stringdate('1996.01.11 00:00.00 000000'),stringdate('1996.02.08 00:00.00 000000'),stringdate('1996.01.16 00:00.00 000000'),3,96.430000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10774,'FOLKO',4,stringdate('1996.01.11 00:00.00 000000'),stringdate('1996.01.25 00:00.00 000000'),stringdate('1996.01.12 00:00.00 000000'),1,48.200000,'Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10775,'THECR',7,stringdate('1996.01.12 00:00.00 000000'),stringdate('1996.02.09 00:00.00 000000'),stringdate('1996.01.26 00:00.00 000000'),1,20.250000,'The Cracker Box','55 Grizzly Peak Rd.','Butte','MT','59801','United States');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10776,'ERNSH',1,stringdate('1996.01.15 00:00.00 000000'),stringdate('1996.02.12 00:00.00 000000'),stringdate('1996.01.18 00:00.00 000000'),3,351.530000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10777,'GOURL',7,stringdate('1996.01.15 00:00.00 000000'),stringdate('1996.01.29 00:00.00 000000'),stringdate('1996.02.21 00:00.00 000000'),2,3.010000,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10778,'BERGS',3,stringdate('1996.01.16 00:00.00 000000'),stringdate('1996.02.13 00:00.00 000000'),stringdate('1996.01.24 00:00.00 000000'),1,6.790000,'Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Sweden');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10779,'MORGK',3,stringdate('1996.01.16 00:00.00 000000'),stringdate('1996.02.13 00:00.00 000000'),stringdate('1996.02.14 00:00.00 000000'),2,58.130000,'Morgenstern Gesundkost','Heerstr. 22','Leipzig',NULL,'04179','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10780,'LILAS',2,stringdate('1996.01.16 00:00.00 000000'),stringdate('1996.01.30 00:00.00 000000'),stringdate('1996.01.25 00:00.00 000000'),1,42.130000,'LILA-Supermercado','Carrera 52 con Ave. Bolívar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10781,'WARTH',2,stringdate('1996.01.17 00:00.00 000000'),stringdate('1996.02.14 00:00.00 000000'),stringdate('1996.01.19 00:00.00 000000'),3,73.160000,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10782,'CACTU',9,stringdate('1996.01.17 00:00.00 000000'),stringdate('1996.02.14 00:00.00 000000'),stringdate('1996.01.22 00:00.00 000000'),3,1.100000,'Cactus Comidas para llevar','Cerrito 333','Buenos Aires',NULL,'1010','Argentina');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10783,'HANAR',4,stringdate('1996.01.18 00:00.00 000000'),stringdate('1996.02.15 00:00.00 000000'),stringdate('1996.01.19 00:00.00 000000'),2,124.980000,'Hanari Carnes','Rua do Paço, 67','Rio de Janeiro','RJ','05454-876','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10784,'MAGAA',4,stringdate('1996.01.18 00:00.00 000000'),stringdate('1996.02.15 00:00.00 000000'),stringdate('1996.01.22 00:00.00 000000'),3,70.090000,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10785,'GROSR',1,stringdate('1996.01.18 00:00.00 000000'),stringdate('1996.02.15 00:00.00 000000'),stringdate('1996.01.24 00:00.00 000000'),3,1.510000,'GROSELLA-Restaurante','5ª Ave. Los Palos Grandes','Caracas','DF','1081','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10786,'QUEEN',8,stringdate('1996.01.19 00:00.00 000000'),stringdate('1996.02.16 00:00.00 000000'),stringdate('1996.01.23 00:00.00 000000'),1,110.870000,'Queen Cozinha','Alameda dos Canàrios, 891','São Paulo','SP','05487-020','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10787,'LAMAI',2,stringdate('1996.01.19 00:00.00 000000'),stringdate('1996.02.02 00:00.00 000000'),stringdate('1996.01.26 00:00.00 000000'),1,249.930000,'La maison d\47Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10788,'QUICK',1,stringdate('1996.01.22 00:00.00 000000'),stringdate('1996.02.19 00:00.00 000000'),stringdate('1996.02.19 00:00.00 000000'),2,42.700000,'QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10789,'FOLIG',1,stringdate('1996.01.22 00:00.00 000000'),stringdate('1996.02.19 00:00.00 000000'),stringdate('1996.01.31 00:00.00 000000'),2,100.600000,'Folies gourmandes','184, chaussée de Tournai','Lille',NULL,'59000','France');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10790,'GOURL',6,stringdate('1996.01.22 00:00.00 000000'),stringdate('1996.02.19 00:00.00 000000'),stringdate('1996.01.26 00:00.00 000000'),1,28.230000,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10791,'FRANK',6,stringdate('1996.01.23 00:00.00 000000'),stringdate('1996.02.20 00:00.00 000000'),stringdate('1996.02.01 00:00.00 000000'),2,16.850000,'Frankenversand','Berliner Platz 43','München',NULL,'80805','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10792,'WOLZA',1,stringdate('1996.01.23 00:00.00 000000'),stringdate('1996.02.20 00:00.00 000000'),stringdate('1996.01.31 00:00.00 000000'),3,23.790000,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10793,'AROUT',3,stringdate('1996.01.24 00:00.00 000000'),stringdate('1996.02.21 00:00.00 000000'),stringdate('1996.02.08 00:00.00 000000'),3,4.520000,'Around the Horn','Brook Farm\15\12Stratford St. Mary','Colchester','Essex','CO7 6JX','United Kingdom');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10794,'QUEDE',6,stringdate('1996.01.24 00:00.00 000000'),stringdate('1996.02.21 00:00.00 000000'),stringdate('1996.02.02 00:00.00 000000'),1,21.490000,'Que Delícia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10795,'ERNSH',8,stringdate('1996.01.24 00:00.00 000000'),stringdate('1996.02.21 00:00.00 000000'),stringdate('1996.02.20 00:00.00 000000'),2,126.660000,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10796,'HILAA',3,stringdate('1996.01.25 00:00.00 000000'),stringdate('1996.02.22 00:00.00 000000'),stringdate('1996.02.14 00:00.00 000000'),1,26.520000,'HILARIÓN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','Táchira','5022','Venezuela');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10797,'DRACD',7,stringdate('1996.01.25 00:00.00 000000'),stringdate('1996.02.22 00:00.00 000000'),stringdate('1996.02.05 00:00.00 000000'),2,33.350000,'Drachenblut Delikatessen','Walserweg 21','Aachen',NULL,'52066','Germany');
INSERT INTO Orders(OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry) VALUES(10798,'ISLAT',2,stringdate('1996.01.26 00:00.00 000000'),stringdate('1996.02.23 00:00.00 000000'),stringdate('1996.02.05 00:00.00 000000'),1,2.330000,'Island Trading','Garden House\15\12Crowther Way','Cowes','Isle of Wight','PO31 7PJ','United Kingdom');