-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQLPracticeProblems_PostgreSQL_PracticeDBSetup.sql
3384 lines (3338 loc) · 659 KB
/
SQLPracticeProblems_PostgreSQL_PracticeDBSetup.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
/****** Object: Table Categories ******/
CREATE TABLE Categories(
CategoryID SERIAL NOT NULL,
CategoryName VARCHAR(15) NOT NULL,
Description TEXT,
CONSTRAINT PK_Categories PRIMARY KEY (CategoryID)
);
/****** Object: Table CustomerGroupThresholds ******/
CREATE TABLE CustomerGroupThresholds(
CustomerGroupName VARCHAR(20),
RangeBottom MONEY,
RangeTop MONEY
);
/****** Object: Table Customers ******/
CREATE TABLE Customers(
CustomerID CHAR(5) NOT NULL,
CompanyName VARCHAR(40) NOT NULL,
ContactName VARCHAR(30),
ContactTitle VARCHAR(30),
Address VARCHAR(60),
City VARCHAR(15),
Region VARCHAR(15),
PostalCode VARCHAR(10),
Country VARCHAR(15),
Phone VARCHAR(24),
Fax VARCHAR(24),
CONSTRAINT PK_Customers PRIMARY KEY (CustomerID)
);
/****** Object: Table Employees ******/
CREATE TABLE Employees(
EmployeeID SERIAL NOT NULL,
LastName VARCHAR(20) NOT NULL,
FirstName VARCHAR(10) NOT NULL,
Title VARCHAR(30),
TitleOfCourtesy VARCHAR(25),
BirthDate TIMESTAMP,
HireDate TIMESTAMP,
Address VARCHAR(60),
City VARCHAR(15),
Region VARCHAR(15),
PostalCode VARCHAR(10),
Country VARCHAR(15),
HomePhone VARCHAR(24),
Extension VARCHAR(4),
Notes TEXT,
ReportsTo INT,
PhotoPath VARCHAR(255),
CONSTRAINT PK_Employees PRIMARY KEY (EmployeeID),
CONSTRAINT CK_Birthdate CHECK ((BirthDate < CURRENT_TIMESTAMP)),
CONSTRAINT FK_Employees_Employees FOREIGN KEY(ReportsTo) REFERENCES Employees
);
/****** Object: Table Shippers ******/
CREATE TABLE Shippers(
ShipperID SERIAL NOT NULL,
CompanyName VARCHAR(40) NOT NULL,
Phone VARCHAR(24),
CONSTRAINT PK_Shippers PRIMARY KEY (ShipperID)
);
/****** Object: Table Suppliers ******/
CREATE TABLE Suppliers(
SupplierID SERIAL NOT NULL,
CompanyName VARCHAR(40) NOT NULL,
ContactName VARCHAR(30),
ContactTitle VARCHAR(30),
Address VARCHAR(60),
City VARCHAR(15),
Region VARCHAR(15),
PostalCode VARCHAR(10),
Country VARCHAR(15),
Phone VARCHAR(24),
Fax VARCHAR(24),
HomePage TEXT,
CONSTRAINT PK_Suppliers PRIMARY KEY (SupplierID)
);
/****** Object: Table Products ******/
CREATE TABLE Products(
ProductID SERIAL NOT NULL,
ProductName VARCHAR(40) NOT NULL,
SupplierID INT,
CategoryID INT,
QuantityPerUnit VARCHAR(20),
UnitPrice MONEY DEFAULT 0,
UnitsInStock SMALLINT DEFAULT 0,
UnitsOnOrder SMALLINT DEFAULT 0,
ReorderLevel SMALLINT DEFAULT 0,
Discontinued BOOLEAN NOT NULL DEFAULT FALSE,
CONSTRAINT PK_Products PRIMARY KEY (ProductID),
CONSTRAINT FK_Products_Categories FOREIGN KEY(CategoryID) REFERENCES Categories,
CONSTRAINT FK_Products_Suppliers FOREIGN KEY(SupplierID) REFERENCES Suppliers,
CONSTRAINT CK_Products_UnitPrice CHECK ((UnitPrice >= 0::MONEY)),
CONSTRAINT CK_ReorderLevel CHECK ((ReorderLevel >= 0)),
CONSTRAINT CK_UnitsInStock CHECK ((UnitsInStock >= 0)),
CONSTRAINT CK_UnitsOnOrder CHECK ((UnitsOnOrder >= 0))
);
/****** Object: Table Orders ******/
CREATE TABLE Orders(
OrderID SERIAL NOT NULL,
CustomerID CHAR(5) NOT NULL,
EmployeeID INT,
OrderDate TIMESTAMP,
RequiredDate TIMESTAMP,
ShippedDate TIMESTAMP,
ShipVia INT,
Freight MONEY DEFAULT 0,
ShipName VARCHAR(40),
ShipAddress VARCHAR(60),
ShipCity VARCHAR(15),
ShipRegion VARCHAR(15),
ShipPostalCode VARCHAR(10),
ShipCountry VARCHAR(15),
CONSTRAINT PK_Orders PRIMARY KEY (OrderID),
CONSTRAINT FK_Orders_Customers FOREIGN KEY(CustomerID) REFERENCES Customers,
CONSTRAINT FK_Orders_Employees FOREIGN KEY(EmployeeID) REFERENCES Employees,
CONSTRAINT FK_Orders_Shippers FOREIGN KEY(ShipVia) REFERENCES Shippers
);
/****** Object: Table OrderDetails ******/
CREATE TABLE OrderDetails(
OrderID INT NOT NULL,
ProductID INT NOT NULL,
UnitPrice MONEY NOT NULL DEFAULT 0,
Quantity SMALLINT NOT NULL DEFAULT 1,
Discount REAL NOT NULL DEFAULT 0,
CONSTRAINT PK_OrderDetails PRIMARY KEY (OrderID, ProductID),
CONSTRAINT FK_OrderDetails_Orders FOREIGN KEY(OrderID) REFERENCES Orders,
CONSTRAINT FK_OrderDetails_Products FOREIGN KEY(ProductID) REFERENCES Products,
CONSTRAINT CK_Discount CHECK ((Discount >= 0 and Discount <= 1)),
CONSTRAINT CK_Quantity CHECK ((Quantity > 0)),
CONSTRAINT CK_UnitPrice CHECK ((UnitPrice >= 0::MONEY))
);
INSERT INTO Categories (CategoryID, CategoryName, Description) VALUES (1,'Beverages','Soft drinks, coffees, teas, beers, and ales');
INSERT INTO Categories (CategoryID, CategoryName, Description) VALUES (2,'Condiments','Sweet and savory sauces, relishes, spreads, and seasonings');
INSERT INTO Categories (CategoryID, CategoryName, Description) VALUES (3,'Confections','Desserts, candies, and sweet breads');
INSERT INTO Categories (CategoryID, CategoryName, Description) VALUES (4,'Dairy Products','Cheeses');
INSERT INTO Categories (CategoryID, CategoryName, Description) VALUES (5,'Grains/Cereals','Breads, crackers, pasta, and cereal');
INSERT INTO Categories (CategoryID, CategoryName, Description) VALUES (6,'Meat/Poultry','Prepared meats');
INSERT INTO Categories (CategoryID, CategoryName, Description) VALUES (7,'Produce','Dried fruit and bean curd');
INSERT INTO Categories (CategoryID, CategoryName, Description) VALUES (8,'Seafood','Seaweed and fish');
INSERT INTO CustomerGroupThresholds (CustomerGroupName, RangeBottom, RangeTop) VALUES ('Low', 0.0000, 999.9999);
INSERT INTO CustomerGroupThresholds (CustomerGroupName, RangeBottom, RangeTop) VALUES ('Medium', 1000.0000, 4999.9999);
INSERT INTO CustomerGroupThresholds (CustomerGroupName, RangeBottom, RangeTop) VALUES ('High', 5000.0000, 9999.9999);
INSERT INTO CustomerGroupThresholds (CustomerGroupName, RangeBottom, RangeTop) VALUES ('Very High', 10000.0000, 922337203685477.5807);
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','UK','(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','Blondesddsl pÿre et fils','Frédérique Citeaux','Marketing Manager','24, place Kléber','Strasbourg', NULL,'67000','France','88.60.15.31','88.60.15.32');
INSERT INTO Customers (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''','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''s Beverages','Victoria Ashworth','Sales Representative','Fauntleroy Circus','London', NULL,'EC2 5NT','UK','(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','Sao 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 12 Brewery','London', NULL,'WX1 6LT','UK','(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','UK','(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','Sao 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','USA','(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','HILARION-Abastos','Carlos HernÃíndez','Sales Representative','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristóbal','TÃíchira','5022','Venezuela','(5) 555-1340','(5) 555-1948');
INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) VALUES ('HUNGC','Hungry Coyote Import Store','Yoshi Latimer','Sales Representative','City Center Plaza 516 Main St.','Elgin','OR','97827','USA','(503) 555-6874','(503) 555-2376');
INSERT INTO Customers (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 Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK','(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''abondance','Daniel Tonini','Sales Representative','67, avenue de l''Europe','Versailles', NULL,'78000','France','30.59.84.10','30.59.85.11');
INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) VALUES ('LAMAI','La maison d''Asie','Annette Roulet','Sales Manager','1 rue Alsace-Lorraine','Toulouse', NULL,'31000','France','61.77.61.10','61.77.61.11');
INSERT INTO Customers (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','USA','(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''s Stop N Shop','Jaime Yorres','Owner','87 Polk St. Suite 5','San Francisco','CA','94117','USA','(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','USA','(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 300 Queensbridge','London', NULL,'SW7 1RZ','UK','(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 Piso 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','USA','(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','Sao 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','USA','(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','USA','(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','UK','(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','Kobenhavn', 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','USA','(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 Suite 2','Portland','OR','97201','USA','(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','USA','(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','Sao 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''s Head Gourmet Provisioners','Helvetius Nagy','Sales Associate','722 DaVinci Blvd.','Kirkland','WA','98034','USA','(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','Smagsloget 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''Abbaye','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. Suite 3B','Seattle','WA','98128','USA','(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');
INSERT INTO Employees (EmployeeID, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath) VALUES (2,'Fuller','Andrew','Vice President, Sales','Dr.', CAST('1970-02-19T00:00:00.000' AS TIMESTAMP), CAST('2010-08-14T00:00:00.000' AS TIMESTAMP),'908 W. Capital Way','Tacoma','WA','98401','USA','(206) 555-9482','3457','Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981. He is fluent in French and Italian and reads German. He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993. Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.', NULL,'http://accweb/emmployees/fuller.bmp');
INSERT INTO Employees (EmployeeID, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath) VALUES (1,'Davolio','Nancy','Sales Representative','Ms.', CAST('1966-12-08T00:00:00.000' AS TIMESTAMP), CAST('2010-05-01T00:00:00.000' AS TIMESTAMP),'507 - 20th Ave. E.
Apt. 2A','Seattle','WA','98122','USA','(206) 555-9857','5467','Education includes a BA in psychology from Colorado State University in 1970. She also completed "The Art of the Cold Call." Nancy is a member of Toastmasters International.', 2,'http://accweb/emmployees/davolio.bmp');
INSERT INTO Employees (EmployeeID, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath) VALUES (3,'Leverling','Janet','Sales Representative','Ms.', CAST('1981-08-30T00:00:00.000' AS TIMESTAMP), CAST('2010-04-01T00:00:00.000' AS TIMESTAMP),'722 Moss Bay Blvd.','Kirkland','WA','98033','USA','(206) 555-3412','3355','Janet has a BS degree in chemistry from Boston College (1984). She has also completed a certificate program in food retailing management. Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.', 2,'http://accweb/emmployees/leverling.bmp');
INSERT INTO Employees (EmployeeID, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath) VALUES (4,'Peacock','Margaret','Sales Representative','Mrs.', CAST('1955-09-19T00:00:00.000' AS TIMESTAMP), CAST('2011-05-03T00:00:00.000' AS TIMESTAMP),'4110 Old Redmond Rd.','Redmond','WA','98052','USA','(206) 555-8122','5176','Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966). She was assigned to the London office temporarily from July through November 1992.', 2,'http://accweb/emmployees/peacock.bmp');
INSERT INTO Employees (EmployeeID, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath) VALUES (5,'Buchanan','Steven','Sales Manager','Mr.', CAST('1973-03-04T00:00:00.000' AS TIMESTAMP), CAST('2011-10-17T00:00:00.000' AS TIMESTAMP),'14 Garrett Hill','London', NULL,'SW1 8JR','UK','(71) 555-4848','3453','Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976. Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London. He was promoted to sales manager in March 1993. Mr. Buchanan has completed the courses "Successful Telemarketing" and "International Sales Management." He is fluent in French.', 2,'http://accweb/emmployees/buchanan.bmp');
INSERT INTO Employees (EmployeeID, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath) VALUES (6,'Suyama','Michael','Sales Representative','Mr.', CAST('1981-07-02T00:00:00.000' AS TIMESTAMP), CAST('2011-10-17T00:00:00.000' AS TIMESTAMP),'Coventry House
Miner Rd.','London', NULL,'EC2 7JR','UK','(71) 555-7773','428','Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986). He has also taken the courses "Multi-Cultural Selling" and "Time Management for the Sales Professional." He is fluent in Japanese and can read and write French, Portuguese, and Spanish.', 5,'http://accweb/emmployees/davolio.bmp');
INSERT INTO Employees (EmployeeID, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath) VALUES (7,'King','Robert','Sales Representative','Mr.', CAST('1978-05-29T00:00:00.000' AS TIMESTAMP), CAST('2012-01-02T00:00:00.000' AS TIMESTAMP),'Edgeham Hollow
Winchester Way','London', NULL,'RG1 9SP','UK','(71) 555-5598','465','Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company. After completing a course entitled "Selling in Europe," he was transferred to the London office in March 1993.', 5,'http://accweb/emmployees/davolio.bmp');
INSERT INTO Employees (EmployeeID, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath) VALUES (8,'Callahan','Laura','Inside Sales Coordinator','Ms.', CAST('1976-01-09T00:00:00.000' AS TIMESTAMP), CAST('2012-03-05T00:00:00.000' AS TIMESTAMP),'4726 - 11th Ave. N.E.','Seattle','WA','98105','USA','(206) 555-1189','2344','Laura received a BA in psychology from the University of Washington. She has also completed a course in business French. She reads and writes French.', 2,'http://accweb/emmployees/davolio.bmp');
INSERT INTO Employees (EmployeeID, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath) VALUES (9,'Dodsworth','Anne','Sales Representative','Ms.', CAST('1984-01-27T00:00:00.000' AS TIMESTAMP), CAST('2012-11-15T00:00:00.000' AS TIMESTAMP),'7 Houndstooth Rd.','London', NULL,'WG2 7LT','UK','(71) 555-4444','452','Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German.', 5,'http://accweb/emmployees/davolio.bmp');
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');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10248,'VINET', 5, CAST('2014-07-04T08:00:00.000' AS TIMESTAMP), CAST('2014-08-01T00:00:00.000' AS TIMESTAMP), CAST('2014-07-16T00:00:00.000' AS TIMESTAMP), 3, 32.3800,'Vins et alcools Chevalier','59 rue de l''Abbaye','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, CAST('2014-07-05T04:00:00.000' AS TIMESTAMP), CAST('2014-08-16T00:00:00.000' AS TIMESTAMP), CAST('2014-07-10T00:00:00.000' AS TIMESTAMP), 1, 11.6100,'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, CAST('2014-07-08T15:00:00.000' AS TIMESTAMP), CAST('2014-08-05T00:00:00.000' AS TIMESTAMP), CAST('2014-07-12T00:00:00.000' AS TIMESTAMP), 2, 65.8300,'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, CAST('2014-07-08T14:00:00.000' AS TIMESTAMP), CAST('2014-08-05T00:00:00.000' AS TIMESTAMP), CAST('2014-07-15T00:00:00.000' AS TIMESTAMP), 1, 41.3400,'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, CAST('2014-07-09T01:00:00.000' AS TIMESTAMP), CAST('2014-08-06T00:00:00.000' AS TIMESTAMP), CAST('2014-07-11T00:00:00.000' AS TIMESTAMP), 2, 51.3000,'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, CAST('2014-07-10T08:00:00.000' AS TIMESTAMP), CAST('2014-07-24T00:00:00.000' AS TIMESTAMP), CAST('2014-07-16T00:00:00.000' AS TIMESTAMP), 2, 58.1700,'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, CAST('2014-07-11T02:00:00.000' AS TIMESTAMP), CAST('2014-08-08T00:00:00.000' AS TIMESTAMP), CAST('2014-07-23T00:00:00.000' AS TIMESTAMP), 2, 22.9800,'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, CAST('2014-07-12T20:00:00.000' AS TIMESTAMP), CAST('2014-08-09T00:00:00.000' AS TIMESTAMP), CAST('2014-07-15T00:00:00.000' AS TIMESTAMP), 3, 148.3300,'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, CAST('2014-07-15T22:00:00.000' AS TIMESTAMP), CAST('2014-08-12T00:00:00.000' AS TIMESTAMP), CAST('2014-07-17T00:00:00.000' AS TIMESTAMP), 2, 13.9700,'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, CAST('2014-07-16T15:00:00.000' AS TIMESTAMP), CAST('2014-08-13T00:00:00.000' AS TIMESTAMP), CAST('2014-07-22T00:00:00.000' AS TIMESTAMP), 3, 81.9100,'HILARION-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, CAST('2014-07-17T00:00:00.000' AS TIMESTAMP), CAST('2014-08-14T00:00:00.000' AS TIMESTAMP), CAST('2014-07-23T00:00:00.000' AS TIMESTAMP), 1, 140.5100,'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, CAST('2014-07-18T16:00:00.000' AS TIMESTAMP), CAST('2014-08-15T00:00:00.000' AS TIMESTAMP), CAST('2014-07-25T00:00:00.000' AS TIMESTAMP), 3, 3.2500,'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, CAST('2014-07-19T09:00:00.000' AS TIMESTAMP), CAST('2014-08-16T00:00:00.000' AS TIMESTAMP), CAST('2014-07-29T00:00:00.000' AS TIMESTAMP), 1, 55.0900,'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, CAST('2014-07-19T13:00:00.000' AS TIMESTAMP), CAST('2014-08-16T00:00:00.000' AS TIMESTAMP), CAST('2014-07-30T00:00:00.000' AS TIMESTAMP), 2, 3.0500,'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, CAST('2014-07-22T19:00:00.000' AS TIMESTAMP), CAST('2014-08-19T00:00:00.000' AS TIMESTAMP), CAST('2014-07-25T00:00:00.000' AS TIMESTAMP), 3, 48.2900,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10263,'ERNSH', 9, CAST('2014-07-23T10:00:00.000' AS TIMESTAMP), CAST('2014-08-20T00:00:00.000' AS TIMESTAMP), CAST('2014-07-31T00:00:00.000' AS TIMESTAMP), 3, 146.0600,'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, CAST('2014-07-24T22:00:00.000' AS TIMESTAMP), CAST('2014-08-21T00:00:00.000' AS TIMESTAMP), CAST('2014-08-23T00:00:00.000' AS TIMESTAMP), 3, 3.6700,'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, CAST('2014-07-25T21:00:00.000' AS TIMESTAMP), CAST('2014-08-22T00:00:00.000' AS TIMESTAMP), CAST('2014-08-12T00:00:00.000' AS TIMESTAMP), 1, 55.2800,'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, CAST('2014-07-26T14:00:00.000' AS TIMESTAMP), CAST('2014-09-06T00:00:00.000' AS TIMESTAMP), CAST('2014-07-31T00:00:00.000' AS TIMESTAMP), 3, 25.7300,'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, CAST('2014-07-29T14:00:00.000' AS TIMESTAMP), CAST('2014-08-26T00:00:00.000' AS TIMESTAMP), CAST('2014-08-06T00:00:00.000' AS TIMESTAMP), 1, 208.5800,'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, CAST('2014-07-30T15:00:00.000' AS TIMESTAMP), CAST('2014-08-27T00:00:00.000' AS TIMESTAMP), CAST('2014-08-02T00:00:00.000' AS TIMESTAMP), 3, 66.2900,'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, CAST('2014-07-31T00:00:00.000' AS TIMESTAMP), CAST('2014-08-14T00:00:00.000' AS TIMESTAMP), CAST('2014-08-09T00:00:00.000' AS TIMESTAMP), 1, 4.5600,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10270,'WARTH', 1, CAST('2014-08-01T19:00:00.000' AS TIMESTAMP), CAST('2014-08-29T00:00:00.000' AS TIMESTAMP), CAST('2014-08-02T00:00:00.000' AS TIMESTAMP), 1, 136.5400,'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, CAST('2014-08-01T05:00:00.000' AS TIMESTAMP), CAST('2014-08-29T00:00:00.000' AS TIMESTAMP), CAST('2014-08-30T00:00:00.000' AS TIMESTAMP), 2, 4.5400,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10272,'RATTC', 6, CAST('2014-08-02T03:00:00.000' AS TIMESTAMP), CAST('2014-08-30T00:00:00.000' AS TIMESTAMP), CAST('2014-08-06T00:00:00.000' AS TIMESTAMP), 2, 98.0300,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10273,'QUICK', 3, CAST('2014-08-05T13:00:00.000' AS TIMESTAMP), CAST('2014-09-02T00:00:00.000' AS TIMESTAMP), CAST('2014-08-12T00:00:00.000' AS TIMESTAMP), 3, 76.0700,'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, CAST('2014-08-06T12:00:00.000' AS TIMESTAMP), CAST('2014-09-03T00:00:00.000' AS TIMESTAMP), CAST('2014-08-16T00:00:00.000' AS TIMESTAMP), 1, 6.0100,'Vins et alcools Chevalier','59 rue de l''Abbaye','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, CAST('2014-08-07T06:00:00.000' AS TIMESTAMP), CAST('2014-09-04T00:00:00.000' AS TIMESTAMP), CAST('2014-08-09T00:00:00.000' AS TIMESTAMP), 1, 26.9300,'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, CAST('2014-08-08T18:00:00.000' AS TIMESTAMP), CAST('2014-08-22T00:00:00.000' AS TIMESTAMP), CAST('2014-08-14T00:00:00.000' AS TIMESTAMP), 3, 13.8400,'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, CAST('2014-08-09T11:00:00.000' AS TIMESTAMP), CAST('2014-09-06T00:00:00.000' AS TIMESTAMP), CAST('2014-08-13T00:00:00.000' AS TIMESTAMP), 3, 125.7700,'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, CAST('2014-08-12T14:00:00.000' AS TIMESTAMP), CAST('2014-09-09T00:00:00.000' AS TIMESTAMP), CAST('2014-08-16T00:00:00.000' AS TIMESTAMP), 2, 92.6900,'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, CAST('2014-08-13T15:00:00.000' AS TIMESTAMP), CAST('2014-09-10T00:00:00.000' AS TIMESTAMP), CAST('2014-08-16T00:00:00.000' AS TIMESTAMP), 2, 25.8300,'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, CAST('2014-08-14T10:00:00.000' AS TIMESTAMP), CAST('2014-09-11T00:00:00.000' AS TIMESTAMP), CAST('2014-09-12T00:00:00.000' AS TIMESTAMP), 1, 8.9800,'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, CAST('2014-08-14T14:00:00.000' AS TIMESTAMP), CAST('2014-08-28T00:00:00.000' AS TIMESTAMP), CAST('2014-08-21T00:00:00.000' AS TIMESTAMP), 1, 2.9400,'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, CAST('2014-08-15T00:00:00.000' AS TIMESTAMP), CAST('2014-09-12T00:00:00.000' AS TIMESTAMP), CAST('2014-08-21T00:00:00.000' AS TIMESTAMP), 1, 12.6900,'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, CAST('2014-08-16T17:00:00.000' AS TIMESTAMP), CAST('2014-09-13T00:00:00.000' AS TIMESTAMP), CAST('2014-08-23T00:00:00.000' AS TIMESTAMP), 3, 84.8100,'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, CAST('2014-08-19T00:00:00.000' AS TIMESTAMP), CAST('2014-09-16T00:00:00.000' AS TIMESTAMP), CAST('2014-08-27T00:00:00.000' AS TIMESTAMP), 1, 76.5600,'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, CAST('2014-08-20T02:00:00.000' AS TIMESTAMP), CAST('2014-09-17T00:00:00.000' AS TIMESTAMP), CAST('2014-08-26T00:00:00.000' AS TIMESTAMP), 2, 76.8300,'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, CAST('2014-08-21T01:00:00.000' AS TIMESTAMP), CAST('2014-09-18T00:00:00.000' AS TIMESTAMP), CAST('2014-08-30T00:00:00.000' AS TIMESTAMP), 3, 229.2400,'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, CAST('2014-08-22T07:00:00.000' AS TIMESTAMP), CAST('2014-09-19T00:00:00.000' AS TIMESTAMP), CAST('2014-08-28T00:00:00.000' AS TIMESTAMP), 3, 12.7600,'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, CAST('2014-08-23T16:00:00.000' AS TIMESTAMP), CAST('2014-09-20T00:00:00.000' AS TIMESTAMP), CAST('2014-09-03T00:00:00.000' AS TIMESTAMP), 1, 7.4500,'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, CAST('2014-08-26T11:00:00.000' AS TIMESTAMP), CAST('2014-09-23T00:00:00.000' AS TIMESTAMP), CAST('2014-08-28T00:00:00.000' AS TIMESTAMP), 3, 22.7700,'B''s Beverages','Fauntleroy Circus','London', NULL,'EC2 5NT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10290,'COMMI', 8, CAST('2014-08-27T09:00:00.000' AS TIMESTAMP), CAST('2014-09-24T00:00:00.000' AS TIMESTAMP), CAST('2014-09-03T00:00:00.000' AS TIMESTAMP), 1, 79.7000,'Comércio Mineiro','Av. dos Lusáadas, 23','Sao 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, CAST('2014-08-27T19:00:00.000' AS TIMESTAMP), CAST('2014-09-24T00:00:00.000' AS TIMESTAMP), CAST('2014-09-04T00:00:00.000' AS TIMESTAMP), 2, 6.4000,'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, CAST('2014-08-28T20:00:00.000' AS TIMESTAMP), CAST('2014-09-25T00:00:00.000' AS TIMESTAMP), CAST('2014-09-02T00:00:00.000' AS TIMESTAMP), 2, 1.3500,'Tradiúao Hipermercados','Av. Inìs de Castro, 414','Sao 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, CAST('2014-08-29T15:00:00.000' AS TIMESTAMP), CAST('2014-09-26T00:00:00.000' AS TIMESTAMP), CAST('2014-09-11T00:00:00.000' AS TIMESTAMP), 3, 21.1800,'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, CAST('2014-08-30T05:00:00.000' AS TIMESTAMP), CAST('2014-09-27T00:00:00.000' AS TIMESTAMP), CAST('2014-09-05T00:00:00.000' AS TIMESTAMP), 2, 147.2600,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10295,'VINET', 2, CAST('2014-09-02T08:00:00.000' AS TIMESTAMP), CAST('2014-09-30T00:00:00.000' AS TIMESTAMP), CAST('2014-09-10T00:00:00.000' AS TIMESTAMP), 2, 1.1500,'Vins et alcools Chevalier','59 rue de l''Abbaye','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, CAST('2014-09-03T00:00:00.000' AS TIMESTAMP), CAST('2014-10-01T00:00:00.000' AS TIMESTAMP), CAST('2014-09-11T00:00:00.000' AS TIMESTAMP), 1, 0.1200,'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, CAST('2014-09-04T21:00:00.000' AS TIMESTAMP), CAST('2014-10-16T00:00:00.000' AS TIMESTAMP), CAST('2014-09-10T00:00:00.000' AS TIMESTAMP), 2, 5.7400,'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, CAST('2014-09-05T16:00:00.000' AS TIMESTAMP), CAST('2014-10-03T00:00:00.000' AS TIMESTAMP), CAST('2014-09-11T00:00:00.000' AS TIMESTAMP), 2, 168.2200,'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, CAST('2014-09-06T01:00:00.000' AS TIMESTAMP), CAST('2014-10-04T00:00:00.000' AS TIMESTAMP), CAST('2014-09-13T00:00:00.000' AS TIMESTAMP), 2, 29.7600,'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, CAST('2014-09-09T11:00:00.000' AS TIMESTAMP), CAST('2014-10-07T00:00:00.000' AS TIMESTAMP), CAST('2014-09-18T00:00:00.000' AS TIMESTAMP), 2, 17.6800,'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, CAST('2014-09-09T15:00:00.000' AS TIMESTAMP), CAST('2014-10-07T00:00:00.000' AS TIMESTAMP), CAST('2014-09-17T00:00:00.000' AS TIMESTAMP), 2, 45.0800,'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, CAST('2014-09-10T17:00:00.000' AS TIMESTAMP), CAST('2014-10-08T00:00:00.000' AS TIMESTAMP), CAST('2014-10-09T00:00:00.000' AS TIMESTAMP), 2, 6.2700,'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, CAST('2014-09-11T03:00:00.000' AS TIMESTAMP), CAST('2014-10-09T00:00:00.000' AS TIMESTAMP), CAST('2014-09-18T00:00:00.000' AS TIMESTAMP), 2, 107.8300,'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, CAST('2014-09-12T06:00:00.000' AS TIMESTAMP), CAST('2014-10-10T00:00:00.000' AS TIMESTAMP), CAST('2014-09-17T00:00:00.000' AS TIMESTAMP), 2, 63.7900,'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, CAST('2014-09-13T20:00:00.000' AS TIMESTAMP), CAST('2014-10-11T00:00:00.000' AS TIMESTAMP), CAST('2014-10-09T00:00:00.000' AS TIMESTAMP), 3, 257.6200,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10306,'ROMEY', 1, CAST('2014-09-16T09:00:00.000' AS TIMESTAMP), CAST('2014-10-14T00:00:00.000' AS TIMESTAMP), CAST('2014-09-23T00:00:00.000' AS TIMESTAMP), 3, 7.5600,'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, CAST('2014-09-17T06:00:00.000' AS TIMESTAMP), CAST('2014-10-15T00:00:00.000' AS TIMESTAMP), CAST('2014-09-25T00:00:00.000' AS TIMESTAMP), 2, 0.5600,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10308,'ANATR', 7, CAST('2014-09-18T14:00:00.000' AS TIMESTAMP), CAST('2014-10-16T00:00:00.000' AS TIMESTAMP), CAST('2014-09-24T00:00:00.000' AS TIMESTAMP), 3, 1.6100,'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, CAST('2014-09-19T14:00:00.000' AS TIMESTAMP), CAST('2014-10-17T00:00:00.000' AS TIMESTAMP), CAST('2014-10-23T00:00:00.000' AS TIMESTAMP), 1, 47.3000,'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, CAST('2014-09-20T05:00:00.000' AS TIMESTAMP), CAST('2014-10-18T00:00:00.000' AS TIMESTAMP), CAST('2014-09-27T00:00:00.000' AS TIMESTAMP), 2, 17.5200,'The Big Cheese','89 Jefferson Way Suite 2','Portland','OR','97201','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10311,'DUMON', 1, CAST('2014-09-20T08:00:00.000' AS TIMESTAMP), CAST('2014-10-04T00:00:00.000' AS TIMESTAMP), CAST('2014-09-26T00:00:00.000' AS TIMESTAMP), 3, 24.6900,'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, CAST('2014-09-23T01:00:00.000' AS TIMESTAMP), CAST('2014-10-21T00:00:00.000' AS TIMESTAMP), CAST('2014-10-03T00:00:00.000' AS TIMESTAMP), 2, 40.2600,'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, CAST('2014-09-24T22:00:00.000' AS TIMESTAMP), CAST('2014-10-22T00:00:00.000' AS TIMESTAMP), CAST('2014-10-04T00:00:00.000' AS TIMESTAMP), 2, 1.9600,'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, CAST('2014-09-25T13:00:00.000' AS TIMESTAMP), CAST('2014-10-23T00:00:00.000' AS TIMESTAMP), CAST('2014-10-04T00:00:00.000' AS TIMESTAMP), 2, 74.1600,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10315,'ISLAT', 4, CAST('2014-09-26T11:00:00.000' AS TIMESTAMP), CAST('2014-10-24T00:00:00.000' AS TIMESTAMP), CAST('2014-10-03T00:00:00.000' AS TIMESTAMP), 2, 41.7600,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10316,'RATTC', 1, CAST('2014-09-27T02:00:00.000' AS TIMESTAMP), CAST('2014-10-25T00:00:00.000' AS TIMESTAMP), CAST('2014-10-08T00:00:00.000' AS TIMESTAMP), 3, 150.1500,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10317,'LONEP', 6, CAST('2014-09-30T00:00:00.000' AS TIMESTAMP), CAST('2014-10-28T00:00:00.000' AS TIMESTAMP), CAST('2014-10-10T00:00:00.000' AS TIMESTAMP), 1, 12.6900,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10318,'ISLAT', 8, CAST('2014-10-01T00:00:00.000' AS TIMESTAMP), CAST('2014-10-29T00:00:00.000' AS TIMESTAMP), CAST('2014-10-04T00:00:00.000' AS TIMESTAMP), 2, 4.7300,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10319,'TORTU', 7, CAST('2014-10-02T20:00:00.000' AS TIMESTAMP), CAST('2014-10-30T00:00:00.000' AS TIMESTAMP), CAST('2014-10-11T00:00:00.000' AS TIMESTAMP), 3, 64.5000,'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, CAST('2014-10-03T12:00:00.000' AS TIMESTAMP), CAST('2014-10-19T00:00:00.000' AS TIMESTAMP), CAST('2014-10-18T00:00:00.000' AS TIMESTAMP), 3, 34.5700,'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, CAST('2014-10-03T11:00:00.000' AS TIMESTAMP), CAST('2014-10-31T00:00:00.000' AS TIMESTAMP), CAST('2014-10-11T00:00:00.000' AS TIMESTAMP), 2, 3.4300,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10322,'PERIC', 7, CAST('2014-10-04T01:00:00.000' AS TIMESTAMP), CAST('2014-11-01T00:00:00.000' AS TIMESTAMP), CAST('2014-10-23T00:00:00.000' AS TIMESTAMP), 3, 0.4000,'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, CAST('2014-10-07T06:00:00.000' AS TIMESTAMP), CAST('2014-11-04T00:00:00.000' AS TIMESTAMP), CAST('2014-10-14T00:00:00.000' AS TIMESTAMP), 1, 4.8800,'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, CAST('2014-10-08T17:00:00.000' AS TIMESTAMP), CAST('2014-11-05T00:00:00.000' AS TIMESTAMP), CAST('2014-10-10T00:00:00.000' AS TIMESTAMP), 1, 214.2700,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10325,'KOENE', 1, CAST('2014-10-09T11:00:00.000' AS TIMESTAMP), CAST('2014-10-23T00:00:00.000' AS TIMESTAMP), CAST('2014-10-14T00:00:00.000' AS TIMESTAMP), 3, 64.8600,'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, CAST('2014-10-10T06:00:00.000' AS TIMESTAMP), CAST('2014-11-07T00:00:00.000' AS TIMESTAMP), CAST('2014-10-14T00:00:00.000' AS TIMESTAMP), 2, 77.9200,'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, CAST('2014-10-11T12:00:00.000' AS TIMESTAMP), CAST('2014-11-08T00:00:00.000' AS TIMESTAMP), CAST('2014-10-14T00:00:00.000' AS TIMESTAMP), 1, 63.3600,'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, CAST('2014-10-14T03:00:00.000' AS TIMESTAMP), CAST('2014-11-11T00:00:00.000' AS TIMESTAMP), CAST('2014-10-17T00:00:00.000' AS TIMESTAMP), 3, 87.0300,'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, CAST('2014-10-15T11:00:00.000' AS TIMESTAMP), CAST('2014-11-26T00:00:00.000' AS TIMESTAMP), CAST('2014-10-23T00:00:00.000' AS TIMESTAMP), 2, 191.6700,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10330,'LILAS', 3, CAST('2014-10-16T01:00:00.000' AS TIMESTAMP), CAST('2014-11-13T00:00:00.000' AS TIMESTAMP), CAST('2014-10-28T00:00:00.000' AS TIMESTAMP), 1, 12.7500,'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, CAST('2014-10-16T17:00:00.000' AS TIMESTAMP), CAST('2014-11-27T00:00:00.000' AS TIMESTAMP), CAST('2014-10-21T00:00:00.000' AS TIMESTAMP), 1, 10.1900,'Bon app''','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, CAST('2014-10-17T01:00:00.000' AS TIMESTAMP), CAST('2014-11-28T00:00:00.000' AS TIMESTAMP), CAST('2014-10-21T00:00:00.000' AS TIMESTAMP), 2, 52.8400,'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, CAST('2014-10-18T18:00:00.000' AS TIMESTAMP), CAST('2014-11-15T00:00:00.000' AS TIMESTAMP), CAST('2014-10-25T00:00:00.000' AS TIMESTAMP), 3, 0.5900,'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, CAST('2014-10-21T14:00:00.000' AS TIMESTAMP), CAST('2014-11-18T00:00:00.000' AS TIMESTAMP), CAST('2014-10-28T00:00:00.000' AS TIMESTAMP), 2, 8.5600,'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, CAST('2014-10-22T06:00:00.000' AS TIMESTAMP), CAST('2014-11-19T00:00:00.000' AS TIMESTAMP), CAST('2014-10-24T00:00:00.000' AS TIMESTAMP), 2, 42.1100,'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, CAST('2014-10-23T05:00:00.000' AS TIMESTAMP), CAST('2014-11-20T00:00:00.000' AS TIMESTAMP), CAST('2014-10-25T00:00:00.000' AS TIMESTAMP), 2, 15.5100,'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, CAST('2014-10-24T14:00:00.000' AS TIMESTAMP), CAST('2014-11-21T00:00:00.000' AS TIMESTAMP), CAST('2014-10-29T00:00:00.000' AS TIMESTAMP), 3, 108.2600,'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, CAST('2014-10-25T01:00:00.000' AS TIMESTAMP), CAST('2014-11-22T00:00:00.000' AS TIMESTAMP), CAST('2014-10-29T00:00:00.000' AS TIMESTAMP), 3, 84.2100,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10339,'MEREP', 2, CAST('2014-10-28T22:00:00.000' AS TIMESTAMP), CAST('2014-11-25T00:00:00.000' AS TIMESTAMP), CAST('2014-11-04T00:00:00.000' AS TIMESTAMP), 2, 15.6600,'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, CAST('2014-10-29T16:00:00.000' AS TIMESTAMP), CAST('2014-11-26T00:00:00.000' AS TIMESTAMP), CAST('2014-11-08T00:00:00.000' AS TIMESTAMP), 3, 166.3100,'Bon app''','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, CAST('2014-10-29T03:00:00.000' AS TIMESTAMP), CAST('2014-11-26T00:00:00.000' AS TIMESTAMP), CAST('2014-11-05T00:00:00.000' AS TIMESTAMP), 3, 26.7800,'Simons bistro','Vinbêltet 34','Kobenhavn', NULL,'1734','Denmark');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10342,'FRANK', 4, CAST('2014-10-30T17:00:00.000' AS TIMESTAMP), CAST('2014-11-13T00:00:00.000' AS TIMESTAMP), CAST('2014-11-04T00:00:00.000' AS TIMESTAMP), 2, 54.8300,'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, CAST('2014-10-31T00:00:00.000' AS TIMESTAMP), CAST('2014-11-28T00:00:00.000' AS TIMESTAMP), CAST('2014-11-06T00:00:00.000' AS TIMESTAMP), 1, 110.3700,'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, CAST('2014-11-01T16:00:00.000' AS TIMESTAMP), CAST('2014-11-29T00:00:00.000' AS TIMESTAMP), CAST('2014-11-05T00:00:00.000' AS TIMESTAMP), 2, 23.2900,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10345,'QUICK', 2, CAST('2014-11-04T10:00:00.000' AS TIMESTAMP), CAST('2014-12-02T00:00:00.000' AS TIMESTAMP), CAST('2014-11-11T00:00:00.000' AS TIMESTAMP), 2, 249.0600,'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, CAST('2014-11-05T13:00:00.000' AS TIMESTAMP), CAST('2014-12-17T00:00:00.000' AS TIMESTAMP), CAST('2014-11-08T00:00:00.000' AS TIMESTAMP), 3, 142.0800,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10347,'FAMIA', 4, CAST('2014-11-06T12:00:00.000' AS TIMESTAMP), CAST('2014-12-04T00:00:00.000' AS TIMESTAMP), CAST('2014-11-08T00:00:00.000' AS TIMESTAMP), 3, 3.1000,'Familia Arquibaldo','Rua Orós, 92','Sao 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, CAST('2014-11-07T10:00:00.000' AS TIMESTAMP), CAST('2014-12-05T00:00:00.000' AS TIMESTAMP), CAST('2014-11-15T00:00:00.000' AS TIMESTAMP), 2, 0.7800,'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, CAST('2014-11-08T20:00:00.000' AS TIMESTAMP), CAST('2014-12-06T00:00:00.000' AS TIMESTAMP), CAST('2014-11-15T00:00:00.000' AS TIMESTAMP), 1, 8.6300,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10350,'LAMAI', 6, CAST('2014-11-11T03:00:00.000' AS TIMESTAMP), CAST('2014-12-09T00:00:00.000' AS TIMESTAMP), CAST('2014-12-03T00:00:00.000' AS TIMESTAMP), 2, 64.1900,'La maison d''Asie','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, CAST('2014-11-11T06:00:00.000' AS TIMESTAMP), CAST('2014-12-09T00:00:00.000' AS TIMESTAMP), CAST('2014-11-20T00:00:00.000' AS TIMESTAMP), 1, 162.3300,'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, CAST('2014-11-12T03:00:00.000' AS TIMESTAMP), CAST('2014-11-26T00:00:00.000' AS TIMESTAMP), CAST('2014-11-18T00:00:00.000' AS TIMESTAMP), 3, 1.3000,'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, CAST('2014-11-13T12:00:00.000' AS TIMESTAMP), CAST('2014-12-11T00:00:00.000' AS TIMESTAMP), CAST('2014-11-25T00:00:00.000' AS TIMESTAMP), 3, 360.6300,'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, CAST('2014-11-14T03:00:00.000' AS TIMESTAMP), CAST('2014-12-12T00:00:00.000' AS TIMESTAMP), CAST('2014-11-20T00:00:00.000' AS TIMESTAMP), 3, 53.8000,'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, CAST('2014-11-15T21:00:00.000' AS TIMESTAMP), CAST('2014-12-13T00:00:00.000' AS TIMESTAMP), CAST('2014-11-20T00:00:00.000' AS TIMESTAMP), 1, 41.9500,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10356,'WANDK', 6, CAST('2014-11-18T01:00:00.000' AS TIMESTAMP), CAST('2014-12-16T00:00:00.000' AS TIMESTAMP), CAST('2014-11-27T00:00:00.000' AS TIMESTAMP), 2, 36.7100,'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, CAST('2014-11-19T08:00:00.000' AS TIMESTAMP), CAST('2014-12-17T00:00:00.000' AS TIMESTAMP), CAST('2014-12-02T00:00:00.000' AS TIMESTAMP), 3, 34.8800,'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, CAST('2014-11-20T05:00:00.000' AS TIMESTAMP), CAST('2014-12-18T00:00:00.000' AS TIMESTAMP), CAST('2014-11-27T00:00:00.000' AS TIMESTAMP), 1, 19.6400,'La maison d''Asie','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, CAST('2014-11-21T14:00:00.000' AS TIMESTAMP), CAST('2014-12-19T00:00:00.000' AS TIMESTAMP), CAST('2014-11-26T00:00:00.000' AS TIMESTAMP), 3, 288.4300,'Seven Seas Imports','90 Wadhurst Rd.','London', NULL,'OX15 4NB','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10360,'BLONP', 4, CAST('2014-11-22T20:00:00.000' AS TIMESTAMP), CAST('2014-12-20T00:00:00.000' AS TIMESTAMP), CAST('2014-12-02T00:00:00.000' AS TIMESTAMP), 3, 131.7000,'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, CAST('2014-11-22T07:00:00.000' AS TIMESTAMP), CAST('2014-12-20T00:00:00.000' AS TIMESTAMP), CAST('2014-12-03T00:00:00.000' AS TIMESTAMP), 2, 183.1700,'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, CAST('2014-11-25T16:00:00.000' AS TIMESTAMP), CAST('2014-12-23T00:00:00.000' AS TIMESTAMP), CAST('2014-11-28T00:00:00.000' AS TIMESTAMP), 1, 96.0400,'Bon app''','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, CAST('2014-11-26T05:00:00.000' AS TIMESTAMP), CAST('2014-12-24T00:00:00.000' AS TIMESTAMP), CAST('2014-12-04T00:00:00.000' AS TIMESTAMP), 3, 30.5400,'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, CAST('2014-11-26T07:00:00.000' AS TIMESTAMP), CAST('2015-01-07T00:00:00.000' AS TIMESTAMP), CAST('2014-12-04T00:00:00.000' AS TIMESTAMP), 1, 71.9700,'Eastern Connection','35 King George','London', NULL,'WX3 6FW','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10365,'ANTON', 3, CAST('2014-11-27T00:00:00.000' AS TIMESTAMP), CAST('2014-12-25T00:00:00.000' AS TIMESTAMP), CAST('2014-12-02T00:00:00.000' AS TIMESTAMP), 2, 22.0000,'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, CAST('2014-11-28T05:00:00.000' AS TIMESTAMP), CAST('2015-01-09T00:00:00.000' AS TIMESTAMP), CAST('2014-12-30T00:00:00.000' AS TIMESTAMP), 2, 10.1400,'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, CAST('2014-11-28T21:00:00.000' AS TIMESTAMP), CAST('2014-12-26T00:00:00.000' AS TIMESTAMP), CAST('2014-12-02T00:00:00.000' AS TIMESTAMP), 3, 13.5500,'Vaffeljernet','Smagsloget 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, CAST('2014-11-29T19:00:00.000' AS TIMESTAMP), CAST('2014-12-27T00:00:00.000' AS TIMESTAMP), CAST('2014-12-02T00:00:00.000' AS TIMESTAMP), 2, 101.9500,'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, CAST('2014-12-02T02:00:00.000' AS TIMESTAMP), CAST('2014-12-30T00:00:00.000' AS TIMESTAMP), CAST('2014-12-09T00:00:00.000' AS TIMESTAMP), 2, 195.6800,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10370,'CHOPS', 6, CAST('2014-12-03T17:00:00.000' AS TIMESTAMP), CAST('2014-12-31T00:00:00.000' AS TIMESTAMP), CAST('2014-12-27T00:00:00.000' AS TIMESTAMP), 2, 1.1700,'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, CAST('2014-12-03T17:00:00.000' AS TIMESTAMP), CAST('2014-12-31T00:00:00.000' AS TIMESTAMP), CAST('2014-12-24T00:00:00.000' AS TIMESTAMP), 1, 0.4500,'La maison d''Asie','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, CAST('2014-12-04T10:00:00.000' AS TIMESTAMP), CAST('2015-01-01T00:00:00.000' AS TIMESTAMP), CAST('2014-12-09T00:00:00.000' AS TIMESTAMP), 2, 890.7800,'Queen Cozinha','Alameda dos CanÃários, 891','Sao 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, CAST('2014-12-05T16:00:00.000' AS TIMESTAMP), CAST('2015-01-02T00:00:00.000' AS TIMESTAMP), CAST('2014-12-11T00:00:00.000' AS TIMESTAMP), 3, 124.1200,'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, CAST('2014-12-05T10:00:00.000' AS TIMESTAMP), CAST('2015-01-02T00:00:00.000' AS TIMESTAMP), CAST('2014-12-09T00:00:00.000' AS TIMESTAMP), 3, 3.9400,'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, CAST('2014-12-06T13:00:00.000' AS TIMESTAMP), CAST('2015-01-03T00:00:00.000' AS TIMESTAMP), CAST('2014-12-09T00:00:00.000' AS TIMESTAMP), 2, 20.1200,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10376,'MEREP', 1, CAST('2014-12-09T14:00:00.000' AS TIMESTAMP), CAST('2015-01-06T00:00:00.000' AS TIMESTAMP), CAST('2014-12-13T00:00:00.000' AS TIMESTAMP), 2, 20.3900,'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, CAST('2014-12-09T20:00:00.000' AS TIMESTAMP), CAST('2015-01-06T00:00:00.000' AS TIMESTAMP), CAST('2014-12-13T00:00:00.000' AS TIMESTAMP), 3, 22.2100,'Seven Seas Imports','90 Wadhurst Rd.','London', NULL,'OX15 4NB','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10378,'FOLKO', 5, CAST('2014-12-10T00:00:00.000' AS TIMESTAMP), CAST('2015-01-07T00:00:00.000' AS TIMESTAMP), CAST('2014-12-19T00:00:00.000' AS TIMESTAMP), 3, 5.4400,'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, CAST('2014-12-11T06:00:00.000' AS TIMESTAMP), CAST('2015-01-08T00:00:00.000' AS TIMESTAMP), CAST('2014-12-13T00:00:00.000' AS TIMESTAMP), 1, 45.0300,'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, CAST('2014-12-12T19:00:00.000' AS TIMESTAMP), CAST('2015-01-09T00:00:00.000' AS TIMESTAMP), CAST('2015-01-16T00:00:00.000' AS TIMESTAMP), 3, 35.0300,'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, CAST('2014-12-12T15:00:00.000' AS TIMESTAMP), CAST('2015-01-09T00:00:00.000' AS TIMESTAMP), CAST('2014-12-13T00:00:00.000' AS TIMESTAMP), 3, 7.9900,'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, CAST('2014-12-13T09:00:00.000' AS TIMESTAMP), CAST('2015-01-10T00:00:00.000' AS TIMESTAMP), CAST('2014-12-16T00:00:00.000' AS TIMESTAMP), 1, 94.7700,'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, CAST('2014-12-16T22:00:00.000' AS TIMESTAMP), CAST('2015-01-13T00:00:00.000' AS TIMESTAMP), CAST('2014-12-18T00:00:00.000' AS TIMESTAMP), 3, 34.2400,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10384,'BERGS', 3, CAST('2014-12-16T10:00:00.000' AS TIMESTAMP), CAST('2015-01-13T00:00:00.000' AS TIMESTAMP), CAST('2014-12-20T00:00:00.000' AS TIMESTAMP), 3, 168.6400,'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, CAST('2014-12-17T19:00:00.000' AS TIMESTAMP), CAST('2015-01-14T00:00:00.000' AS TIMESTAMP), CAST('2014-12-23T00:00:00.000' AS TIMESTAMP), 2, 30.9600,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10386,'FAMIA', 9, CAST('2014-12-18T11:00:00.000' AS TIMESTAMP), CAST('2015-01-01T00:00:00.000' AS TIMESTAMP), CAST('2014-12-25T00:00:00.000' AS TIMESTAMP), 3, 13.9900,'Familia Arquibaldo','Rua Orós, 92','Sao 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, CAST('2014-12-18T14:00:00.000' AS TIMESTAMP), CAST('2015-01-15T00:00:00.000' AS TIMESTAMP), CAST('2014-12-20T00:00:00.000' AS TIMESTAMP), 2, 93.6300,'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, CAST('2014-12-19T02:00:00.000' AS TIMESTAMP), CAST('2015-01-16T00:00:00.000' AS TIMESTAMP), CAST('2014-12-20T00:00:00.000' AS TIMESTAMP), 1, 34.8600,'Seven Seas Imports','90 Wadhurst Rd.','London', NULL,'OX15 4NB','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10389,'BOTTM', 4, CAST('2014-12-20T18:00:00.000' AS TIMESTAMP), CAST('2015-01-17T00:00:00.000' AS TIMESTAMP), CAST('2014-12-24T00:00:00.000' AS TIMESTAMP), 2, 47.4200,'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, CAST('2014-12-23T05:00:00.000' AS TIMESTAMP), CAST('2015-01-20T00:00:00.000' AS TIMESTAMP), CAST('2014-12-26T00:00:00.000' AS TIMESTAMP), 1, 126.3800,'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, CAST('2014-12-23T02:00:00.000' AS TIMESTAMP), CAST('2015-01-20T00:00:00.000' AS TIMESTAMP), CAST('2014-12-31T00:00:00.000' AS TIMESTAMP), 3, 5.4500,'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, CAST('2014-12-24T04:00:00.000' AS TIMESTAMP), CAST('2015-01-21T00:00:00.000' AS TIMESTAMP), CAST('2015-01-01T00:00:00.000' AS TIMESTAMP), 3, 122.4600,'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, CAST('2014-12-25T15:00:00.000' AS TIMESTAMP), CAST('2015-01-22T00:00:00.000' AS TIMESTAMP), CAST('2015-01-03T00:00:00.000' AS TIMESTAMP), 3, 126.5600,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10394,'HUNGC', 1, CAST('2014-12-25T12:00:00.000' AS TIMESTAMP), CAST('2015-01-22T00:00:00.000' AS TIMESTAMP), CAST('2015-01-03T00:00:00.000' AS TIMESTAMP), 3, 30.3400,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10395,'HILAA', 6, CAST('2014-12-26T16:00:00.000' AS TIMESTAMP), CAST('2015-01-23T00:00:00.000' AS TIMESTAMP), CAST('2015-01-03T00:00:00.000' AS TIMESTAMP), 1, 184.4100,'HILARION-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, CAST('2014-12-27T00:00:00.000' AS TIMESTAMP), CAST('2015-01-10T00:00:00.000' AS TIMESTAMP), CAST('2015-01-06T00:00:00.000' AS TIMESTAMP), 3, 135.3500,'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, CAST('2014-12-27T17:00:00.000' AS TIMESTAMP), CAST('2015-01-24T00:00:00.000' AS TIMESTAMP), CAST('2015-01-02T00:00:00.000' AS TIMESTAMP), 1, 60.2600,'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, CAST('2014-12-30T13:00:00.000' AS TIMESTAMP), CAST('2015-01-27T00:00:00.000' AS TIMESTAMP), CAST('2015-01-09T00:00:00.000' AS TIMESTAMP), 3, 89.1600,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10399,'VAFFE', 8, CAST('2014-12-31T00:00:00.000' AS TIMESTAMP), CAST('2015-01-14T00:00:00.000' AS TIMESTAMP), CAST('2015-01-08T00:00:00.000' AS TIMESTAMP), 3, 27.3600,'Vaffeljernet','Smagsloget 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, CAST('2015-01-01T21:00:00.000' AS TIMESTAMP), CAST('2015-01-29T00:00:00.000' AS TIMESTAMP), CAST('2015-01-16T00:00:00.000' AS TIMESTAMP), 3, 83.9300,'Eastern Connection','35 King George','London', NULL,'WX3 6FW','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10401,'RATTC', 1, CAST('2015-01-01T15:00:00.000' AS TIMESTAMP), CAST('2015-01-29T00:00:00.000' AS TIMESTAMP), CAST('2015-01-10T00:00:00.000' AS TIMESTAMP), 1, 12.5100,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10402,'ERNSH', 8, CAST('2015-01-02T18:00:00.000' AS TIMESTAMP), CAST('2015-02-13T00:00:00.000' AS TIMESTAMP), CAST('2015-01-10T00:00:00.000' AS TIMESTAMP), 2, 67.8800,'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, CAST('2015-01-03T01:00:00.000' AS TIMESTAMP), CAST('2015-01-31T00:00:00.000' AS TIMESTAMP), CAST('2015-01-09T00:00:00.000' AS TIMESTAMP), 3, 73.7900,'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, CAST('2015-01-03T21:00:00.000' AS TIMESTAMP), CAST('2015-01-31T00:00:00.000' AS TIMESTAMP), CAST('2015-01-08T00:00:00.000' AS TIMESTAMP), 1, 155.9700,'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, CAST('2015-01-06T01:00:00.000' AS TIMESTAMP), CAST('2015-02-03T00:00:00.000' AS TIMESTAMP), CAST('2015-01-22T00:00:00.000' AS TIMESTAMP), 1, 34.8200,'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, CAST('2015-01-07T18:00:00.000' AS TIMESTAMP), CAST('2015-02-18T00:00:00.000' AS TIMESTAMP), CAST('2015-01-13T00:00:00.000' AS TIMESTAMP), 1, 108.0400,'Queen Cozinha','Alameda dos CanÃários, 891','Sao 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, CAST('2015-01-07T21:00:00.000' AS TIMESTAMP), CAST('2015-02-04T00:00:00.000' AS TIMESTAMP), CAST('2015-01-30T00:00:00.000' AS TIMESTAMP), 2, 91.4800,'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, CAST('2015-01-08T18:00:00.000' AS TIMESTAMP), CAST('2015-02-05T00:00:00.000' AS TIMESTAMP), CAST('2015-01-14T00:00:00.000' AS TIMESTAMP), 1, 11.2600,'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, CAST('2015-01-09T08:00:00.000' AS TIMESTAMP), CAST('2015-02-06T00:00:00.000' AS TIMESTAMP), CAST('2015-01-14T00:00:00.000' AS TIMESTAMP), 1, 29.8300,'Oc̩ano Atl̒ntico Ltda.','Ing. Gustavo Moncada 8585 Piso 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, CAST('2015-01-10T18:00:00.000' AS TIMESTAMP), CAST('2015-02-07T00:00:00.000' AS TIMESTAMP), CAST('2015-01-15T00:00:00.000' AS TIMESTAMP), 3, 2.4000,'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, CAST('2015-01-10T21:00:00.000' AS TIMESTAMP), CAST('2015-02-07T00:00:00.000' AS TIMESTAMP), CAST('2015-01-21T00:00:00.000' AS TIMESTAMP), 3, 23.6500,'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, CAST('2015-01-13T20:00:00.000' AS TIMESTAMP), CAST('2015-02-10T00:00:00.000' AS TIMESTAMP), CAST('2015-01-15T00:00:00.000' AS TIMESTAMP), 2, 3.7700,'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, CAST('2015-01-14T22:00:00.000' AS TIMESTAMP), CAST('2015-02-11T00:00:00.000' AS TIMESTAMP), CAST('2015-01-16T00:00:00.000' AS TIMESTAMP), 2, 95.6600,'La maison d''Asie','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, CAST('2015-01-14T22:00:00.000' AS TIMESTAMP), CAST('2015-02-11T00:00:00.000' AS TIMESTAMP), CAST('2015-01-17T00:00:00.000' AS TIMESTAMP), 3, 21.4800,'Familia Arquibaldo','Rua Orós, 92','Sao 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, CAST('2015-01-15T22:00:00.000' AS TIMESTAMP), CAST('2015-02-12T00:00:00.000' AS TIMESTAMP), CAST('2015-01-24T00:00:00.000' AS TIMESTAMP), 1, 0.2000,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10416,'WARTH', 8, CAST('2015-01-16T11:00:00.000' AS TIMESTAMP), CAST('2015-02-13T00:00:00.000' AS TIMESTAMP), CAST('2015-01-27T00:00:00.000' AS TIMESTAMP), 3, 22.7200,'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, CAST('2015-01-16T07:00:00.000' AS TIMESTAMP), CAST('2015-02-13T00:00:00.000' AS TIMESTAMP), CAST('2015-01-28T00:00:00.000' AS TIMESTAMP), 3, 70.2900,'Simons bistro','Vinbêltet 34','Kobenhavn', NULL,'1734','Denmark');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10418,'QUICK', 4, CAST('2015-01-17T16:00:00.000' AS TIMESTAMP), CAST('2015-02-14T00:00:00.000' AS TIMESTAMP), CAST('2015-01-24T00:00:00.000' AS TIMESTAMP), 1, 17.5500,'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, CAST('2015-01-20T18:00:00.000' AS TIMESTAMP), CAST('2015-02-17T00:00:00.000' AS TIMESTAMP), CAST('2015-01-30T00:00:00.000' AS TIMESTAMP), 2, 137.3500,'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, CAST('2015-01-21T08:00:00.000' AS TIMESTAMP), CAST('2015-02-18T00:00:00.000' AS TIMESTAMP), CAST('2015-01-27T00:00:00.000' AS TIMESTAMP), 1, 44.1200,'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, CAST('2015-01-21T20:00:00.000' AS TIMESTAMP), CAST('2015-03-04T00:00:00.000' AS TIMESTAMP), CAST('2015-01-27T00:00:00.000' AS TIMESTAMP), 1, 99.2300,'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, CAST('2015-01-22T05:00:00.000' AS TIMESTAMP), CAST('2015-02-19T00:00:00.000' AS TIMESTAMP), CAST('2015-01-31T00:00:00.000' AS TIMESTAMP), 1, 3.0200,'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, CAST('2015-01-23T01:00:00.000' AS TIMESTAMP), CAST('2015-02-06T00:00:00.000' AS TIMESTAMP), CAST('2015-02-24T00:00:00.000' AS TIMESTAMP), 3, 24.5000,'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, CAST('2015-01-23T20:00:00.000' AS TIMESTAMP), CAST('2015-02-20T00:00:00.000' AS TIMESTAMP), CAST('2015-01-27T00:00:00.000' AS TIMESTAMP), 2, 370.6100,'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, CAST('2015-01-24T12:00:00.000' AS TIMESTAMP), CAST('2015-02-21T00:00:00.000' AS TIMESTAMP), CAST('2015-02-14T00:00:00.000' AS TIMESTAMP), 2, 7.9300,'La maison d''Asie','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, CAST('2015-01-27T08:00:00.000' AS TIMESTAMP), CAST('2015-02-24T00:00:00.000' AS TIMESTAMP), CAST('2015-02-06T00:00:00.000' AS TIMESTAMP), 1, 18.6900,'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, CAST('2015-01-27T06:00:00.000' AS TIMESTAMP), CAST('2015-02-24T00:00:00.000' AS TIMESTAMP), CAST('2015-03-03T00:00:00.000' AS TIMESTAMP), 2, 31.2900,'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, CAST('2015-01-28T08:00:00.000' AS TIMESTAMP), CAST('2015-02-25T00:00:00.000' AS TIMESTAMP), CAST('2015-02-04T00:00:00.000' AS TIMESTAMP), 1, 11.0900,'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, CAST('2015-01-29T00:00:00.000' AS TIMESTAMP), CAST('2015-03-12T00:00:00.000' AS TIMESTAMP), CAST('2015-02-07T00:00:00.000' AS TIMESTAMP), 2, 56.6300,'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, CAST('2015-01-30T09:00:00.000' AS TIMESTAMP), CAST('2015-02-13T00:00:00.000' AS TIMESTAMP), CAST('2015-02-03T00:00:00.000' AS TIMESTAMP), 1, 458.7800,'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, CAST('2015-01-30T12:00:00.000' AS TIMESTAMP), CAST('2015-02-13T00:00:00.000' AS TIMESTAMP), CAST('2015-02-07T00:00:00.000' AS TIMESTAMP), 2, 44.1700,'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, CAST('2015-01-31T00:00:00.000' AS TIMESTAMP), CAST('2015-02-14T00:00:00.000' AS TIMESTAMP), CAST('2015-02-07T00:00:00.000' AS TIMESTAMP), 2, 4.3400,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10433,'PRINI', 3, CAST('2015-02-03T09:00:00.000' AS TIMESTAMP), CAST('2015-03-03T00:00:00.000' AS TIMESTAMP), CAST('2015-03-04T00:00:00.000' AS TIMESTAMP), 3, 73.8300,'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, CAST('2015-02-03T21:00:00.000' AS TIMESTAMP), CAST('2015-03-03T00:00:00.000' AS TIMESTAMP), CAST('2015-02-13T00:00:00.000' AS TIMESTAMP), 2, 17.9200,'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, CAST('2015-02-04T20:00:00.000' AS TIMESTAMP), CAST('2015-03-18T00:00:00.000' AS TIMESTAMP), CAST('2015-02-07T00:00:00.000' AS TIMESTAMP), 2, 9.2100,'Consolidated Holdings','Berkeley Gardens 12 Brewery','London', NULL,'WX1 6LT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10436,'BLONP', 3, CAST('2015-02-05T19:00:00.000' AS TIMESTAMP), CAST('2015-03-05T00:00:00.000' AS TIMESTAMP), CAST('2015-02-11T00:00:00.000' AS TIMESTAMP), 2, 156.6600,'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, CAST('2015-02-05T14:00:00.000' AS TIMESTAMP), CAST('2015-03-05T00:00:00.000' AS TIMESTAMP), CAST('2015-02-12T00:00:00.000' AS TIMESTAMP), 1, 19.9700,'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, CAST('2015-02-06T21:00:00.000' AS TIMESTAMP), CAST('2015-03-06T00:00:00.000' AS TIMESTAMP), CAST('2015-02-14T00:00:00.000' AS TIMESTAMP), 2, 8.2400,'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, CAST('2015-02-07T10:00:00.000' AS TIMESTAMP), CAST('2015-03-07T00:00:00.000' AS TIMESTAMP), CAST('2015-02-10T00:00:00.000' AS TIMESTAMP), 3, 4.0700,'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, CAST('2015-02-10T15:00:00.000' AS TIMESTAMP), CAST('2015-03-10T00:00:00.000' AS TIMESTAMP), CAST('2015-02-28T00:00:00.000' AS TIMESTAMP), 2, 86.5300,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10441,'OLDWO', 3, CAST('2015-02-10T16:00:00.000' AS TIMESTAMP), CAST('2015-03-24T00:00:00.000' AS TIMESTAMP), CAST('2015-03-14T00:00:00.000' AS TIMESTAMP), 2, 73.0200,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10442,'ERNSH', 3, CAST('2015-02-11T03:00:00.000' AS TIMESTAMP), CAST('2015-03-11T00:00:00.000' AS TIMESTAMP), CAST('2015-02-18T00:00:00.000' AS TIMESTAMP), 2, 47.9400,'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, CAST('2015-02-12T01:00:00.000' AS TIMESTAMP), CAST('2015-03-12T00:00:00.000' AS TIMESTAMP), CAST('2015-02-14T00:00:00.000' AS TIMESTAMP), 1, 13.9500,'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, CAST('2015-02-12T11:00:00.000' AS TIMESTAMP), CAST('2015-03-12T00:00:00.000' AS TIMESTAMP), CAST('2015-02-21T00:00:00.000' AS TIMESTAMP), 3, 3.5000,'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, CAST('2015-02-13T20:00:00.000' AS TIMESTAMP), CAST('2015-03-13T00:00:00.000' AS TIMESTAMP), CAST('2015-02-20T00:00:00.000' AS TIMESTAMP), 1, 9.3000,'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, CAST('2015-02-14T00:00:00.000' AS TIMESTAMP), CAST('2015-03-14T00:00:00.000' AS TIMESTAMP), CAST('2015-02-19T00:00:00.000' AS TIMESTAMP), 1, 14.6800,'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, CAST('2015-02-14T07:00:00.000' AS TIMESTAMP), CAST('2015-03-14T00:00:00.000' AS TIMESTAMP), CAST('2015-03-07T00:00:00.000' AS TIMESTAMP), 2, 68.6600,'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, CAST('2015-02-17T10:00:00.000' AS TIMESTAMP), CAST('2015-03-17T00:00:00.000' AS TIMESTAMP), CAST('2015-02-24T00:00:00.000' AS TIMESTAMP), 2, 38.8200,'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, CAST('2015-02-18T13:00:00.000' AS TIMESTAMP), CAST('2015-03-18T00:00:00.000' AS TIMESTAMP), CAST('2015-02-27T00:00:00.000' AS TIMESTAMP), 2, 53.3000,'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, CAST('2015-02-19T20:00:00.000' AS TIMESTAMP), CAST('2015-03-19T00:00:00.000' AS TIMESTAMP), CAST('2015-03-11T00:00:00.000' AS TIMESTAMP), 2, 7.2300,'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, CAST('2015-02-19T08:00:00.000' AS TIMESTAMP), CAST('2015-03-05T00:00:00.000' AS TIMESTAMP), CAST('2015-03-12T00:00:00.000' AS TIMESTAMP), 3, 189.0900,'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, CAST('2015-02-20T13:00:00.000' AS TIMESTAMP), CAST('2015-03-20T00:00:00.000' AS TIMESTAMP), CAST('2015-02-26T00:00:00.000' AS TIMESTAMP), 1, 140.2600,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10453,'AROUT', 1, CAST('2015-02-21T17:00:00.000' AS TIMESTAMP), CAST('2015-03-21T00:00:00.000' AS TIMESTAMP), CAST('2015-02-26T00:00:00.000' AS TIMESTAMP), 2, 25.3600,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10454,'LAMAI', 4, CAST('2015-02-21T21:00:00.000' AS TIMESTAMP), CAST('2015-03-21T00:00:00.000' AS TIMESTAMP), CAST('2015-02-25T00:00:00.000' AS TIMESTAMP), 3, 2.7400,'La maison d''Asie','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, CAST('2015-02-24T11:00:00.000' AS TIMESTAMP), CAST('2015-04-07T00:00:00.000' AS TIMESTAMP), CAST('2015-03-03T00:00:00.000' AS TIMESTAMP), 2, 180.4500,'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, CAST('2015-02-25T18:00:00.000' AS TIMESTAMP), CAST('2015-04-08T00:00:00.000' AS TIMESTAMP), CAST('2015-02-28T00:00:00.000' AS TIMESTAMP), 2, 8.1200,'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, CAST('2015-02-25T19:00:00.000' AS TIMESTAMP), CAST('2015-03-25T00:00:00.000' AS TIMESTAMP), CAST('2015-03-03T00:00:00.000' AS TIMESTAMP), 1, 11.5700,'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, CAST('2015-02-26T00:00:00.000' AS TIMESTAMP), CAST('2015-03-26T00:00:00.000' AS TIMESTAMP), CAST('2015-03-04T00:00:00.000' AS TIMESTAMP), 3, 147.0600,'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, CAST('2015-02-27T13:00:00.000' AS TIMESTAMP), CAST('2015-03-27T00:00:00.000' AS TIMESTAMP), CAST('2015-02-28T00:00:00.000' AS TIMESTAMP), 2, 25.0900,'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, CAST('2015-02-28T00:00:00.000' AS TIMESTAMP), CAST('2015-03-28T00:00:00.000' AS TIMESTAMP), CAST('2015-03-03T00:00:00.000' AS TIMESTAMP), 1, 16.2700,'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, CAST('2015-02-28T00:00:00.000' AS TIMESTAMP), CAST('2015-03-28T00:00:00.000' AS TIMESTAMP), CAST('2015-03-05T00:00:00.000' AS TIMESTAMP), 3, 148.6100,'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, CAST('2015-03-03T08:00:00.000' AS TIMESTAMP), CAST('2015-03-31T00:00:00.000' AS TIMESTAMP), CAST('2015-03-18T00:00:00.000' AS TIMESTAMP), 1, 6.1700,'Consolidated Holdings','Berkeley Gardens 12 Brewery','London', NULL,'WX1 6LT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10463,'SUPRD', 5, CAST('2015-03-04T13:00:00.000' AS TIMESTAMP), CAST('2015-04-01T00:00:00.000' AS TIMESTAMP), CAST('2015-03-06T00:00:00.000' AS TIMESTAMP), 3, 14.7800,'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, CAST('2015-03-04T15:00:00.000' AS TIMESTAMP), CAST('2015-04-01T00:00:00.000' AS TIMESTAMP), CAST('2015-03-14T00:00:00.000' AS TIMESTAMP), 2, 89.0000,'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, CAST('2015-03-05T08:00:00.000' AS TIMESTAMP), CAST('2015-04-02T00:00:00.000' AS TIMESTAMP), CAST('2015-03-14T00:00:00.000' AS TIMESTAMP), 3, 145.0400,'Vaffeljernet','Smagsloget 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, CAST('2015-03-06T01:00:00.000' AS TIMESTAMP), CAST('2015-04-03T00:00:00.000' AS TIMESTAMP), CAST('2015-03-13T00:00:00.000' AS TIMESTAMP), 1, 11.9300,'Comércio Mineiro','Av. dos Lusáadas, 23','Sao 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, CAST('2015-03-06T01:00:00.000' AS TIMESTAMP), CAST('2015-04-03T00:00:00.000' AS TIMESTAMP), CAST('2015-03-11T00:00:00.000' AS TIMESTAMP), 2, 4.9300,'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, CAST('2015-03-07T03:00:00.000' AS TIMESTAMP), CAST('2015-04-04T00:00:00.000' AS TIMESTAMP), CAST('2015-03-12T00:00:00.000' AS TIMESTAMP), 3, 44.1200,'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, CAST('2015-03-10T20:00:00.000' AS TIMESTAMP), CAST('2015-04-07T00:00:00.000' AS TIMESTAMP), CAST('2015-03-14T00:00:00.000' AS TIMESTAMP), 1, 60.1800,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10470,'BONAP', 4, CAST('2015-03-11T02:00:00.000' AS TIMESTAMP), CAST('2015-04-08T00:00:00.000' AS TIMESTAMP), CAST('2015-03-14T00:00:00.000' AS TIMESTAMP), 2, 64.5600,'Bon app''','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, CAST('2015-03-11T06:00:00.000' AS TIMESTAMP), CAST('2015-04-08T00:00:00.000' AS TIMESTAMP), CAST('2015-03-18T00:00:00.000' AS TIMESTAMP), 3, 45.5900,'B''s Beverages','Fauntleroy Circus','London', NULL,'EC2 5NT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10472,'SEVES', 8, CAST('2015-03-12T01:00:00.000' AS TIMESTAMP), CAST('2015-04-09T00:00:00.000' AS TIMESTAMP), CAST('2015-03-19T00:00:00.000' AS TIMESTAMP), 1, 4.2000,'Seven Seas Imports','90 Wadhurst Rd.','London', NULL,'OX15 4NB','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10473,'ISLAT', 1, CAST('2015-03-13T06:00:00.000' AS TIMESTAMP), CAST('2015-03-27T00:00:00.000' AS TIMESTAMP), CAST('2015-03-21T00:00:00.000' AS TIMESTAMP), 3, 16.3700,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10474,'PERIC', 5, CAST('2015-03-13T16:00:00.000' AS TIMESTAMP), CAST('2015-04-10T00:00:00.000' AS TIMESTAMP), CAST('2015-03-21T00:00:00.000' AS TIMESTAMP), 2, 83.4900,'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, CAST('2015-03-14T11:00:00.000' AS TIMESTAMP), CAST('2015-04-11T00:00:00.000' AS TIMESTAMP), CAST('2015-04-04T00:00:00.000' AS TIMESTAMP), 1, 68.5200,'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, CAST('2015-03-17T00:00:00.000' AS TIMESTAMP), CAST('2015-04-14T00:00:00.000' AS TIMESTAMP), CAST('2015-03-24T00:00:00.000' AS TIMESTAMP), 3, 4.4100,'HILARION-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, CAST('2015-03-17T02:00:00.000' AS TIMESTAMP), CAST('2015-04-14T00:00:00.000' AS TIMESTAMP), CAST('2015-03-25T00:00:00.000' AS TIMESTAMP), 2, 13.0200,'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, CAST('2015-03-18T20:00:00.000' AS TIMESTAMP), CAST('2015-04-01T00:00:00.000' AS TIMESTAMP), CAST('2015-03-26T00:00:00.000' AS TIMESTAMP), 3, 4.8100,'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, CAST('2015-03-19T01:00:00.000' AS TIMESTAMP), CAST('2015-04-16T00:00:00.000' AS TIMESTAMP), CAST('2015-03-21T00:00:00.000' AS TIMESTAMP), 3, 708.9500,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10480,'FOLIG', 6, CAST('2015-03-20T11:00:00.000' AS TIMESTAMP), CAST('2015-04-17T00:00:00.000' AS TIMESTAMP), CAST('2015-03-24T00:00:00.000' AS TIMESTAMP), 2, 1.3500,'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, CAST('2015-03-20T17:00:00.000' AS TIMESTAMP), CAST('2015-04-17T00:00:00.000' AS TIMESTAMP), CAST('2015-03-25T00:00:00.000' AS TIMESTAMP), 2, 64.3300,'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, CAST('2015-03-21T02:00:00.000' AS TIMESTAMP), CAST('2015-04-18T00:00:00.000' AS TIMESTAMP), CAST('2015-04-10T00:00:00.000' AS TIMESTAMP), 3, 7.4800,'Lazy K Kountry Store','12 Orchestra Terrace','Walla Walla','WA','99362','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10483,'WHITC', 7, CAST('2015-03-24T07:00:00.000' AS TIMESTAMP), CAST('2015-04-21T00:00:00.000' AS TIMESTAMP), CAST('2015-04-25T00:00:00.000' AS TIMESTAMP), 2, 15.2800,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10484,'BSBEV', 3, CAST('2015-03-24T17:00:00.000' AS TIMESTAMP), CAST('2015-04-21T00:00:00.000' AS TIMESTAMP), CAST('2015-04-01T00:00:00.000' AS TIMESTAMP), 3, 6.8800,'B''s Beverages','Fauntleroy Circus','London', NULL,'EC2 5NT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10485,'LINOD', 4, CAST('2015-03-25T17:00:00.000' AS TIMESTAMP), CAST('2015-04-08T00:00:00.000' AS TIMESTAMP), CAST('2015-03-31T00:00:00.000' AS TIMESTAMP), 2, 64.4500,'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, CAST('2015-03-26T17:00:00.000' AS TIMESTAMP), CAST('2015-04-23T00:00:00.000' AS TIMESTAMP), CAST('2015-04-02T00:00:00.000' AS TIMESTAMP), 2, 30.5300,'HILARION-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, CAST('2015-03-26T21:00:00.000' AS TIMESTAMP), CAST('2015-04-23T00:00:00.000' AS TIMESTAMP), CAST('2015-03-28T00:00:00.000' AS TIMESTAMP), 2, 71.0700,'Queen Cozinha','Alameda dos CanÃários, 891','Sao 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, CAST('2015-03-27T01:00:00.000' AS TIMESTAMP), CAST('2015-04-24T00:00:00.000' AS TIMESTAMP), CAST('2015-04-02T00:00:00.000' AS TIMESTAMP), 2, 4.9300,'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, CAST('2015-03-28T06:00:00.000' AS TIMESTAMP), CAST('2015-04-25T00:00:00.000' AS TIMESTAMP), CAST('2015-04-09T00:00:00.000' AS TIMESTAMP), 2, 5.2900,'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, CAST('2015-03-31T00:00:00.000' AS TIMESTAMP), CAST('2015-04-28T00:00:00.000' AS TIMESTAMP), CAST('2015-04-03T00:00:00.000' AS TIMESTAMP), 2, 210.1900,'HILARION-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, CAST('2015-03-31T00:00:00.000' AS TIMESTAMP), CAST('2015-04-28T00:00:00.000' AS TIMESTAMP), CAST('2015-04-08T00:00:00.000' AS TIMESTAMP), 3, 16.9600,'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, CAST('2015-04-01T07:00:00.000' AS TIMESTAMP), CAST('2015-04-29T00:00:00.000' AS TIMESTAMP), CAST('2015-04-11T00:00:00.000' AS TIMESTAMP), 1, 62.8900,'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, CAST('2015-04-02T22:00:00.000' AS TIMESTAMP), CAST('2015-04-30T00:00:00.000' AS TIMESTAMP), CAST('2015-04-10T00:00:00.000' AS TIMESTAMP), 3, 10.6400,'La maison d''Asie','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, CAST('2015-04-02T05:00:00.000' AS TIMESTAMP), CAST('2015-04-30T00:00:00.000' AS TIMESTAMP), CAST('2015-04-09T00:00:00.000' AS TIMESTAMP), 2, 65.9900,'Comércio Mineiro','Av. dos Lusáadas, 23','Sao 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, CAST('2015-04-03T01:00:00.000' AS TIMESTAMP), CAST('2015-05-01T00:00:00.000' AS TIMESTAMP), CAST('2015-04-11T00:00:00.000' AS TIMESTAMP), 3, 4.6500,'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, CAST('2015-04-04T03:00:00.000' AS TIMESTAMP), CAST('2015-05-02T00:00:00.000' AS TIMESTAMP), CAST('2015-04-07T00:00:00.000' AS TIMESTAMP), 2, 46.7700,'Tradiúao Hipermercados','Av. Inìs de Castro, 414','Sao 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, CAST('2015-04-04T22:00:00.000' AS TIMESTAMP), CAST('2015-05-02T00:00:00.000' AS TIMESTAMP), CAST('2015-04-07T00:00:00.000' AS TIMESTAMP), 1, 36.2100,'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, CAST('2015-04-07T00:00:00.000' AS TIMESTAMP), CAST('2015-05-05T00:00:00.000' AS TIMESTAMP), CAST('2015-04-11T00:00:00.000' AS TIMESTAMP), 2, 29.7500,'HILARION-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, CAST('2015-04-08T11:00:00.000' AS TIMESTAMP), CAST('2015-05-06T00:00:00.000' AS TIMESTAMP), CAST('2015-04-16T00:00:00.000' AS TIMESTAMP), 2, 102.0200,'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, CAST('2015-04-09T21:00:00.000' AS TIMESTAMP), CAST('2015-05-07T00:00:00.000' AS TIMESTAMP), CAST('2015-04-17T00:00:00.000' AS TIMESTAMP), 1, 42.6800,'La maison d''Asie','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, CAST('2015-04-09T19:00:00.000' AS TIMESTAMP), CAST('2015-05-07T00:00:00.000' AS TIMESTAMP), CAST('2015-04-16T00:00:00.000' AS TIMESTAMP), 3, 8.8500,'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, CAST('2015-04-10T10:00:00.000' AS TIMESTAMP), CAST('2015-05-08T00:00:00.000' AS TIMESTAMP), CAST('2015-04-29T00:00:00.000' AS TIMESTAMP), 1, 69.3200,'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, CAST('2015-04-11T21:00:00.000' AS TIMESTAMP), CAST('2015-05-09T00:00:00.000' AS TIMESTAMP), CAST('2015-04-16T00:00:00.000' AS TIMESTAMP), 2, 16.7400,'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, CAST('2015-04-11T00:00:00.000' AS TIMESTAMP), CAST('2015-05-09T00:00:00.000' AS TIMESTAMP), CAST('2015-04-18T00:00:00.000' AS TIMESTAMP), 3, 59.1300,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10505,'MEREP', 3, CAST('2015-04-14T11:00:00.000' AS TIMESTAMP), CAST('2015-05-12T00:00:00.000' AS TIMESTAMP), CAST('2015-04-21T00:00:00.000' AS TIMESTAMP), 3, 7.1300,'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, CAST('2015-04-15T06:00:00.000' AS TIMESTAMP), CAST('2015-05-13T00:00:00.000' AS TIMESTAMP), CAST('2015-05-02T00:00:00.000' AS TIMESTAMP), 2, 21.1900,'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, CAST('2015-04-15T05:00:00.000' AS TIMESTAMP), CAST('2015-05-13T00:00:00.000' AS TIMESTAMP), CAST('2015-04-22T00:00:00.000' AS TIMESTAMP), 1, 47.4500,'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, CAST('2015-04-16T18:00:00.000' AS TIMESTAMP), CAST('2015-05-14T00:00:00.000' AS TIMESTAMP), CAST('2015-05-13T00:00:00.000' AS TIMESTAMP), 2, 4.9900,'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, CAST('2015-04-17T22:00:00.000' AS TIMESTAMP), CAST('2015-05-15T00:00:00.000' AS TIMESTAMP), CAST('2015-04-29T00:00:00.000' AS TIMESTAMP), 1, 0.1500,'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, CAST('2015-04-18T22:00:00.000' AS TIMESTAMP), CAST('2015-05-16T00:00:00.000' AS TIMESTAMP), CAST('2015-04-28T00:00:00.000' AS TIMESTAMP), 3, 367.6300,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10511,'BONAP', 4, CAST('2015-04-18T01:00:00.000' AS TIMESTAMP), CAST('2015-05-16T00:00:00.000' AS TIMESTAMP), CAST('2015-04-21T00:00:00.000' AS TIMESTAMP), 3, 350.6400,'Bon app''','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, CAST('2015-04-21T08:00:00.000' AS TIMESTAMP), CAST('2015-05-19T00:00:00.000' AS TIMESTAMP), CAST('2015-04-24T00:00:00.000' AS TIMESTAMP), 2, 3.5300,'Familia Arquibaldo','Rua Orós, 92','Sao 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, CAST('2015-04-22T05:00:00.000' AS TIMESTAMP), CAST('2015-06-03T00:00:00.000' AS TIMESTAMP), CAST('2015-04-28T00:00:00.000' AS TIMESTAMP), 1, 105.6500,'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, CAST('2015-04-22T08:00:00.000' AS TIMESTAMP), CAST('2015-05-20T00:00:00.000' AS TIMESTAMP), CAST('2015-05-16T00:00:00.000' AS TIMESTAMP), 2, 789.9500,'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, CAST('2015-04-23T17:00:00.000' AS TIMESTAMP), CAST('2015-05-07T00:00:00.000' AS TIMESTAMP), CAST('2015-05-23T00:00:00.000' AS TIMESTAMP), 1, 204.4700,'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, CAST('2015-04-24T06:00:00.000' AS TIMESTAMP), CAST('2015-05-22T00:00:00.000' AS TIMESTAMP), CAST('2015-05-01T00:00:00.000' AS TIMESTAMP), 3, 62.7800,'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, CAST('2015-04-24T08:00:00.000' AS TIMESTAMP), CAST('2015-05-22T00:00:00.000' AS TIMESTAMP), CAST('2015-04-29T00:00:00.000' AS TIMESTAMP), 3, 32.0700,'North/South','South House 300 Queensbridge','London', NULL,'SW7 1RZ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10518,'TORTU', 4, CAST('2015-04-25T13:00:00.000' AS TIMESTAMP), CAST('2015-05-09T00:00:00.000' AS TIMESTAMP), CAST('2015-05-05T00:00:00.000' AS TIMESTAMP), 2, 218.1500,'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, CAST('2015-04-28T06:00:00.000' AS TIMESTAMP), CAST('2015-05-26T00:00:00.000' AS TIMESTAMP), CAST('2015-05-01T00:00:00.000' AS TIMESTAMP), 3, 91.7600,'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, CAST('2015-04-29T08:00:00.000' AS TIMESTAMP), CAST('2015-05-27T00:00:00.000' AS TIMESTAMP), CAST('2015-05-01T00:00:00.000' AS TIMESTAMP), 1, 13.3700,'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, CAST('2015-04-29T17:00:00.000' AS TIMESTAMP), CAST('2015-05-27T00:00:00.000' AS TIMESTAMP), CAST('2015-05-02T00:00:00.000' AS TIMESTAMP), 2, 17.2200,'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, CAST('2015-04-30T00:00:00.000' AS TIMESTAMP), CAST('2015-05-28T00:00:00.000' AS TIMESTAMP), CAST('2015-05-06T00:00:00.000' AS TIMESTAMP), 1, 45.3300,'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, CAST('2015-05-01T13:00:00.000' AS TIMESTAMP), CAST('2015-05-29T00:00:00.000' AS TIMESTAMP), CAST('2015-05-30T00:00:00.000' AS TIMESTAMP), 2, 77.6300,'Seven Seas Imports','90 Wadhurst Rd.','London', NULL,'OX15 4NB','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10524,'BERGS', 1, CAST('2015-05-01T15:00:00.000' AS TIMESTAMP), CAST('2015-05-29T00:00:00.000' AS TIMESTAMP), CAST('2015-05-07T00:00:00.000' AS TIMESTAMP), 2, 244.7900,'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, CAST('2015-05-02T01:00:00.000' AS TIMESTAMP), CAST('2015-05-30T00:00:00.000' AS TIMESTAMP), CAST('2015-05-23T00:00:00.000' AS TIMESTAMP), 2, 11.0600,'Bon app''','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, CAST('2015-05-05T02:00:00.000' AS TIMESTAMP), CAST('2015-06-02T00:00:00.000' AS TIMESTAMP), CAST('2015-05-15T00:00:00.000' AS TIMESTAMP), 2, 58.5900,'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, CAST('2015-05-05T08:00:00.000' AS TIMESTAMP), CAST('2015-06-02T00:00:00.000' AS TIMESTAMP), CAST('2015-05-07T00:00:00.000' AS TIMESTAMP), 1, 41.9000,'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, CAST('2015-05-06T12:00:00.000' AS TIMESTAMP), CAST('2015-05-20T00:00:00.000' AS TIMESTAMP), CAST('2015-05-09T00:00:00.000' AS TIMESTAMP), 2, 3.3500,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10529,'MAISD', 5, CAST('2015-05-07T01:00:00.000' AS TIMESTAMP), CAST('2015-06-04T00:00:00.000' AS TIMESTAMP), CAST('2015-05-09T00:00:00.000' AS TIMESTAMP), 2, 66.6900,'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, CAST('2015-05-08T19:00:00.000' AS TIMESTAMP), CAST('2015-06-05T00:00:00.000' AS TIMESTAMP), CAST('2015-05-12T00:00:00.000' AS TIMESTAMP), 2, 339.2200,'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, CAST('2015-05-08T01:00:00.000' AS TIMESTAMP), CAST('2015-06-05T00:00:00.000' AS TIMESTAMP), CAST('2015-05-19T00:00:00.000' AS TIMESTAMP), 1, 8.1200,'Oc̩ano Atl̒ntico Ltda.','Ing. Gustavo Moncada 8585 Piso 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, CAST('2015-05-09T04:00:00.000' AS TIMESTAMP), CAST('2015-06-06T00:00:00.000' AS TIMESTAMP), CAST('2015-05-12T00:00:00.000' AS TIMESTAMP), 3, 74.4600,'Eastern Connection','35 King George','London', NULL,'WX3 6FW','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10533,'FOLKO', 8, CAST('2015-05-12T22:00:00.000' AS TIMESTAMP), CAST('2015-06-09T00:00:00.000' AS TIMESTAMP), CAST('2015-05-22T00:00:00.000' AS TIMESTAMP), 1, 188.0400,'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, CAST('2015-05-12T06:00:00.000' AS TIMESTAMP), CAST('2015-06-09T00:00:00.000' AS TIMESTAMP), CAST('2015-05-14T00:00:00.000' AS TIMESTAMP), 2, 27.9400,'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, CAST('2015-05-13T07:00:00.000' AS TIMESTAMP), CAST('2015-06-10T00:00:00.000' AS TIMESTAMP), CAST('2015-05-21T00:00:00.000' AS TIMESTAMP), 1, 15.6400,'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, CAST('2015-05-14T10:00:00.000' AS TIMESTAMP), CAST('2015-06-11T00:00:00.000' AS TIMESTAMP), CAST('2015-06-06T00:00:00.000' AS TIMESTAMP), 2, 58.8800,'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, CAST('2015-05-14T02:00:00.000' AS TIMESTAMP), CAST('2015-05-28T00:00:00.000' AS TIMESTAMP), CAST('2015-05-19T00:00:00.000' AS TIMESTAMP), 1, 78.8500,'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, CAST('2015-05-15T10:00:00.000' AS TIMESTAMP), CAST('2015-06-12T00:00:00.000' AS TIMESTAMP), CAST('2015-05-16T00:00:00.000' AS TIMESTAMP), 3, 4.8700,'B''s Beverages','Fauntleroy Circus','London', NULL,'EC2 5NT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10539,'BSBEV', 6, CAST('2015-05-16T18:00:00.000' AS TIMESTAMP), CAST('2015-06-13T00:00:00.000' AS TIMESTAMP), CAST('2015-05-23T00:00:00.000' AS TIMESTAMP), 3, 12.3600,'B''s Beverages','Fauntleroy Circus','London', NULL,'EC2 5NT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10540,'QUICK', 3, CAST('2015-05-19T05:00:00.000' AS TIMESTAMP), CAST('2015-06-16T00:00:00.000' AS TIMESTAMP), CAST('2015-06-13T00:00:00.000' AS TIMESTAMP), 3, 1007.6400,'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, CAST('2015-05-19T13:00:00.000' AS TIMESTAMP), CAST('2015-06-16T00:00:00.000' AS TIMESTAMP), CAST('2015-05-29T00:00:00.000' AS TIMESTAMP), 1, 68.6500,'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, CAST('2015-05-20T20:00:00.000' AS TIMESTAMP), CAST('2015-06-17T00:00:00.000' AS TIMESTAMP), CAST('2015-05-26T00:00:00.000' AS TIMESTAMP), 3, 10.9500,'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, CAST('2015-05-21T03:00:00.000' AS TIMESTAMP), CAST('2015-06-18T00:00:00.000' AS TIMESTAMP), CAST('2015-05-23T00:00:00.000' AS TIMESTAMP), 2, 48.1700,'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, CAST('2015-05-21T04:00:00.000' AS TIMESTAMP), CAST('2015-06-18T00:00:00.000' AS TIMESTAMP), CAST('2015-05-30T00:00:00.000' AS TIMESTAMP), 1, 24.9100,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10545,'LAZYK', 8, CAST('2015-05-22T14:00:00.000' AS TIMESTAMP), CAST('2015-06-19T00:00:00.000' AS TIMESTAMP), CAST('2015-06-26T00:00:00.000' AS TIMESTAMP), 2, 11.9200,'Lazy K Kountry Store','12 Orchestra Terrace','Walla Walla','WA','99362','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10546,'VICTE', 1, CAST('2015-05-23T00:00:00.000' AS TIMESTAMP), CAST('2015-06-20T00:00:00.000' AS TIMESTAMP), CAST('2015-05-27T00:00:00.000' AS TIMESTAMP), 3, 194.7200,'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, CAST('2015-05-23T16:00:00.000' AS TIMESTAMP), CAST('2015-06-20T00:00:00.000' AS TIMESTAMP), CAST('2015-06-02T00:00:00.000' AS TIMESTAMP), 2, 178.4300,'Seven Seas Imports','90 Wadhurst Rd.','London', NULL,'OX15 4NB','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10548,'TOMSP', 3, CAST('2015-05-26T11:00:00.000' AS TIMESTAMP), CAST('2015-06-23T00:00:00.000' AS TIMESTAMP), CAST('2015-06-02T00:00:00.000' AS TIMESTAMP), 2, 1.4300,'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, CAST('2015-05-27T03:00:00.000' AS TIMESTAMP), CAST('2015-06-10T00:00:00.000' AS TIMESTAMP), CAST('2015-05-30T00:00:00.000' AS TIMESTAMP), 1, 171.2400,'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, CAST('2015-05-28T18:00:00.000' AS TIMESTAMP), CAST('2015-06-25T00:00:00.000' AS TIMESTAMP), CAST('2015-06-06T00:00:00.000' AS TIMESTAMP), 3, 4.3200,'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, CAST('2015-05-28T06:00:00.000' AS TIMESTAMP), CAST('2015-07-09T00:00:00.000' AS TIMESTAMP), CAST('2015-06-06T00:00:00.000' AS TIMESTAMP), 3, 72.9500,'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, CAST('2015-05-29T08:00:00.000' AS TIMESTAMP), CAST('2015-06-26T00:00:00.000' AS TIMESTAMP), CAST('2015-06-05T00:00:00.000' AS TIMESTAMP), 1, 83.2200,'HILARION-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, CAST('2015-05-30T03:00:00.000' AS TIMESTAMP), CAST('2015-06-27T00:00:00.000' AS TIMESTAMP), CAST('2015-06-03T00:00:00.000' AS TIMESTAMP), 2, 149.4900,'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, CAST('2015-05-30T21:00:00.000' AS TIMESTAMP), CAST('2015-06-27T00:00:00.000' AS TIMESTAMP), CAST('2015-06-05T00:00:00.000' AS TIMESTAMP), 3, 120.9700,'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, CAST('2015-06-02T22:00:00.000' AS TIMESTAMP), CAST('2015-06-30T00:00:00.000' AS TIMESTAMP), CAST('2015-06-04T00:00:00.000' AS TIMESTAMP), 3, 252.4900,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10556,'SIMOB', 2, CAST('2015-06-03T14:00:00.000' AS TIMESTAMP), CAST('2015-07-15T00:00:00.000' AS TIMESTAMP), CAST('2015-06-13T00:00:00.000' AS TIMESTAMP), 1, 9.8000,'Simons bistro','Vinbêltet 34','Kobenhavn', NULL,'1734','Denmark');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10557,'LEHMS', 9, CAST('2015-06-03T22:00:00.000' AS TIMESTAMP), CAST('2015-06-17T00:00:00.000' AS TIMESTAMP), CAST('2015-06-06T00:00:00.000' AS TIMESTAMP), 2, 96.7200,'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, CAST('2015-06-04T14:00:00.000' AS TIMESTAMP), CAST('2015-07-02T00:00:00.000' AS TIMESTAMP), CAST('2015-06-10T00:00:00.000' AS TIMESTAMP), 2, 72.9700,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10559,'BLONP', 6, CAST('2015-06-05T04:00:00.000' AS TIMESTAMP), CAST('2015-07-03T00:00:00.000' AS TIMESTAMP), CAST('2015-06-13T00:00:00.000' AS TIMESTAMP), 1, 8.0500,'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, CAST('2015-06-06T12:00:00.000' AS TIMESTAMP), CAST('2015-07-04T00:00:00.000' AS TIMESTAMP), CAST('2015-06-09T00:00:00.000' AS TIMESTAMP), 1, 36.6500,'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, CAST('2015-06-06T21:00:00.000' AS TIMESTAMP), CAST('2015-07-04T00:00:00.000' AS TIMESTAMP), CAST('2015-06-09T00:00:00.000' AS TIMESTAMP), 2, 242.2100,'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, CAST('2015-06-09T19:00:00.000' AS TIMESTAMP), CAST('2015-07-07T00:00:00.000' AS TIMESTAMP), CAST('2015-06-12T00:00:00.000' AS TIMESTAMP), 1, 22.9500,'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, CAST('2015-06-10T22:00:00.000' AS TIMESTAMP), CAST('2015-07-22T00:00:00.000' AS TIMESTAMP), CAST('2015-06-24T00:00:00.000' AS TIMESTAMP), 2, 60.4300,'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, CAST('2015-06-10T00:00:00.000' AS TIMESTAMP), CAST('2015-07-08T00:00:00.000' AS TIMESTAMP), CAST('2015-06-16T00:00:00.000' AS TIMESTAMP), 3, 13.7500,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10565,'MEREP', 8, CAST('2015-06-11T22:00:00.000' AS TIMESTAMP), CAST('2015-07-09T00:00:00.000' AS TIMESTAMP), CAST('2015-06-18T00:00:00.000' AS TIMESTAMP), 2, 7.1500,'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, CAST('2015-06-12T18:00:00.000' AS TIMESTAMP), CAST('2015-07-10T00:00:00.000' AS TIMESTAMP), CAST('2015-06-18T00:00:00.000' AS TIMESTAMP), 1, 88.4000,'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, CAST('2015-06-12T19:00:00.000' AS TIMESTAMP), CAST('2015-07-10T00:00:00.000' AS TIMESTAMP), CAST('2015-06-17T00:00:00.000' AS TIMESTAMP), 1, 33.9700,'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, CAST('2015-06-13T18:00:00.000' AS TIMESTAMP), CAST('2015-07-11T00:00:00.000' AS TIMESTAMP), CAST('2015-07-09T00:00:00.000' AS TIMESTAMP), 3, 6.5400,'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, CAST('2015-06-16T15:00:00.000' AS TIMESTAMP), CAST('2015-07-14T00:00:00.000' AS TIMESTAMP), CAST('2015-07-11T00:00:00.000' AS TIMESTAMP), 1, 58.9800,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10570,'MEREP', 3, CAST('2015-06-17T11:00:00.000' AS TIMESTAMP), CAST('2015-07-15T00:00:00.000' AS TIMESTAMP), CAST('2015-06-19T00:00:00.000' AS TIMESTAMP), 3, 188.9900,'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, CAST('2015-06-17T15:00:00.000' AS TIMESTAMP), CAST('2015-07-29T00:00:00.000' AS TIMESTAMP), CAST('2015-07-04T00:00:00.000' AS TIMESTAMP), 3, 26.0600,'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, CAST('2015-06-18T05:00:00.000' AS TIMESTAMP), CAST('2015-07-16T00:00:00.000' AS TIMESTAMP), CAST('2015-06-25T00:00:00.000' AS TIMESTAMP), 2, 116.4300,'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, CAST('2015-06-19T02:00:00.000' AS TIMESTAMP), CAST('2015-07-17T00:00:00.000' AS TIMESTAMP), CAST('2015-06-20T00:00:00.000' AS TIMESTAMP), 3, 84.8400,'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, CAST('2015-06-19T14:00:00.000' AS TIMESTAMP), CAST('2015-07-17T00:00:00.000' AS TIMESTAMP), CAST('2015-06-30T00:00:00.000' AS TIMESTAMP), 2, 37.6000,'Trail''s Head Gourmet Provisioners','722 DaVinci Blvd.','Kirkland','WA','98034','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10575,'MORGK', 5, CAST('2015-06-20T22:00:00.000' AS TIMESTAMP), CAST('2015-07-04T00:00:00.000' AS TIMESTAMP), CAST('2015-06-30T00:00:00.000' AS TIMESTAMP), 1, 127.3400,'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, CAST('2015-06-23T13:00:00.000' AS TIMESTAMP), CAST('2015-07-07T00:00:00.000' AS TIMESTAMP), CAST('2015-06-30T00:00:00.000' AS TIMESTAMP), 3, 18.5600,'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, CAST('2015-06-23T19:00:00.000' AS TIMESTAMP), CAST('2015-08-04T00:00:00.000' AS TIMESTAMP), CAST('2015-06-30T00:00:00.000' AS TIMESTAMP), 2, 25.4100,'Trail''s Head Gourmet Provisioners','722 DaVinci Blvd.','Kirkland','WA','98034','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10578,'BSBEV', 4, CAST('2015-06-24T15:00:00.000' AS TIMESTAMP), CAST('2015-07-22T00:00:00.000' AS TIMESTAMP), CAST('2015-07-25T00:00:00.000' AS TIMESTAMP), 3, 29.6000,'B''s Beverages','Fauntleroy Circus','London', NULL,'EC2 5NT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10579,'LETSS', 1, CAST('2015-06-25T19:00:00.000' AS TIMESTAMP), CAST('2015-07-23T00:00:00.000' AS TIMESTAMP), CAST('2015-07-04T00:00:00.000' AS TIMESTAMP), 2, 13.7300,'Let''s Stop N Shop','87 Polk St. Suite 5','San Francisco','CA','94117','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10580,'OTTIK', 4, CAST('2015-06-26T19:00:00.000' AS TIMESTAMP), CAST('2015-07-24T00:00:00.000' AS TIMESTAMP), CAST('2015-07-01T00:00:00.000' AS TIMESTAMP), 3, 75.8900,'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, CAST('2015-06-26T11:00:00.000' AS TIMESTAMP), CAST('2015-07-24T00:00:00.000' AS TIMESTAMP), CAST('2015-07-02T00:00:00.000' AS TIMESTAMP), 1, 3.0100,'Familia Arquibaldo','Rua Orós, 92','Sao 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, CAST('2015-06-27T22:00:00.000' AS TIMESTAMP), CAST('2015-07-25T00:00:00.000' AS TIMESTAMP), CAST('2015-07-14T00:00:00.000' AS TIMESTAMP), 2, 27.7100,'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, CAST('2015-06-30T00:00:00.000' AS TIMESTAMP), CAST('2015-07-28T00:00:00.000' AS TIMESTAMP), CAST('2015-07-04T00:00:00.000' AS TIMESTAMP), 2, 7.2800,'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, CAST('2015-06-30T00:00:00.000' AS TIMESTAMP), CAST('2015-07-28T00:00:00.000' AS TIMESTAMP), CAST('2015-07-04T00:00:00.000' AS TIMESTAMP), 1, 59.1400,'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, CAST('2015-07-01T13:00:00.000' AS TIMESTAMP), CAST('2015-07-29T00:00:00.000' AS TIMESTAMP), CAST('2015-07-10T00:00:00.000' AS TIMESTAMP), 1, 13.4100,'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, CAST('2015-07-02T10:00:00.000' AS TIMESTAMP), CAST('2015-07-30T00:00:00.000' AS TIMESTAMP), CAST('2015-07-09T00:00:00.000' AS TIMESTAMP), 1, 0.4800,'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, CAST('2015-07-02T03:00:00.000' AS TIMESTAMP), CAST('2015-07-30T00:00:00.000' AS TIMESTAMP), CAST('2015-07-09T00:00:00.000' AS TIMESTAMP), 1, 62.5200,'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, CAST('2015-07-03T17:00:00.000' AS TIMESTAMP), CAST('2015-07-31T00:00:00.000' AS TIMESTAMP), CAST('2015-07-10T00:00:00.000' AS TIMESTAMP), 3, 194.6700,'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, CAST('2015-07-04T17:00:00.000' AS TIMESTAMP), CAST('2015-08-01T00:00:00.000' AS TIMESTAMP), CAST('2015-07-14T00:00:00.000' AS TIMESTAMP), 2, 4.4200,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10590,'MEREP', 4, CAST('2015-07-07T09:00:00.000' AS TIMESTAMP), CAST('2015-08-04T00:00:00.000' AS TIMESTAMP), CAST('2015-07-14T00:00:00.000' AS TIMESTAMP), 3, 44.7700,'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, CAST('2015-07-07T13:00:00.000' AS TIMESTAMP), CAST('2015-07-21T00:00:00.000' AS TIMESTAMP), CAST('2015-07-16T00:00:00.000' AS TIMESTAMP), 1, 55.9200,'Vaffeljernet','Smagsloget 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, CAST('2015-07-08T20:00:00.000' AS TIMESTAMP), CAST('2015-08-05T00:00:00.000' AS TIMESTAMP), CAST('2015-07-16T00:00:00.000' AS TIMESTAMP), 1, 32.1000,'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, CAST('2015-07-09T10:00:00.000' AS TIMESTAMP), CAST('2015-08-06T00:00:00.000' AS TIMESTAMP), CAST('2015-08-13T00:00:00.000' AS TIMESTAMP), 2, 174.2000,'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, CAST('2015-07-09T17:00:00.000' AS TIMESTAMP), CAST('2015-08-06T00:00:00.000' AS TIMESTAMP), CAST('2015-07-16T00:00:00.000' AS TIMESTAMP), 2, 5.2400,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10595,'ERNSH', 2, CAST('2015-07-10T17:00:00.000' AS TIMESTAMP), CAST('2015-08-07T00:00:00.000' AS TIMESTAMP), CAST('2015-07-14T00:00:00.000' AS TIMESTAMP), 1, 96.7800,'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, CAST('2015-07-11T06:00:00.000' AS TIMESTAMP), CAST('2015-08-08T00:00:00.000' AS TIMESTAMP), CAST('2015-08-12T00:00:00.000' AS TIMESTAMP), 1, 16.3400,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10597,'PICCO', 7, CAST('2015-07-11T07:00:00.000' AS TIMESTAMP), CAST('2015-08-08T00:00:00.000' AS TIMESTAMP), CAST('2015-07-18T00:00:00.000' AS TIMESTAMP), 3, 35.1200,'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, CAST('2015-07-14T05:00:00.000' AS TIMESTAMP), CAST('2015-08-11T00:00:00.000' AS TIMESTAMP), CAST('2015-07-18T00:00:00.000' AS TIMESTAMP), 3, 44.4200,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10599,'BSBEV', 6, CAST('2015-07-15T06:00:00.000' AS TIMESTAMP), CAST('2015-08-26T00:00:00.000' AS TIMESTAMP), CAST('2015-07-21T00:00:00.000' AS TIMESTAMP), 3, 29.9800,'B''s Beverages','Fauntleroy Circus','London', NULL,'EC2 5NT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10600,'HUNGC', 4, CAST('2015-07-16T10:00:00.000' AS TIMESTAMP), CAST('2015-08-13T00:00:00.000' AS TIMESTAMP), CAST('2015-07-21T00:00:00.000' AS TIMESTAMP), 1, 45.1300,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10601,'HILAA', 7, CAST('2015-07-16T11:00:00.000' AS TIMESTAMP), CAST('2015-08-27T00:00:00.000' AS TIMESTAMP), CAST('2015-07-22T00:00:00.000' AS TIMESTAMP), 1, 58.3000,'HILARION-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, CAST('2015-07-17T21:00:00.000' AS TIMESTAMP), CAST('2015-08-14T00:00:00.000' AS TIMESTAMP), CAST('2015-07-22T00:00:00.000' AS TIMESTAMP), 2, 2.9200,'Vaffeljernet','Smagsloget 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, CAST('2015-07-18T09:00:00.000' AS TIMESTAMP), CAST('2015-08-15T00:00:00.000' AS TIMESTAMP), CAST('2015-08-08T00:00:00.000' AS TIMESTAMP), 2, 48.7700,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10604,'FURIB', 1, CAST('2015-07-18T07:00:00.000' AS TIMESTAMP), CAST('2015-08-15T00:00:00.000' AS TIMESTAMP), CAST('2015-07-29T00:00:00.000' AS TIMESTAMP), 1, 7.4600,'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, CAST('2015-07-21T22:00:00.000' AS TIMESTAMP), CAST('2015-08-18T00:00:00.000' AS TIMESTAMP), CAST('2015-07-29T00:00:00.000' AS TIMESTAMP), 2, 379.1300,'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, CAST('2015-07-22T00:00:00.000' AS TIMESTAMP), CAST('2015-08-19T00:00:00.000' AS TIMESTAMP), CAST('2015-07-31T00:00:00.000' AS TIMESTAMP), 3, 79.4000,'Tradiúao Hipermercados','Av. Inìs de Castro, 414','Sao 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, CAST('2015-07-22T09:00:00.000' AS TIMESTAMP), CAST('2015-08-19T00:00:00.000' AS TIMESTAMP), CAST('2015-07-25T00:00:00.000' AS TIMESTAMP), 1, 200.2400,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10608,'TOMSP', 4, CAST('2015-07-23T10:00:00.000' AS TIMESTAMP), CAST('2015-08-20T00:00:00.000' AS TIMESTAMP), CAST('2015-08-01T00:00:00.000' AS TIMESTAMP), 2, 27.7900,'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, CAST('2015-07-24T11:00:00.000' AS TIMESTAMP), CAST('2015-08-21T00:00:00.000' AS TIMESTAMP), CAST('2015-07-30T00:00:00.000' AS TIMESTAMP), 2, 1.8500,'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, CAST('2015-07-25T16:00:00.000' AS TIMESTAMP), CAST('2015-08-22T00:00:00.000' AS TIMESTAMP), CAST('2015-08-06T00:00:00.000' AS TIMESTAMP), 1, 26.7800,'La maison d''Asie','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, CAST('2015-07-25T06:00:00.000' AS TIMESTAMP), CAST('2015-08-22T00:00:00.000' AS TIMESTAMP), CAST('2015-08-01T00:00:00.000' AS TIMESTAMP), 2, 80.6500,'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, CAST('2015-07-28T18:00:00.000' AS TIMESTAMP), CAST('2015-08-25T00:00:00.000' AS TIMESTAMP), CAST('2015-08-01T00:00:00.000' AS TIMESTAMP), 2, 544.0800,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10613,'HILAA', 4, CAST('2015-07-29T05:00:00.000' AS TIMESTAMP), CAST('2015-08-26T00:00:00.000' AS TIMESTAMP), CAST('2015-08-01T00:00:00.000' AS TIMESTAMP), 2, 8.1100,'HILARION-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, CAST('2015-07-29T09:00:00.000' AS TIMESTAMP), CAST('2015-08-26T00:00:00.000' AS TIMESTAMP), CAST('2015-08-01T00:00:00.000' AS TIMESTAMP), 3, 1.9300,'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, CAST('2015-07-30T16:00:00.000' AS TIMESTAMP), CAST('2015-08-27T00:00:00.000' AS TIMESTAMP), CAST('2015-08-06T00:00:00.000' AS TIMESTAMP), 3, 0.7500,'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, CAST('2015-07-31T00:00:00.000' AS TIMESTAMP), CAST('2015-08-28T00:00:00.000' AS TIMESTAMP), CAST('2015-08-05T00:00:00.000' AS TIMESTAMP), 2, 116.5300,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10617,'GREAL', 4, CAST('2015-07-31T00:00:00.000' AS TIMESTAMP), CAST('2015-08-28T00:00:00.000' AS TIMESTAMP), CAST('2015-08-04T00:00:00.000' AS TIMESTAMP), 2, 18.5300,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10618,'MEREP', 1, CAST('2015-08-01T04:00:00.000' AS TIMESTAMP), CAST('2015-09-12T00:00:00.000' AS TIMESTAMP), CAST('2015-08-08T00:00:00.000' AS TIMESTAMP), 1, 154.6800,'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, CAST('2015-08-04T04:00:00.000' AS TIMESTAMP), CAST('2015-09-01T00:00:00.000' AS TIMESTAMP), CAST('2015-08-07T00:00:00.000' AS TIMESTAMP), 3, 91.0500,'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, CAST('2015-08-05T07:00:00.000' AS TIMESTAMP), CAST('2015-09-02T00:00:00.000' AS TIMESTAMP), CAST('2015-08-14T00:00:00.000' AS TIMESTAMP), 3, 0.9400,'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, CAST('2015-08-05T16:00:00.000' AS TIMESTAMP), CAST('2015-09-02T00:00:00.000' AS TIMESTAMP), CAST('2015-08-11T00:00:00.000' AS TIMESTAMP), 2, 23.7300,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10622,'RICAR', 4, CAST('2015-08-06T06:00:00.000' AS TIMESTAMP), CAST('2015-09-03T00:00:00.000' AS TIMESTAMP), CAST('2015-08-11T00:00:00.000' AS TIMESTAMP), 3, 50.9700,'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, CAST('2015-08-07T02:00:00.000' AS TIMESTAMP), CAST('2015-09-04T00:00:00.000' AS TIMESTAMP), CAST('2015-08-12T00:00:00.000' AS TIMESTAMP), 2, 97.1800,'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, CAST('2015-08-07T05:00:00.000' AS TIMESTAMP), CAST('2015-09-04T00:00:00.000' AS TIMESTAMP), CAST('2015-08-19T00:00:00.000' AS TIMESTAMP), 2, 94.8000,'The Cracker Box','55 Grizzly Peak Rd.','Butte','MT','59801','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10625,'ANATR', 3, CAST('2015-08-08T15:00:00.000' AS TIMESTAMP), CAST('2015-09-05T00:00:00.000' AS TIMESTAMP), CAST('2015-08-14T00:00:00.000' AS TIMESTAMP), 1, 43.9000,'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, CAST('2015-08-11T06:00:00.000' AS TIMESTAMP), CAST('2015-09-08T00:00:00.000' AS TIMESTAMP), CAST('2015-08-20T00:00:00.000' AS TIMESTAMP), 2, 138.6900,'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, CAST('2015-08-11T15:00:00.000' AS TIMESTAMP), CAST('2015-09-22T00:00:00.000' AS TIMESTAMP), CAST('2015-08-21T00:00:00.000' AS TIMESTAMP), 3, 107.4600,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10628,'BLONP', 4, CAST('2015-08-12T15:00:00.000' AS TIMESTAMP), CAST('2015-09-09T00:00:00.000' AS TIMESTAMP), CAST('2015-08-20T00:00:00.000' AS TIMESTAMP), 3, 30.3600,'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, CAST('2015-08-12T15:00:00.000' AS TIMESTAMP), CAST('2015-09-09T00:00:00.000' AS TIMESTAMP), CAST('2015-08-20T00:00:00.000' AS TIMESTAMP), 3, 85.4600,'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, CAST('2015-08-13T10:00:00.000' AS TIMESTAMP), CAST('2015-09-10T00:00:00.000' AS TIMESTAMP), CAST('2015-08-19T00:00:00.000' AS TIMESTAMP), 2, 32.3500,'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, CAST('2015-08-14T01:00:00.000' AS TIMESTAMP), CAST('2015-09-11T00:00:00.000' AS TIMESTAMP), CAST('2015-08-15T00:00:00.000' AS TIMESTAMP), 1, 0.8700,'La maison d''Asie','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, CAST('2015-08-14T03:00:00.000' AS TIMESTAMP), CAST('2015-09-11T00:00:00.000' AS TIMESTAMP), CAST('2015-08-19T00:00:00.000' AS TIMESTAMP), 1, 41.3800,'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, CAST('2015-08-15T06:00:00.000' AS TIMESTAMP), CAST('2015-09-12T00:00:00.000' AS TIMESTAMP), CAST('2015-08-18T00:00:00.000' AS TIMESTAMP), 3, 477.9000,'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, CAST('2015-08-15T13:00:00.000' AS TIMESTAMP), CAST('2015-09-12T00:00:00.000' AS TIMESTAMP), CAST('2015-08-21T00:00:00.000' AS TIMESTAMP), 3, 487.3800,'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, CAST('2015-08-18T13:00:00.000' AS TIMESTAMP), CAST('2015-09-15T00:00:00.000' AS TIMESTAMP), CAST('2015-08-21T00:00:00.000' AS TIMESTAMP), 3, 47.4600,'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, CAST('2015-08-19T15:00:00.000' AS TIMESTAMP), CAST('2015-09-16T00:00:00.000' AS TIMESTAMP), CAST('2015-08-26T00:00:00.000' AS TIMESTAMP), 1, 1.1500,'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, CAST('2015-08-19T16:00:00.000' AS TIMESTAMP), CAST('2015-09-16T00:00:00.000' AS TIMESTAMP), CAST('2015-08-26T00:00:00.000' AS TIMESTAMP), 1, 201.2900,'Queen Cozinha','Alameda dos CanÃários, 891','Sao 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, CAST('2015-08-20T16:00:00.000' AS TIMESTAMP), CAST('2015-09-17T00:00:00.000' AS TIMESTAMP), CAST('2015-09-01T00:00:00.000' AS TIMESTAMP), 1, 158.4400,'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, CAST('2015-08-20T06:00:00.000' AS TIMESTAMP), CAST('2015-09-17T00:00:00.000' AS TIMESTAMP), CAST('2015-08-27T00:00:00.000' AS TIMESTAMP), 3, 38.6400,'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, CAST('2015-08-21T07:00:00.000' AS TIMESTAMP), CAST('2015-09-18T00:00:00.000' AS TIMESTAMP), CAST('2015-08-28T00:00:00.000' AS TIMESTAMP), 1, 23.5500,'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, CAST('2015-08-22T04:00:00.000' AS TIMESTAMP), CAST('2015-09-19T00:00:00.000' AS TIMESTAMP), CAST('2015-08-26T00:00:00.000' AS TIMESTAMP), 2, 179.6100,'HILARION-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, CAST('2015-08-22T00:00:00.000' AS TIMESTAMP), CAST('2015-09-19T00:00:00.000' AS TIMESTAMP), CAST('2015-09-05T00:00:00.000' AS TIMESTAMP), 3, 41.8900,'Simons bistro','Vinbêltet 34','Kobenhavn', NULL,'1734','Denmark');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10643,'ALFKI', 6, CAST('2015-08-25T19:00:00.000' AS TIMESTAMP), CAST('2015-09-22T00:00:00.000' AS TIMESTAMP), CAST('2015-09-02T00:00:00.000' AS TIMESTAMP), 1, 29.4600,'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, CAST('2015-08-25T07:00:00.000' AS TIMESTAMP), CAST('2015-09-22T00:00:00.000' AS TIMESTAMP), CAST('2015-09-01T00:00:00.000' AS TIMESTAMP), 2, 0.1400,'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, CAST('2015-08-26T03:00:00.000' AS TIMESTAMP), CAST('2015-09-23T00:00:00.000' AS TIMESTAMP), CAST('2015-09-02T00:00:00.000' AS TIMESTAMP), 1, 12.4100,'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, CAST('2015-08-27T00:00:00.000' AS TIMESTAMP), CAST('2015-10-08T00:00:00.000' AS TIMESTAMP), CAST('2015-09-03T00:00:00.000' AS TIMESTAMP), 3, 142.3300,'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, CAST('2015-08-27T04:00:00.000' AS TIMESTAMP), CAST('2015-09-10T00:00:00.000' AS TIMESTAMP), CAST('2015-09-03T00:00:00.000' AS TIMESTAMP), 2, 45.5400,'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, CAST('2015-08-28T22:00:00.000' AS TIMESTAMP), CAST('2015-10-09T00:00:00.000' AS TIMESTAMP), CAST('2015-09-09T00:00:00.000' AS TIMESTAMP), 2, 14.2500,'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, CAST('2015-08-28T00:00:00.000' AS TIMESTAMP), CAST('2015-09-25T00:00:00.000' AS TIMESTAMP), CAST('2015-08-29T00:00:00.000' AS TIMESTAMP), 3, 6.2000,'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, CAST('2015-08-29T06:00:00.000' AS TIMESTAMP), CAST('2015-09-26T00:00:00.000' AS TIMESTAMP), CAST('2015-09-03T00:00:00.000' AS TIMESTAMP), 3, 176.8100,'Familia Arquibaldo','Rua Orós, 92','Sao 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, CAST('2015-09-01T05:00:00.000' AS TIMESTAMP), CAST('2015-09-29T00:00:00.000' AS TIMESTAMP), CAST('2015-09-11T00:00:00.000' AS TIMESTAMP), 2, 20.6000,'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, CAST('2015-09-01T20:00:00.000' AS TIMESTAMP), CAST('2015-09-29T00:00:00.000' AS TIMESTAMP), CAST('2015-09-08T00:00:00.000' AS TIMESTAMP), 2, 7.1400,'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, CAST('2015-09-02T09:00:00.000' AS TIMESTAMP), CAST('2015-09-30T00:00:00.000' AS TIMESTAMP), CAST('2015-09-19T00:00:00.000' AS TIMESTAMP), 1, 93.2500,'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, CAST('2015-09-02T07:00:00.000' AS TIMESTAMP), CAST('2015-09-30T00:00:00.000' AS TIMESTAMP), CAST('2015-09-11T00:00:00.000' AS TIMESTAMP), 1, 55.2600,'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, CAST('2015-09-03T00:00:00.000' AS TIMESTAMP), CAST('2015-10-01T00:00:00.000' AS TIMESTAMP), CAST('2015-09-11T00:00:00.000' AS TIMESTAMP), 2, 4.4100,'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, CAST('2015-09-04T11:00:00.000' AS TIMESTAMP), CAST('2015-10-02T00:00:00.000' AS TIMESTAMP), CAST('2015-09-10T00:00:00.000' AS TIMESTAMP), 1, 57.1500,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10657,'SAVEA', 2, CAST('2015-09-04T11:00:00.000' AS TIMESTAMP), CAST('2015-10-02T00:00:00.000' AS TIMESTAMP), CAST('2015-09-15T00:00:00.000' AS TIMESTAMP), 2, 352.6900,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10658,'QUICK', 4, CAST('2015-09-05T02:00:00.000' AS TIMESTAMP), CAST('2015-10-03T00:00:00.000' AS TIMESTAMP), CAST('2015-09-08T00:00:00.000' AS TIMESTAMP), 1, 364.1500,'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, CAST('2015-09-05T02:00:00.000' AS TIMESTAMP), CAST('2015-10-03T00:00:00.000' AS TIMESTAMP), CAST('2015-09-10T00:00:00.000' AS TIMESTAMP), 2, 105.8100,'Queen Cozinha','Alameda dos CanÃários, 891','Sao 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, CAST('2015-09-08T03:00:00.000' AS TIMESTAMP), CAST('2015-10-06T00:00:00.000' AS TIMESTAMP), CAST('2015-10-15T00:00:00.000' AS TIMESTAMP), 1, 111.2900,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10661,'HUNGO', 7, CAST('2015-09-09T14:00:00.000' AS TIMESTAMP), CAST('2015-10-07T00:00:00.000' AS TIMESTAMP), CAST('2015-09-15T00:00:00.000' AS TIMESTAMP), 3, 17.5500,'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, CAST('2015-09-09T22:00:00.000' AS TIMESTAMP), CAST('2015-10-07T00:00:00.000' AS TIMESTAMP), CAST('2015-09-18T00:00:00.000' AS TIMESTAMP), 2, 1.2800,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10663,'BONAP', 2, CAST('2015-09-10T12:00:00.000' AS TIMESTAMP), CAST('2015-09-24T00:00:00.000' AS TIMESTAMP), CAST('2015-10-03T00:00:00.000' AS TIMESTAMP), 2, 113.1500,'Bon app''','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, CAST('2015-09-10T12:00:00.000' AS TIMESTAMP), CAST('2015-10-08T00:00:00.000' AS TIMESTAMP), CAST('2015-09-19T00:00:00.000' AS TIMESTAMP), 3, 1.2700,'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, CAST('2015-09-11T06:00:00.000' AS TIMESTAMP), CAST('2015-10-09T00:00:00.000' AS TIMESTAMP), CAST('2015-09-17T00:00:00.000' AS TIMESTAMP), 2, 26.3100,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10666,'RICSU', 7, CAST('2015-09-12T12:00:00.000' AS TIMESTAMP), CAST('2015-10-10T00:00:00.000' AS TIMESTAMP), CAST('2015-09-22T00:00:00.000' AS TIMESTAMP), 2, 232.4200,'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, CAST('2015-09-12T21:00:00.000' AS TIMESTAMP), CAST('2015-10-10T00:00:00.000' AS TIMESTAMP), CAST('2015-09-19T00:00:00.000' AS TIMESTAMP), 1, 78.0900,'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, CAST('2015-09-15T14:00:00.000' AS TIMESTAMP), CAST('2015-10-13T00:00:00.000' AS TIMESTAMP), CAST('2015-09-23T00:00:00.000' AS TIMESTAMP), 2, 47.2200,'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, CAST('2015-09-15T22:00:00.000' AS TIMESTAMP), CAST('2015-10-13T00:00:00.000' AS TIMESTAMP), CAST('2015-09-22T00:00:00.000' AS TIMESTAMP), 1, 24.3900,'Simons bistro','Vinbêltet 34','Kobenhavn', NULL,'1734','Denmark');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10670,'FRANK', 4, CAST('2015-09-16T09:00:00.000' AS TIMESTAMP), CAST('2015-10-14T00:00:00.000' AS TIMESTAMP), CAST('2015-09-18T00:00:00.000' AS TIMESTAMP), 1, 203.4800,'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, CAST('2015-09-17T06:00:00.000' AS TIMESTAMP), CAST('2015-10-15T00:00:00.000' AS TIMESTAMP), CAST('2015-09-24T00:00:00.000' AS TIMESTAMP), 1, 30.3400,'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, CAST('2015-09-17T13:00:00.000' AS TIMESTAMP), CAST('2015-10-01T00:00:00.000' AS TIMESTAMP), CAST('2015-09-26T00:00:00.000' AS TIMESTAMP), 2, 95.7500,'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, CAST('2015-09-18T08:00:00.000' AS TIMESTAMP), CAST('2015-10-16T00:00:00.000' AS TIMESTAMP), CAST('2015-09-19T00:00:00.000' AS TIMESTAMP), 1, 22.7600,'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, CAST('2015-09-18T17:00:00.000' AS TIMESTAMP), CAST('2015-10-16T00:00:00.000' AS TIMESTAMP), CAST('2015-09-30T00:00:00.000' AS TIMESTAMP), 2, 0.9000,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10675,'FRANK', 5, CAST('2015-09-19T06:00:00.000' AS TIMESTAMP), CAST('2015-10-17T00:00:00.000' AS TIMESTAMP), CAST('2015-09-23T00:00:00.000' AS TIMESTAMP), 2, 31.8500,'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, CAST('2015-09-22T10:00:00.000' AS TIMESTAMP), CAST('2015-10-20T00:00:00.000' AS TIMESTAMP), CAST('2015-09-29T00:00:00.000' AS TIMESTAMP), 2, 2.0100,'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, CAST('2015-09-22T20:00:00.000' AS TIMESTAMP), CAST('2015-10-20T00:00:00.000' AS TIMESTAMP), CAST('2015-09-26T00:00:00.000' AS TIMESTAMP), 3, 4.0300,'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, CAST('2015-09-23T20:00:00.000' AS TIMESTAMP), CAST('2015-10-21T00:00:00.000' AS TIMESTAMP), CAST('2015-10-16T00:00:00.000' AS TIMESTAMP), 3, 388.9800,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10679,'BLONP', 8, CAST('2015-09-23T19:00:00.000' AS TIMESTAMP), CAST('2015-10-21T00:00:00.000' AS TIMESTAMP), CAST('2015-09-30T00:00:00.000' AS TIMESTAMP), 3, 27.9400,'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, CAST('2015-09-24T16:00:00.000' AS TIMESTAMP), CAST('2015-10-22T00:00:00.000' AS TIMESTAMP), CAST('2015-09-26T00:00:00.000' AS TIMESTAMP), 1, 26.6100,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10681,'GREAL', 3, CAST('2015-09-25T00:00:00.000' AS TIMESTAMP), CAST('2015-10-23T00:00:00.000' AS TIMESTAMP), CAST('2015-09-30T00:00:00.000' AS TIMESTAMP), 3, 76.1300,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10682,'ANTON', 3, CAST('2015-09-25T04:00:00.000' AS TIMESTAMP), CAST('2015-10-23T00:00:00.000' AS TIMESTAMP), CAST('2015-10-01T00:00:00.000' AS TIMESTAMP), 2, 36.1300,'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, CAST('2015-09-26T18:00:00.000' AS TIMESTAMP), CAST('2015-10-24T00:00:00.000' AS TIMESTAMP), CAST('2015-10-01T00:00:00.000' AS TIMESTAMP), 1, 4.4000,'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, CAST('2015-09-26T01:00:00.000' AS TIMESTAMP), CAST('2015-10-24T00:00:00.000' AS TIMESTAMP), CAST('2015-09-30T00:00:00.000' AS TIMESTAMP), 1, 145.6300,'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, CAST('2015-09-29T00:00:00.000' AS TIMESTAMP), CAST('2015-10-13T00:00:00.000' AS TIMESTAMP), CAST('2015-10-03T00:00:00.000' AS TIMESTAMP), 2, 33.7500,'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, CAST('2015-09-30T00:00:00.000' AS TIMESTAMP), CAST('2015-10-28T00:00:00.000' AS TIMESTAMP), CAST('2015-10-08T00:00:00.000' AS TIMESTAMP), 1, 96.5000,'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, CAST('2015-09-30T00:00:00.000' AS TIMESTAMP), CAST('2015-10-28T00:00:00.000' AS TIMESTAMP), CAST('2015-10-30T00:00:00.000' AS TIMESTAMP), 2, 296.4300,'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, CAST('2015-10-01T10:00:00.000' AS TIMESTAMP), CAST('2015-10-15T00:00:00.000' AS TIMESTAMP), CAST('2015-10-07T00:00:00.000' AS TIMESTAMP), 2, 299.0900,'Vaffeljernet','Smagsloget 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, CAST('2015-10-01T06:00:00.000' AS TIMESTAMP), CAST('2015-10-29T00:00:00.000' AS TIMESTAMP), CAST('2015-10-07T00:00:00.000' AS TIMESTAMP), 2, 13.4200,'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, CAST('2015-10-02T04:00:00.000' AS TIMESTAMP), CAST('2015-10-30T00:00:00.000' AS TIMESTAMP), CAST('2015-10-03T00:00:00.000' AS TIMESTAMP), 1, 15.8000,'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, CAST('2015-10-03T14:00:00.000' AS TIMESTAMP), CAST('2015-11-14T00:00:00.000' AS TIMESTAMP), CAST('2015-10-22T00:00:00.000' AS TIMESTAMP), 2, 810.0500,'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, CAST('2015-10-03T05:00:00.000' AS TIMESTAMP), CAST('2015-10-31T00:00:00.000' AS TIMESTAMP), CAST('2015-10-13T00:00:00.000' AS TIMESTAMP), 2, 61.0200,'Alfred''s 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, CAST('2015-10-06T05:00:00.000' AS TIMESTAMP), CAST('2015-10-20T00:00:00.000' AS TIMESTAMP), CAST('2015-10-10T00:00:00.000' AS TIMESTAMP), 3, 139.3400,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10694,'QUICK', 8, CAST('2015-10-06T10:00:00.000' AS TIMESTAMP), CAST('2015-11-03T00:00:00.000' AS TIMESTAMP), CAST('2015-10-09T00:00:00.000' AS TIMESTAMP), 3, 398.3600,'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, CAST('2015-10-07T08:00:00.000' AS TIMESTAMP), CAST('2015-11-18T00:00:00.000' AS TIMESTAMP), CAST('2015-10-14T00:00:00.000' AS TIMESTAMP), 1, 16.7200,'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, CAST('2015-10-08T00:00:00.000' AS TIMESTAMP), CAST('2015-11-19T00:00:00.000' AS TIMESTAMP), CAST('2015-10-14T00:00:00.000' AS TIMESTAMP), 3, 102.5500,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10697,'LINOD', 3, CAST('2015-10-08T04:00:00.000' AS TIMESTAMP), CAST('2015-11-05T00:00:00.000' AS TIMESTAMP), CAST('2015-10-14T00:00:00.000' AS TIMESTAMP), 1, 45.5200,'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, CAST('2015-10-09T14:00:00.000' AS TIMESTAMP), CAST('2015-11-06T00:00:00.000' AS TIMESTAMP), CAST('2015-10-17T00:00:00.000' AS TIMESTAMP), 1, 272.4700,'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, CAST('2015-10-09T05:00:00.000' AS TIMESTAMP), CAST('2015-11-06T00:00:00.000' AS TIMESTAMP), CAST('2015-10-13T00:00:00.000' AS TIMESTAMP), 3, 0.5800,'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, CAST('2015-10-10T19:00:00.000' AS TIMESTAMP), CAST('2015-11-07T00:00:00.000' AS TIMESTAMP), CAST('2015-10-16T00:00:00.000' AS TIMESTAMP), 1, 65.1000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10701,'HUNGO', 6, CAST('2015-10-13T00:00:00.000' AS TIMESTAMP), CAST('2015-10-27T00:00:00.000' AS TIMESTAMP), CAST('2015-10-15T00:00:00.000' AS TIMESTAMP), 3, 220.3100,'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, CAST('2015-10-13T19:00:00.000' AS TIMESTAMP), CAST('2015-11-24T00:00:00.000' AS TIMESTAMP), CAST('2015-10-21T00:00:00.000' AS TIMESTAMP), 1, 23.9400,'Alfred''s 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, CAST('2015-10-14T16:00:00.000' AS TIMESTAMP), CAST('2015-11-11T00:00:00.000' AS TIMESTAMP), CAST('2015-10-20T00:00:00.000' AS TIMESTAMP), 2, 152.3000,'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, CAST('2015-10-14T18:00:00.000' AS TIMESTAMP), CAST('2015-11-11T00:00:00.000' AS TIMESTAMP), CAST('2015-11-07T00:00:00.000' AS TIMESTAMP), 1, 4.7800,'Queen Cozinha','Alameda dos CanÃários, 891','Sao 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, CAST('2015-10-15T19:00:00.000' AS TIMESTAMP), CAST('2015-11-12T00:00:00.000' AS TIMESTAMP), CAST('2015-11-18T00:00:00.000' AS TIMESTAMP), 2, 3.5200,'HILARION-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, CAST('2015-10-16T15:00:00.000' AS TIMESTAMP), CAST('2015-11-13T00:00:00.000' AS TIMESTAMP), CAST('2015-10-21T00:00:00.000' AS TIMESTAMP), 3, 135.6300,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10707,'AROUT', 4, CAST('2015-10-16T06:00:00.000' AS TIMESTAMP), CAST('2015-10-30T00:00:00.000' AS TIMESTAMP), CAST('2015-10-23T00:00:00.000' AS TIMESTAMP), 3, 21.7400,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10708,'THEBI', 6, CAST('2015-10-17T11:00:00.000' AS TIMESTAMP), CAST('2015-11-28T00:00:00.000' AS TIMESTAMP), CAST('2015-11-05T00:00:00.000' AS TIMESTAMP), 2, 2.9600,'The Big Cheese','89 Jefferson Way Suite 2','Portland','OR','97201','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10709,'GOURL', 1, CAST('2015-10-17T13:00:00.000' AS TIMESTAMP), CAST('2015-11-14T00:00:00.000' AS TIMESTAMP), CAST('2015-11-20T00:00:00.000' AS TIMESTAMP), 3, 210.8000,'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, CAST('2015-10-20T10:00:00.000' AS TIMESTAMP), CAST('2015-11-17T00:00:00.000' AS TIMESTAMP), CAST('2015-10-23T00:00:00.000' AS TIMESTAMP), 1, 4.9800,'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, CAST('2015-10-21T03:00:00.000' AS TIMESTAMP), CAST('2015-12-02T00:00:00.000' AS TIMESTAMP), CAST('2015-10-29T00:00:00.000' AS TIMESTAMP), 2, 52.4100,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10712,'HUNGO', 3, CAST('2015-10-21T10:00:00.000' AS TIMESTAMP), CAST('2015-11-18T00:00:00.000' AS TIMESTAMP), CAST('2015-10-31T00:00:00.000' AS TIMESTAMP), 1, 89.9300,'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, CAST('2015-10-22T00:00:00.000' AS TIMESTAMP), CAST('2015-11-19T00:00:00.000' AS TIMESTAMP), CAST('2015-10-24T00:00:00.000' AS TIMESTAMP), 1, 167.0500,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10714,'SAVEA', 5, CAST('2015-10-22T03:00:00.000' AS TIMESTAMP), CAST('2015-11-19T00:00:00.000' AS TIMESTAMP), CAST('2015-10-27T00:00:00.000' AS TIMESTAMP), 3, 24.4900,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10715,'BONAP', 3, CAST('2015-10-23T14:00:00.000' AS TIMESTAMP), CAST('2015-11-06T00:00:00.000' AS TIMESTAMP), CAST('2015-10-29T00:00:00.000' AS TIMESTAMP), 1, 63.2000,'Bon app''','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, CAST('2015-10-24T05:00:00.000' AS TIMESTAMP), CAST('2015-11-21T00:00:00.000' AS TIMESTAMP), CAST('2015-10-27T00:00:00.000' AS TIMESTAMP), 2, 22.5700,'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, CAST('2015-10-24T04:00:00.000' AS TIMESTAMP), CAST('2015-11-21T00:00:00.000' AS TIMESTAMP), CAST('2015-10-29T00:00:00.000' AS TIMESTAMP), 2, 59.2500,'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, CAST('2015-10-27T10:00:00.000' AS TIMESTAMP), CAST('2015-11-24T00:00:00.000' AS TIMESTAMP), CAST('2015-10-29T00:00:00.000' AS TIMESTAMP), 3, 170.8800,'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, CAST('2015-10-27T17:00:00.000' AS TIMESTAMP), CAST('2015-11-24T00:00:00.000' AS TIMESTAMP), CAST('2015-11-05T00:00:00.000' AS TIMESTAMP), 2, 51.4400,'Let''s Stop N Shop','87 Polk St. Suite 5','San Francisco','CA','94117','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10720,'QUEDE', 8, CAST('2015-10-28T17:00:00.000' AS TIMESTAMP), CAST('2015-11-11T00:00:00.000' AS TIMESTAMP), CAST('2015-11-05T00:00:00.000' AS TIMESTAMP), 2, 9.5300,'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, CAST('2015-10-29T08:00:00.000' AS TIMESTAMP), CAST('2015-11-26T00:00:00.000' AS TIMESTAMP), CAST('2015-10-31T00:00:00.000' AS TIMESTAMP), 3, 48.9200,'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, CAST('2015-10-29T03:00:00.000' AS TIMESTAMP), CAST('2015-12-10T00:00:00.000' AS TIMESTAMP), CAST('2015-11-04T00:00:00.000' AS TIMESTAMP), 1, 74.5800,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10723,'WHITC', 3, CAST('2015-10-30T22:00:00.000' AS TIMESTAMP), CAST('2015-11-27T00:00:00.000' AS TIMESTAMP), CAST('2015-11-25T00:00:00.000' AS TIMESTAMP), 1, 21.7200,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10724,'MEREP', 8, CAST('2015-10-30T05:00:00.000' AS TIMESTAMP), CAST('2015-12-11T00:00:00.000' AS TIMESTAMP), CAST('2015-11-05T00:00:00.000' AS TIMESTAMP), 2, 57.7500,'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, CAST('2015-10-31T00:00:00.000' AS TIMESTAMP), CAST('2015-11-28T00:00:00.000' AS TIMESTAMP), CAST('2015-11-05T00:00:00.000' AS TIMESTAMP), 3, 10.8300,'Familia Arquibaldo','Rua Orós, 92','Sao 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, CAST('2015-11-03T05:00:00.000' AS TIMESTAMP), CAST('2015-11-17T00:00:00.000' AS TIMESTAMP), CAST('2015-12-05T00:00:00.000' AS TIMESTAMP), 1, 16.5600,'Eastern Connection','35 King George','London', NULL,'WX3 6FW','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10727,'REGGC', 2, CAST('2015-11-03T20:00:00.000' AS TIMESTAMP), CAST('2015-12-01T00:00:00.000' AS TIMESTAMP), CAST('2015-12-05T00:00:00.000' AS TIMESTAMP), 1, 89.9000,'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, CAST('2015-11-04T16:00:00.000' AS TIMESTAMP), CAST('2015-12-02T00:00:00.000' AS TIMESTAMP), CAST('2015-11-11T00:00:00.000' AS TIMESTAMP), 2, 58.3300,'Queen Cozinha','Alameda dos CanÃários, 891','Sao 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, CAST('2015-11-04T20:00:00.000' AS TIMESTAMP), CAST('2015-12-16T00:00:00.000' AS TIMESTAMP), CAST('2015-11-14T00:00:00.000' AS TIMESTAMP), 3, 141.0600,'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, CAST('2015-11-05T07:00:00.000' AS TIMESTAMP), CAST('2015-12-03T00:00:00.000' AS TIMESTAMP), CAST('2015-11-14T00:00:00.000' AS TIMESTAMP), 1, 20.1200,'Bon app''','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, CAST('2015-11-06T13:00:00.000' AS TIMESTAMP), CAST('2015-12-04T00:00:00.000' AS TIMESTAMP), CAST('2015-11-14T00:00:00.000' AS TIMESTAMP), 1, 96.6500,'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, CAST('2015-11-06T15:00:00.000' AS TIMESTAMP), CAST('2015-12-04T00:00:00.000' AS TIMESTAMP), CAST('2015-11-07T00:00:00.000' AS TIMESTAMP), 1, 16.9700,'Bon app''','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, CAST('2015-11-07T02:00:00.000' AS TIMESTAMP), CAST('2015-12-05T00:00:00.000' AS TIMESTAMP), CAST('2015-11-10T00:00:00.000' AS TIMESTAMP), 3, 110.1100,'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, CAST('2015-11-07T05:00:00.000' AS TIMESTAMP), CAST('2015-12-05T00:00:00.000' AS TIMESTAMP), CAST('2015-11-12T00:00:00.000' AS TIMESTAMP), 3, 1.6300,'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, CAST('2015-11-10T20:00:00.000' AS TIMESTAMP), CAST('2015-12-08T00:00:00.000' AS TIMESTAMP), CAST('2015-11-21T00:00:00.000' AS TIMESTAMP), 2, 45.9700,'Let''s Stop N Shop','87 Polk St. Suite 5','San Francisco','CA','94117','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10736,'HUNGO', 9, CAST('2015-11-11T05:00:00.000' AS TIMESTAMP), CAST('2015-12-09T00:00:00.000' AS TIMESTAMP), CAST('2015-11-21T00:00:00.000' AS TIMESTAMP), 2, 44.1000,'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, CAST('2015-11-11T13:00:00.000' AS TIMESTAMP), CAST('2015-12-09T00:00:00.000' AS TIMESTAMP), CAST('2015-11-18T00:00:00.000' AS TIMESTAMP), 2, 7.7900,'Vins et alcools Chevalier','59 rue de l''Abbaye','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, CAST('2015-11-12T03:00:00.000' AS TIMESTAMP), CAST('2015-12-10T00:00:00.000' AS TIMESTAMP), CAST('2015-11-18T00:00:00.000' AS TIMESTAMP), 1, 2.9100,'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, CAST('2015-11-12T10:00:00.000' AS TIMESTAMP), CAST('2015-12-10T00:00:00.000' AS TIMESTAMP), CAST('2015-11-17T00:00:00.000' AS TIMESTAMP), 3, 11.0800,'Vins et alcools Chevalier','59 rue de l''Abbaye','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, CAST('2015-11-13T16:00:00.000' AS TIMESTAMP), CAST('2015-12-11T00:00:00.000' AS TIMESTAMP), CAST('2015-11-25T00:00:00.000' AS TIMESTAMP), 2, 81.8800,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10741,'AROUT', 4, CAST('2015-11-14T10:00:00.000' AS TIMESTAMP), CAST('2015-11-28T00:00:00.000' AS TIMESTAMP), CAST('2015-11-18T00:00:00.000' AS TIMESTAMP), 3, 10.9600,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10742,'BOTTM', 3, CAST('2015-11-14T12:00:00.000' AS TIMESTAMP), CAST('2015-12-12T00:00:00.000' AS TIMESTAMP), CAST('2015-11-18T00:00:00.000' AS TIMESTAMP), 3, 243.7300,'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, CAST('2015-11-17T18:00:00.000' AS TIMESTAMP), CAST('2015-12-15T00:00:00.000' AS TIMESTAMP), CAST('2015-11-21T00:00:00.000' AS TIMESTAMP), 2, 23.7200,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10744,'VAFFE', 6, CAST('2015-11-17T08:00:00.000' AS TIMESTAMP), CAST('2015-12-15T00:00:00.000' AS TIMESTAMP), CAST('2015-11-24T00:00:00.000' AS TIMESTAMP), 1, 69.1900,'Vaffeljernet','Smagsloget 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, CAST('2015-11-18T08:00:00.000' AS TIMESTAMP), CAST('2015-12-16T00:00:00.000' AS TIMESTAMP), CAST('2015-11-27T00:00:00.000' AS TIMESTAMP), 1, 3.5200,'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, CAST('2015-11-19T10:00:00.000' AS TIMESTAMP), CAST('2015-12-17T00:00:00.000' AS TIMESTAMP), CAST('2015-11-21T00:00:00.000' AS TIMESTAMP), 3, 31.4300,'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, CAST('2015-11-19T12:00:00.000' AS TIMESTAMP), CAST('2015-12-17T00:00:00.000' AS TIMESTAMP), CAST('2015-11-26T00:00:00.000' AS TIMESTAMP), 1, 117.3300,'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, CAST('2015-11-20T14:00:00.000' AS TIMESTAMP), CAST('2015-12-18T00:00:00.000' AS TIMESTAMP), CAST('2015-11-28T00:00:00.000' AS TIMESTAMP), 1, 232.5500,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10749,'ISLAT', 4, CAST('2015-11-20T00:00:00.000' AS TIMESTAMP), CAST('2015-12-18T00:00:00.000' AS TIMESTAMP), CAST('2015-12-19T00:00:00.000' AS TIMESTAMP), 2, 61.5300,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10750,'WARTH', 9, CAST('2015-11-21T16:00:00.000' AS TIMESTAMP), CAST('2015-12-19T00:00:00.000' AS TIMESTAMP), CAST('2015-11-24T00:00:00.000' AS TIMESTAMP), 1, 79.3000,'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, CAST('2015-11-24T03:00:00.000' AS TIMESTAMP), CAST('2015-12-22T00:00:00.000' AS TIMESTAMP), CAST('2015-12-03T00:00:00.000' AS TIMESTAMP), 3, 130.7900,'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, CAST('2015-11-24T22:00:00.000' AS TIMESTAMP), CAST('2015-12-22T00:00:00.000' AS TIMESTAMP), CAST('2015-11-28T00:00:00.000' AS TIMESTAMP), 3, 1.3900,'North/South','South House 300 Queensbridge','London', NULL,'SW7 1RZ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10753,'FRANS', 3, CAST('2015-11-25T07:00:00.000' AS TIMESTAMP), CAST('2015-12-23T00:00:00.000' AS TIMESTAMP), CAST('2015-11-27T00:00:00.000' AS TIMESTAMP), 1, 7.7000,'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, CAST('2015-11-25T03:00:00.000' AS TIMESTAMP), CAST('2015-12-23T00:00:00.000' AS TIMESTAMP), CAST('2015-11-27T00:00:00.000' AS TIMESTAMP), 3, 2.3800,'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, CAST('2015-11-26T03:00:00.000' AS TIMESTAMP), CAST('2015-12-24T00:00:00.000' AS TIMESTAMP), CAST('2015-11-28T00:00:00.000' AS TIMESTAMP), 2, 16.7100,'Bon app''','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, CAST('2015-11-27T20:00:00.000' AS TIMESTAMP), CAST('2015-12-25T00:00:00.000' AS TIMESTAMP), CAST('2015-12-02T00:00:00.000' AS TIMESTAMP), 2, 73.2100,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10757,'SAVEA', 6, CAST('2015-11-27T02:00:00.000' AS TIMESTAMP), CAST('2015-12-25T00:00:00.000' AS TIMESTAMP), CAST('2015-12-15T00:00:00.000' AS TIMESTAMP), 1, 8.1900,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10758,'RICSU', 3, CAST('2015-11-28T11:00:00.000' AS TIMESTAMP), CAST('2015-12-26T00:00:00.000' AS TIMESTAMP), CAST('2015-12-04T00:00:00.000' AS TIMESTAMP), 3, 138.1700,'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, CAST('2015-11-28T06:00:00.000' AS TIMESTAMP), CAST('2015-12-26T00:00:00.000' AS TIMESTAMP), CAST('2015-12-12T00:00:00.000' AS TIMESTAMP), 3, 11.9900,'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, CAST('2015-12-01T17:00:00.000' AS TIMESTAMP), CAST('2015-12-29T00:00:00.000' AS TIMESTAMP), CAST('2015-12-10T00:00:00.000' AS TIMESTAMP), 1, 155.6400,'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, CAST('2015-12-02T08:00:00.000' AS TIMESTAMP), CAST('2015-12-30T00:00:00.000' AS TIMESTAMP), CAST('2015-12-08T00:00:00.000' AS TIMESTAMP), 2, 18.6600,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10762,'FOLKO', 3, CAST('2015-12-02T00:00:00.000' AS TIMESTAMP), CAST('2015-12-30T00:00:00.000' AS TIMESTAMP), CAST('2015-12-09T00:00:00.000' AS TIMESTAMP), 1, 328.7400,'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, CAST('2015-12-03T05:00:00.000' AS TIMESTAMP), CAST('2015-12-31T00:00:00.000' AS TIMESTAMP), CAST('2015-12-08T00:00:00.000' AS TIMESTAMP), 3, 37.3500,'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, CAST('2015-12-03T12:00:00.000' AS TIMESTAMP), CAST('2015-12-31T00:00:00.000' AS TIMESTAMP), CAST('2015-12-08T00:00:00.000' AS TIMESTAMP), 3, 145.4500,'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, CAST('2015-12-04T10:00:00.000' AS TIMESTAMP), CAST('2016-01-01T00:00:00.000' AS TIMESTAMP), CAST('2015-12-09T00:00:00.000' AS TIMESTAMP), 3, 42.7400,'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, CAST('2015-12-05T02:00:00.000' AS TIMESTAMP), CAST('2016-01-02T00:00:00.000' AS TIMESTAMP), CAST('2015-12-09T00:00:00.000' AS TIMESTAMP), 1, 157.5500,'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, CAST('2015-12-05T22:00:00.000' AS TIMESTAMP), CAST('2016-01-02T00:00:00.000' AS TIMESTAMP), CAST('2015-12-15T00:00:00.000' AS TIMESTAMP), 3, 1.5900,'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, CAST('2015-12-08T20:00:00.000' AS TIMESTAMP), CAST('2016-01-05T00:00:00.000' AS TIMESTAMP), CAST('2015-12-15T00:00:00.000' AS TIMESTAMP), 2, 146.3200,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10769,'VAFFE', 3, CAST('2015-12-08T19:00:00.000' AS TIMESTAMP), CAST('2016-01-05T00:00:00.000' AS TIMESTAMP), CAST('2015-12-12T00:00:00.000' AS TIMESTAMP), 1, 65.0600,'Vaffeljernet','Smagsloget 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, CAST('2015-12-09T03:00:00.000' AS TIMESTAMP), CAST('2016-01-06T00:00:00.000' AS TIMESTAMP), CAST('2015-12-17T00:00:00.000' AS TIMESTAMP), 3, 5.3200,'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, CAST('2015-12-10T12:00:00.000' AS TIMESTAMP), CAST('2016-01-07T00:00:00.000' AS TIMESTAMP), CAST('2016-01-02T00:00:00.000' AS TIMESTAMP), 2, 11.1900,'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, CAST('2015-12-10T12:00:00.000' AS TIMESTAMP), CAST('2016-01-07T00:00:00.000' AS TIMESTAMP), CAST('2015-12-19T00:00:00.000' AS TIMESTAMP), 2, 91.2800,'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, CAST('2015-12-11T05:00:00.000' AS TIMESTAMP), CAST('2016-01-08T00:00:00.000' AS TIMESTAMP), CAST('2015-12-16T00:00:00.000' AS TIMESTAMP), 3, 96.4300,'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, CAST('2015-12-11T11:00:00.000' AS TIMESTAMP), CAST('2015-12-25T00:00:00.000' AS TIMESTAMP), CAST('2015-12-12T00:00:00.000' AS TIMESTAMP), 1, 48.2000,'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, CAST('2015-12-12T13:00:00.000' AS TIMESTAMP), CAST('2016-01-09T00:00:00.000' AS TIMESTAMP), CAST('2015-12-26T00:00:00.000' AS TIMESTAMP), 1, 20.2500,'The Cracker Box','55 Grizzly Peak Rd.','Butte','MT','59801','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10776,'ERNSH', 1, CAST('2015-12-15T19:00:00.000' AS TIMESTAMP), CAST('2016-01-12T00:00:00.000' AS TIMESTAMP), CAST('2015-12-18T00:00:00.000' AS TIMESTAMP), 3, 351.5300,'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, CAST('2015-12-15T08:00:00.000' AS TIMESTAMP), CAST('2015-12-29T00:00:00.000' AS TIMESTAMP), CAST('2016-01-21T00:00:00.000' AS TIMESTAMP), 2, 3.0100,'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, CAST('2015-12-16T07:00:00.000' AS TIMESTAMP), CAST('2016-01-13T00:00:00.000' AS TIMESTAMP), CAST('2015-12-24T00:00:00.000' AS TIMESTAMP), 1, 6.7900,'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, CAST('2015-12-16T04:00:00.000' AS TIMESTAMP), CAST('2016-01-13T00:00:00.000' AS TIMESTAMP), CAST('2016-01-14T00:00:00.000' AS TIMESTAMP), 2, 58.1300,'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, CAST('2015-12-16T22:00:00.000' AS TIMESTAMP), CAST('2015-12-30T00:00:00.000' AS TIMESTAMP), CAST('2015-12-25T00:00:00.000' AS TIMESTAMP), 1, 42.1300,'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, CAST('2015-12-17T02:00:00.000' AS TIMESTAMP), CAST('2016-01-14T00:00:00.000' AS TIMESTAMP), CAST('2015-12-19T00:00:00.000' AS TIMESTAMP), 3, 73.1600,'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, CAST('2015-12-17T13:00:00.000' AS TIMESTAMP), CAST('2016-01-14T00:00:00.000' AS TIMESTAMP), CAST('2015-12-22T00:00:00.000' AS TIMESTAMP), 3, 1.1000,'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, CAST('2015-12-18T15:00:00.000' AS TIMESTAMP), CAST('2016-01-15T00:00:00.000' AS TIMESTAMP), CAST('2015-12-19T00:00:00.000' AS TIMESTAMP), 2, 124.9800,'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, CAST('2015-12-18T04:00:00.000' AS TIMESTAMP), CAST('2016-01-15T00:00:00.000' AS TIMESTAMP), CAST('2015-12-22T00:00:00.000' AS TIMESTAMP), 3, 70.0900,'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, CAST('2015-12-18T11:00:00.000' AS TIMESTAMP), CAST('2016-01-15T00:00:00.000' AS TIMESTAMP), CAST('2015-12-24T00:00:00.000' AS TIMESTAMP), 3, 1.5100,'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, CAST('2015-12-19T16:00:00.000' AS TIMESTAMP), CAST('2016-01-16T00:00:00.000' AS TIMESTAMP), CAST('2015-12-23T00:00:00.000' AS TIMESTAMP), 1, 110.8700,'Queen Cozinha','Alameda dos CanÃários, 891','Sao 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, CAST('2015-12-19T07:00:00.000' AS TIMESTAMP), CAST('2016-01-02T00:00:00.000' AS TIMESTAMP), CAST('2015-12-26T00:00:00.000' AS TIMESTAMP), 1, 249.9300,'La maison d''Asie','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, CAST('2015-12-22T01:00:00.000' AS TIMESTAMP), CAST('2016-01-19T00:00:00.000' AS TIMESTAMP), CAST('2016-01-19T00:00:00.000' AS TIMESTAMP), 2, 42.7000,'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, CAST('2015-12-22T21:00:00.000' AS TIMESTAMP), CAST('2016-01-19T00:00:00.000' AS TIMESTAMP), CAST('2015-12-31T00:00:00.000' AS TIMESTAMP), 2, 100.6000,'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, CAST('2015-12-22T17:00:00.000' AS TIMESTAMP), CAST('2016-01-19T00:00:00.000' AS TIMESTAMP), CAST('2015-12-26T00:00:00.000' AS TIMESTAMP), 1, 28.2300,'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, CAST('2015-12-23T12:00:00.000' AS TIMESTAMP), CAST('2016-01-20T00:00:00.000' AS TIMESTAMP), CAST('2016-01-01T00:00:00.000' AS TIMESTAMP), 2, 16.8500,'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, CAST('2015-12-23T11:00:00.000' AS TIMESTAMP), CAST('2016-01-20T00:00:00.000' AS TIMESTAMP), CAST('2015-12-31T00:00:00.000' AS TIMESTAMP), 3, 23.7900,'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, CAST('2015-12-24T21:00:00.000' AS TIMESTAMP), CAST('2016-01-21T00:00:00.000' AS TIMESTAMP), CAST('2016-01-08T00:00:00.000' AS TIMESTAMP), 3, 4.5200,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10794,'QUEDE', 6, CAST('2015-12-24T03:00:00.000' AS TIMESTAMP), CAST('2016-01-21T00:00:00.000' AS TIMESTAMP), CAST('2016-01-02T00:00:00.000' AS TIMESTAMP), 1, 21.4900,'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, CAST('2015-12-24T11:00:00.000' AS TIMESTAMP), CAST('2016-01-21T00:00:00.000' AS TIMESTAMP), CAST('2016-01-20T00:00:00.000' AS TIMESTAMP), 2, 126.6600,'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, CAST('2015-12-25T16:00:00.000' AS TIMESTAMP), CAST('2016-01-22T00:00:00.000' AS TIMESTAMP), CAST('2016-01-14T00:00:00.000' AS TIMESTAMP), 1, 26.5200,'HILARION-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, CAST('2015-12-25T14:00:00.000' AS TIMESTAMP), CAST('2016-01-22T00:00:00.000' AS TIMESTAMP), CAST('2016-01-05T00:00:00.000' AS TIMESTAMP), 2, 33.3500,'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, CAST('2015-12-26T12:00:00.000' AS TIMESTAMP), CAST('2016-01-23T00:00:00.000' AS TIMESTAMP), CAST('2016-01-05T00:00:00.000' AS TIMESTAMP), 1, 2.3300,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10799,'KOENE', 9, CAST('2015-12-26T14:00:00.000' AS TIMESTAMP), CAST('2016-02-06T00:00:00.000' AS TIMESTAMP), CAST('2016-01-05T00:00:00.000' AS TIMESTAMP), 3, 30.7600,'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 (10800,'SEVES', 1, CAST('2015-12-26T13:00:00.000' AS TIMESTAMP), CAST('2016-01-23T00:00:00.000' AS TIMESTAMP), CAST('2016-01-05T00:00:00.000' AS TIMESTAMP), 3, 137.4400,'Seven Seas Imports','90 Wadhurst Rd.','London', NULL,'OX15 4NB','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10801,'BOLID', 4, CAST('2015-12-29T14:00:00.000' AS TIMESTAMP), CAST('2016-01-26T00:00:00.000' AS TIMESTAMP), CAST('2015-12-31T00:00:00.000' AS TIMESTAMP), 2, 97.0900,'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 (10802,'SIMOB', 4, CAST('2015-12-29T10:00:00.000' AS TIMESTAMP), CAST('2016-01-26T00:00:00.000' AS TIMESTAMP), CAST('2016-01-02T00:00:00.000' AS TIMESTAMP), 2, 257.2600,'Simons bistro','Vinbêltet 34','Kobenhavn', NULL,'1734','Denmark');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10803,'WELLI', 4, CAST('2015-12-30T04:00:00.000' AS TIMESTAMP), CAST('2016-01-27T00:00:00.000' AS TIMESTAMP), CAST('2016-01-06T00:00:00.000' AS TIMESTAMP), 1, 55.2300,'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 (10804,'SEVES', 6, CAST('2015-12-30T20:00:00.000' AS TIMESTAMP), CAST('2016-01-27T00:00:00.000' AS TIMESTAMP), CAST('2016-01-07T00:00:00.000' AS TIMESTAMP), 2, 27.3300,'Seven Seas Imports','90 Wadhurst Rd.','London', NULL,'OX15 4NB','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10805,'THEBI', 2, CAST('2015-12-30T17:00:00.000' AS TIMESTAMP), CAST('2016-01-27T00:00:00.000' AS TIMESTAMP), CAST('2016-01-09T00:00:00.000' AS TIMESTAMP), 3, 237.3400,'The Big Cheese','89 Jefferson Way Suite 2','Portland','OR','97201','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10806,'VICTE', 3, CAST('2015-12-31T11:00:00.000' AS TIMESTAMP), CAST('2016-01-28T00:00:00.000' AS TIMESTAMP), CAST('2016-01-05T00:00:00.000' AS TIMESTAMP), 2, 2000.0000,'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 (10807,'FRANS', 4, CAST('2015-12-31T11:00:00.000' AS TIMESTAMP), CAST('2016-01-28T00:00:00.000' AS TIMESTAMP), CAST('2016-01-30T00:00:00.000' AS TIMESTAMP), 1, 1.3600,'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 (10808,'OLDWO', 2, CAST('2016-01-01T03:00:00.000' AS TIMESTAMP), CAST('2016-01-29T00:00:00.000' AS TIMESTAMP), CAST('2016-01-09T00:00:00.000' AS TIMESTAMP), 3, 45.5300,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10809,'WELLI', 7, CAST('2016-01-01T20:00:00.000' AS TIMESTAMP), CAST('2016-01-29T00:00:00.000' AS TIMESTAMP), CAST('2016-01-07T00:00:00.000' AS TIMESTAMP), 1, 4.8700,'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 (10810,'LAUGB', 2, CAST('2016-01-01T17:00:00.000' AS TIMESTAMP), CAST('2016-01-29T00:00:00.000' AS TIMESTAMP), CAST('2016-01-07T00:00:00.000' AS TIMESTAMP), 3, 4.3300,'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 (10811,'LINOD', 8, CAST('2016-01-02T20:00:00.000' AS TIMESTAMP), CAST('2016-01-30T00:00:00.000' AS TIMESTAMP), CAST('2016-01-08T00:00:00.000' AS TIMESTAMP), 1, 31.2200,'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 (10812,'REGGC', 5, CAST('2016-01-02T02:00:00.000' AS TIMESTAMP), CAST('2016-01-30T00:00:00.000' AS TIMESTAMP), CAST('2016-01-12T00:00:00.000' AS TIMESTAMP), 1, 59.7800,'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 (10813,'RICAR', 1, CAST('2016-01-05T01:00:00.000' AS TIMESTAMP), CAST('2016-02-02T00:00:00.000' AS TIMESTAMP), CAST('2016-01-09T00:00:00.000' AS TIMESTAMP), 1, 47.3800,'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 (10814,'VICTE', 3, CAST('2016-01-05T18:00:00.000' AS TIMESTAMP), CAST('2016-02-02T00:00:00.000' AS TIMESTAMP), CAST('2016-01-14T00:00:00.000' AS TIMESTAMP), 3, 130.9400,'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 (10815,'SAVEA', 2, CAST('2016-01-05T04:00:00.000' AS TIMESTAMP), CAST('2016-02-02T00:00:00.000' AS TIMESTAMP), CAST('2016-01-14T00:00:00.000' AS TIMESTAMP), 3, 14.6200,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10816,'GREAL', 4, CAST('2016-01-06T22:00:00.000' AS TIMESTAMP), CAST('2016-02-03T00:00:00.000' AS TIMESTAMP), CAST('2016-02-04T00:00:00.000' AS TIMESTAMP), 2, 719.7800,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10817,'KOENE', 3, CAST('2016-01-06T21:00:00.000' AS TIMESTAMP), CAST('2016-01-20T00:00:00.000' AS TIMESTAMP), CAST('2016-01-13T00:00:00.000' AS TIMESTAMP), 2, 306.0700,'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 (10818,'MAGAA', 7, CAST('2016-01-07T17:00:00.000' AS TIMESTAMP), CAST('2016-02-04T00:00:00.000' AS TIMESTAMP), CAST('2016-01-12T00:00:00.000' AS TIMESTAMP), 3, 65.4800,'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 (10819,'CACTU', 2, CAST('2016-01-07T06:00:00.000' AS TIMESTAMP), CAST('2016-02-04T00:00:00.000' AS TIMESTAMP), CAST('2016-01-16T00:00:00.000' AS TIMESTAMP), 3, 19.7600,'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 (10820,'RATTC', 3, CAST('2016-01-07T02:00:00.000' AS TIMESTAMP), CAST('2016-02-04T00:00:00.000' AS TIMESTAMP), CAST('2016-01-13T00:00:00.000' AS TIMESTAMP), 2, 37.5200,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10821,'SPLIR', 1, CAST('2016-01-08T15:00:00.000' AS TIMESTAMP), CAST('2016-02-05T00:00:00.000' AS TIMESTAMP), CAST('2016-01-15T00:00:00.000' AS TIMESTAMP), 1, 36.6800,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10822,'TRAIH', 6, CAST('2016-01-08T08:00:00.000' AS TIMESTAMP), CAST('2016-02-05T00:00:00.000' AS TIMESTAMP), CAST('2016-01-16T00:00:00.000' AS TIMESTAMP), 3, 7.0000,'Trail''s Head Gourmet Provisioners','722 DaVinci Blvd.','Kirkland','WA','98034','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10823,'LILAS', 5, CAST('2016-01-09T17:00:00.000' AS TIMESTAMP), CAST('2016-02-06T00:00:00.000' AS TIMESTAMP), CAST('2016-01-13T00:00:00.000' AS TIMESTAMP), 2, 163.9700,'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 (10824,'FOLKO', 8, CAST('2016-01-09T04:00:00.000' AS TIMESTAMP), CAST('2016-02-06T00:00:00.000' AS TIMESTAMP), CAST('2016-01-30T00:00:00.000' AS TIMESTAMP), 1, 1.2300,'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 (10825,'DRACD', 1, CAST('2016-01-09T01:00:00.000' AS TIMESTAMP), CAST('2016-02-06T00:00:00.000' AS TIMESTAMP), CAST('2016-01-14T00:00:00.000' AS TIMESTAMP), 1, 79.2500,'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 (10826,'BLONP', 6, CAST('2016-01-12T03:00:00.000' AS TIMESTAMP), CAST('2016-02-09T00:00:00.000' AS TIMESTAMP), CAST('2016-02-06T00:00:00.000' AS TIMESTAMP), 1, 7.0900,'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 (10827,'BONAP', 1, CAST('2016-01-12T19:00:00.000' AS TIMESTAMP), CAST('2016-01-26T00:00:00.000' AS TIMESTAMP), CAST('2016-02-06T00:00:00.000' AS TIMESTAMP), 2, 63.5400,'Bon app''','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 (10828,'RANCH', 9, CAST('2016-01-13T04:00:00.000' AS TIMESTAMP), CAST('2016-01-27T00:00:00.000' AS TIMESTAMP), CAST('2016-02-04T00:00:00.000' AS TIMESTAMP), 1, 90.8500,'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 (10829,'ISLAT', 9, CAST('2016-01-13T17:00:00.000' AS TIMESTAMP), CAST('2016-02-10T00:00:00.000' AS TIMESTAMP), CAST('2016-01-23T00:00:00.000' AS TIMESTAMP), 1, 154.7200,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10830,'TRADH', 4, CAST('2016-01-13T22:00:00.000' AS TIMESTAMP), CAST('2016-02-24T00:00:00.000' AS TIMESTAMP), CAST('2016-01-21T00:00:00.000' AS TIMESTAMP), 2, 81.8300,'Tradiúao Hipermercados','Av. Inìs de Castro, 414','Sao Paulo','SP','05634-030','Brazil');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10831,'SANTG', 3, CAST('2016-01-14T09:00:00.000' AS TIMESTAMP), CAST('2016-02-11T00:00:00.000' AS TIMESTAMP), CAST('2016-01-23T00:00:00.000' AS TIMESTAMP), 2, 72.1900,'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 (10832,'LAMAI', 2, CAST('2016-01-14T13:00:00.000' AS TIMESTAMP), CAST('2016-02-11T00:00:00.000' AS TIMESTAMP), CAST('2016-01-19T00:00:00.000' AS TIMESTAMP), 2, 43.2600,'La maison d''Asie','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 (10833,'OTTIK', 6, CAST('2016-01-15T14:00:00.000' AS TIMESTAMP), CAST('2016-02-12T00:00:00.000' AS TIMESTAMP), CAST('2016-01-23T00:00:00.000' AS TIMESTAMP), 2, 71.4900,'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 (10834,'TRADH', 1, CAST('2016-01-15T14:00:00.000' AS TIMESTAMP), CAST('2016-02-12T00:00:00.000' AS TIMESTAMP), CAST('2016-01-19T00:00:00.000' AS TIMESTAMP), 3, 29.7800,'Tradiúao Hipermercados','Av. Inìs de Castro, 414','Sao Paulo','SP','05634-030','Brazil');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10835,'ALFKI', 1, CAST('2016-01-15T20:00:00.000' AS TIMESTAMP), CAST('2016-02-12T00:00:00.000' AS TIMESTAMP), CAST('2016-01-21T00:00:00.000' AS TIMESTAMP), 3, 69.5300,'Alfred''s 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 (10836,'ERNSH', 7, CAST('2016-01-16T16:00:00.000' AS TIMESTAMP), CAST('2016-02-13T00:00:00.000' AS TIMESTAMP), CAST('2016-01-21T00:00:00.000' AS TIMESTAMP), 1, 411.8800,'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 (10837,'BERGS', 9, CAST('2016-01-16T08:00:00.000' AS TIMESTAMP), CAST('2016-02-13T00:00:00.000' AS TIMESTAMP), CAST('2016-01-23T00:00:00.000' AS TIMESTAMP), 3, 13.3200,'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 (10838,'LINOD', 3, CAST('2016-01-19T03:00:00.000' AS TIMESTAMP), CAST('2016-02-16T00:00:00.000' AS TIMESTAMP), CAST('2016-01-23T00:00:00.000' AS TIMESTAMP), 3, 59.2800,'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 (10839,'TRADH', 3, CAST('2016-01-19T08:00:00.000' AS TIMESTAMP), CAST('2016-02-16T00:00:00.000' AS TIMESTAMP), CAST('2016-01-22T00:00:00.000' AS TIMESTAMP), 3, 35.4300,'Tradiúao Hipermercados','Av. Inìs de Castro, 414','Sao Paulo','SP','05634-030','Brazil');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10840,'LINOD', 4, CAST('2016-01-19T12:00:00.000' AS TIMESTAMP), CAST('2016-03-02T00:00:00.000' AS TIMESTAMP), CAST('2016-02-16T00:00:00.000' AS TIMESTAMP), 2, 2.7100,'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 (10841,'SUPRD', 5, CAST('2016-01-20T21:00:00.000' AS TIMESTAMP), CAST('2016-02-17T00:00:00.000' AS TIMESTAMP), CAST('2016-01-29T00:00:00.000' AS TIMESTAMP), 2, 424.3000,'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 (10842,'TORTU', 1, CAST('2016-01-20T21:00:00.000' AS TIMESTAMP), CAST('2016-02-17T00:00:00.000' AS TIMESTAMP), CAST('2016-01-29T00:00:00.000' AS TIMESTAMP), 3, 54.4200,'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 (10843,'VICTE', 4, CAST('2016-01-21T09:00:00.000' AS TIMESTAMP), CAST('2016-02-18T00:00:00.000' AS TIMESTAMP), CAST('2016-01-26T00:00:00.000' AS TIMESTAMP), 2, 9.2600,'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 (10844,'PICCO', 8, CAST('2016-01-21T00:00:00.000' AS TIMESTAMP), CAST('2016-02-18T00:00:00.000' AS TIMESTAMP), CAST('2016-01-26T00:00:00.000' AS TIMESTAMP), 2, 25.2200,'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 (10845,'QUICK', 8, CAST('2016-01-21T16:00:00.000' AS TIMESTAMP), CAST('2016-02-04T00:00:00.000' AS TIMESTAMP), CAST('2016-01-30T00:00:00.000' AS TIMESTAMP), 1, 212.9800,'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 (10846,'SUPRD', 2, CAST('2016-01-22T08:00:00.000' AS TIMESTAMP), CAST('2016-03-05T00:00:00.000' AS TIMESTAMP), CAST('2016-01-23T00:00:00.000' AS TIMESTAMP), 3, 56.4600,'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 (10847,'SAVEA', 4, CAST('2016-01-22T08:00:00.000' AS TIMESTAMP), CAST('2016-02-05T00:00:00.000' AS TIMESTAMP), CAST('2016-02-10T00:00:00.000' AS TIMESTAMP), 3, 487.5700,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10848,'CONSH', 7, CAST('2016-01-23T16:00:00.000' AS TIMESTAMP), CAST('2016-02-20T00:00:00.000' AS TIMESTAMP), CAST('2016-01-29T00:00:00.000' AS TIMESTAMP), 2, 38.2400,'Consolidated Holdings','Berkeley Gardens 12 Brewery','London', NULL,'WX1 6LT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10849,'KOENE', 9, CAST('2016-01-23T10:00:00.000' AS TIMESTAMP), CAST('2016-02-20T00:00:00.000' AS TIMESTAMP), CAST('2016-01-30T00:00:00.000' AS TIMESTAMP), 2, 0.5600,'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 (10850,'VICTE', 1, CAST('2016-01-23T22:00:00.000' AS TIMESTAMP), CAST('2016-03-06T00:00:00.000' AS TIMESTAMP), CAST('2016-01-30T00:00:00.000' AS TIMESTAMP), 1, 49.1900,'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 (10851,'RICAR', 5, CAST('2016-01-26T00:00:00.000' AS TIMESTAMP), CAST('2016-02-23T00:00:00.000' AS TIMESTAMP), CAST('2016-02-02T00:00:00.000' AS TIMESTAMP), 1, 160.5500,'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 (10852,'RATTC', 8, CAST('2016-01-26T10:00:00.000' AS TIMESTAMP), CAST('2016-02-09T00:00:00.000' AS TIMESTAMP), CAST('2016-01-30T00:00:00.000' AS TIMESTAMP), 1, 174.0500,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10853,'BLAUS', 9, CAST('2016-01-27T03:00:00.000' AS TIMESTAMP), CAST('2016-02-24T00:00:00.000' AS TIMESTAMP), CAST('2016-02-03T00:00:00.000' AS TIMESTAMP), 2, 53.8300,'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 (10854,'ERNSH', 3, CAST('2016-01-27T01:00:00.000' AS TIMESTAMP), CAST('2016-02-24T00:00:00.000' AS TIMESTAMP), CAST('2016-02-05T00:00:00.000' AS TIMESTAMP), 2, 100.2200,'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 (10855,'OLDWO', 3, CAST('2016-01-27T17:00:00.000' AS TIMESTAMP), CAST('2016-02-24T00:00:00.000' AS TIMESTAMP), CAST('2016-02-04T00:00:00.000' AS TIMESTAMP), 1, 170.9700,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10856,'ANTON', 3, CAST('2016-01-28T04:00:00.000' AS TIMESTAMP), CAST('2016-02-25T00:00:00.000' AS TIMESTAMP), CAST('2016-02-10T00:00:00.000' AS TIMESTAMP), 2, 58.4300,'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 (10857,'BERGS', 8, CAST('2016-01-28T05:00:00.000' AS TIMESTAMP), CAST('2016-02-25T00:00:00.000' AS TIMESTAMP), CAST('2016-02-06T00:00:00.000' AS TIMESTAMP), 2, 188.8500,'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 (10858,'LACOR', 2, CAST('2016-01-29T17:00:00.000' AS TIMESTAMP), CAST('2016-02-26T00:00:00.000' AS TIMESTAMP), CAST('2016-02-03T00:00:00.000' AS TIMESTAMP), 1, 52.5100,'La corne d''abondance','67, avenue de l''Europe','Versailles', NULL,'78000','France');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10859,'FRANK', 1, CAST('2016-01-29T11:00:00.000' AS TIMESTAMP), CAST('2016-02-26T00:00:00.000' AS TIMESTAMP), CAST('2016-02-02T00:00:00.000' AS TIMESTAMP), 2, 76.1000,'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 (10860,'FRANR', 3, CAST('2016-01-29T21:00:00.000' AS TIMESTAMP), CAST('2016-02-26T00:00:00.000' AS TIMESTAMP), CAST('2016-02-04T00:00:00.000' AS TIMESTAMP), 3, 19.2600,'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 (10861,'WHITC', 4, CAST('2016-01-30T02:00:00.000' AS TIMESTAMP), CAST('2016-02-27T00:00:00.000' AS TIMESTAMP), CAST('2016-02-17T00:00:00.000' AS TIMESTAMP), 2, 14.9300,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10862,'LEHMS', 8, CAST('2016-01-30T22:00:00.000' AS TIMESTAMP), CAST('2016-03-13T00:00:00.000' AS TIMESTAMP), CAST('2016-02-02T00:00:00.000' AS TIMESTAMP), 2, 53.2300,'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 (10863,'HILAA', 4, CAST('2016-02-02T00:00:00.000' AS TIMESTAMP), CAST('2016-03-02T00:00:00.000' AS TIMESTAMP), CAST('2016-02-17T00:00:00.000' AS TIMESTAMP), 2, 30.2600,'HILARION-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 (10864,'AROUT', 4, CAST('2016-02-02T17:00:00.000' AS TIMESTAMP), CAST('2016-03-02T00:00:00.000' AS TIMESTAMP), CAST('2016-02-09T00:00:00.000' AS TIMESTAMP), 2, 3.0400,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10865,'QUICK', 2, CAST('2016-02-02T04:00:00.000' AS TIMESTAMP), CAST('2016-02-16T00:00:00.000' AS TIMESTAMP), CAST('2016-02-12T00:00:00.000' AS TIMESTAMP), 1, 348.1400,'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 (10866,'BERGS', 5, CAST('2016-02-03T01:00:00.000' AS TIMESTAMP), CAST('2016-03-03T00:00:00.000' AS TIMESTAMP), CAST('2016-02-12T00:00:00.000' AS TIMESTAMP), 1, 109.1100,'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 (10867,'LONEP', 6, CAST('2016-02-03T09:00:00.000' AS TIMESTAMP), CAST('2016-03-17T00:00:00.000' AS TIMESTAMP), CAST('2016-02-11T00:00:00.000' AS TIMESTAMP), 1, 1.9300,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10868,'QUEEN', 7, CAST('2016-02-04T16:00:00.000' AS TIMESTAMP), CAST('2016-03-04T00:00:00.000' AS TIMESTAMP), CAST('2016-02-23T00:00:00.000' AS TIMESTAMP), 2, 191.2700,'Queen Cozinha','Alameda dos CanÃários, 891','Sao Paulo','SP','05487-020','Brazil');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10869,'SEVES', 5, CAST('2016-02-04T09:00:00.000' AS TIMESTAMP), CAST('2016-03-04T00:00:00.000' AS TIMESTAMP), CAST('2016-02-09T00:00:00.000' AS TIMESTAMP), 1, 143.2800,'Seven Seas Imports','90 Wadhurst Rd.','London', NULL,'OX15 4NB','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10870,'WOLZA', 5, CAST('2016-02-04T12:00:00.000' AS TIMESTAMP), CAST('2016-03-04T00:00:00.000' AS TIMESTAMP), CAST('2016-02-13T00:00:00.000' AS TIMESTAMP), 3, 12.0400,'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 (10871,'BONAP', 9, CAST('2016-02-05T19:00:00.000' AS TIMESTAMP), CAST('2016-03-05T00:00:00.000' AS TIMESTAMP), CAST('2016-02-10T00:00:00.000' AS TIMESTAMP), 2, 112.2700,'Bon app''','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 (10872,'GODOS', 5, CAST('2016-02-05T06:00:00.000' AS TIMESTAMP), CAST('2016-03-05T00:00:00.000' AS TIMESTAMP), CAST('2016-02-09T00:00:00.000' AS TIMESTAMP), 2, 175.3200,'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 (10873,'WILMK', 4, CAST('2016-02-06T02:00:00.000' AS TIMESTAMP), CAST('2016-03-06T00:00:00.000' AS TIMESTAMP), CAST('2016-02-09T00:00:00.000' AS TIMESTAMP), 1, 0.8200,'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 (10874,'GODOS', 5, CAST('2016-02-06T14:00:00.000' AS TIMESTAMP), CAST('2016-03-06T00:00:00.000' AS TIMESTAMP), CAST('2016-02-11T00:00:00.000' AS TIMESTAMP), 2, 19.5800,'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 (10875,'BERGS', 4, CAST('2016-02-06T21:00:00.000' AS TIMESTAMP), CAST('2016-03-06T00:00:00.000' AS TIMESTAMP), CAST('2016-03-03T00:00:00.000' AS TIMESTAMP), 2, 32.3700,'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 (10876,'BONAP', 7, CAST('2016-02-09T17:00:00.000' AS TIMESTAMP), CAST('2016-03-09T00:00:00.000' AS TIMESTAMP), CAST('2016-02-12T00:00:00.000' AS TIMESTAMP), 3, 60.4200,'Bon app''','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 (10877,'RICAR', 1, CAST('2016-02-09T15:00:00.000' AS TIMESTAMP), CAST('2016-03-09T00:00:00.000' AS TIMESTAMP), CAST('2016-02-19T00:00:00.000' AS TIMESTAMP), 1, 38.0600,'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 (10878,'QUICK', 4, CAST('2016-02-10T12:00:00.000' AS TIMESTAMP), CAST('2016-03-10T00:00:00.000' AS TIMESTAMP), CAST('2016-02-12T00:00:00.000' AS TIMESTAMP), 1, 46.6900,'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 (10879,'WILMK', 3, CAST('2016-02-10T06:00:00.000' AS TIMESTAMP), CAST('2016-03-10T00:00:00.000' AS TIMESTAMP), CAST('2016-02-12T00:00:00.000' AS TIMESTAMP), 3, 8.5000,'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 (10880,'FOLKO', 7, CAST('2016-02-10T07:00:00.000' AS TIMESTAMP), CAST('2016-03-24T00:00:00.000' AS TIMESTAMP), CAST('2016-02-18T00:00:00.000' AS TIMESTAMP), 1, 88.0100,'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 (10881,'CACTU', 4, CAST('2016-02-11T07:00:00.000' AS TIMESTAMP), CAST('2016-03-11T00:00:00.000' AS TIMESTAMP), CAST('2016-02-18T00:00:00.000' AS TIMESTAMP), 1, 2.8400,'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 (10882,'SAVEA', 4, CAST('2016-02-11T09:00:00.000' AS TIMESTAMP), CAST('2016-03-11T00:00:00.000' AS TIMESTAMP), CAST('2016-02-20T00:00:00.000' AS TIMESTAMP), 3, 23.1000,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10883,'LONEP', 8, CAST('2016-02-12T01:00:00.000' AS TIMESTAMP), CAST('2016-03-12T00:00:00.000' AS TIMESTAMP), CAST('2016-02-20T00:00:00.000' AS TIMESTAMP), 3, 0.5300,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10884,'LETSS', 4, CAST('2016-02-12T08:00:00.000' AS TIMESTAMP), CAST('2016-03-12T00:00:00.000' AS TIMESTAMP), CAST('2016-02-13T00:00:00.000' AS TIMESTAMP), 2, 90.9700,'Let''s Stop N Shop','87 Polk St. Suite 5','San Francisco','CA','94117','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10885,'SUPRD', 6, CAST('2016-02-12T07:00:00.000' AS TIMESTAMP), CAST('2016-03-12T00:00:00.000' AS TIMESTAMP), CAST('2016-02-18T00:00:00.000' AS TIMESTAMP), 3, 5.6400,'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 (10886,'HANAR', 1, CAST('2016-02-13T05:00:00.000' AS TIMESTAMP), CAST('2016-03-13T00:00:00.000' AS TIMESTAMP), CAST('2016-03-02T00:00:00.000' AS TIMESTAMP), 1, 4.9900,'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 (10887,'GALED', 8, CAST('2016-02-13T10:00:00.000' AS TIMESTAMP), CAST('2016-03-13T00:00:00.000' AS TIMESTAMP), CAST('2016-02-16T00:00:00.000' AS TIMESTAMP), 3, 1.2500,'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 (10888,'GODOS', 1, CAST('2016-02-16T19:00:00.000' AS TIMESTAMP), CAST('2016-03-16T00:00:00.000' AS TIMESTAMP), CAST('2016-02-23T00:00:00.000' AS TIMESTAMP), 2, 51.8700,'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 (10889,'RATTC', 9, CAST('2016-02-16T04:00:00.000' AS TIMESTAMP), CAST('2016-03-16T00:00:00.000' AS TIMESTAMP), CAST('2016-02-23T00:00:00.000' AS TIMESTAMP), 3, 280.6100,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10890,'DUMON', 7, CAST('2016-02-16T02:00:00.000' AS TIMESTAMP), CAST('2016-03-16T00:00:00.000' AS TIMESTAMP), CAST('2016-02-18T00:00:00.000' AS TIMESTAMP), 1, 32.7600,'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 (10891,'LEHMS', 7, CAST('2016-02-17T10:00:00.000' AS TIMESTAMP), CAST('2016-03-17T00:00:00.000' AS TIMESTAMP), CAST('2016-02-19T00:00:00.000' AS TIMESTAMP), 2, 20.3700,'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 (10892,'MAISD', 4, CAST('2016-02-17T10:00:00.000' AS TIMESTAMP), CAST('2016-03-17T00:00:00.000' AS TIMESTAMP), CAST('2016-02-19T00:00:00.000' AS TIMESTAMP), 2, 120.2700,'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 (10893,'KOENE', 9, CAST('2016-02-18T05:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), CAST('2016-02-20T00:00:00.000' AS TIMESTAMP), 2, 77.7800,'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 (10894,'SAVEA', 1, CAST('2016-02-18T02:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), CAST('2016-02-20T00:00:00.000' AS TIMESTAMP), 1, 116.1300,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10895,'ERNSH', 3, CAST('2016-02-18T17:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), CAST('2016-02-23T00:00:00.000' AS TIMESTAMP), 1, 162.7500,'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 (10896,'MAISD', 7, CAST('2016-02-19T00:00:00.000' AS TIMESTAMP), CAST('2016-03-19T00:00:00.000' AS TIMESTAMP), CAST('2016-02-27T00:00:00.000' AS TIMESTAMP), 3, 32.4500,'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 (10897,'HUNGO', 3, CAST('2016-02-19T18:00:00.000' AS TIMESTAMP), CAST('2016-03-19T00:00:00.000' AS TIMESTAMP), CAST('2016-02-25T00:00:00.000' AS TIMESTAMP), 2, 603.5400,'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 (10898,'OCEAN', 4, CAST('2016-02-20T10:00:00.000' AS TIMESTAMP), CAST('2016-03-20T00:00:00.000' AS TIMESTAMP), CAST('2016-03-06T00:00:00.000' AS TIMESTAMP), 2, 1.2700,'Oc̩ano Atl̒ntico Ltda.','Ing. Gustavo Moncada 8585 Piso 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 (10899,'LILAS', 5, CAST('2016-02-20T09:00:00.000' AS TIMESTAMP), CAST('2016-03-20T00:00:00.000' AS TIMESTAMP), CAST('2016-02-26T00:00:00.000' AS TIMESTAMP), 3, 1.2100,'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 (10900,'WELLI', 1, CAST('2016-02-20T13:00:00.000' AS TIMESTAMP), CAST('2016-03-20T00:00:00.000' AS TIMESTAMP), CAST('2016-03-04T00:00:00.000' AS TIMESTAMP), 2, 1.6600,'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 (10901,'HILAA', 4, CAST('2016-02-23T11:00:00.000' AS TIMESTAMP), CAST('2016-03-23T00:00:00.000' AS TIMESTAMP), CAST('2016-02-26T00:00:00.000' AS TIMESTAMP), 1, 62.0900,'HILARION-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 (10902,'FOLKO', 1, CAST('2016-02-23T04:00:00.000' AS TIMESTAMP), CAST('2016-03-23T00:00:00.000' AS TIMESTAMP), CAST('2016-03-03T00:00:00.000' AS TIMESTAMP), 1, 44.1500,'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 (10903,'HANAR', 3, CAST('2016-02-24T19:00:00.000' AS TIMESTAMP), CAST('2016-03-24T00:00:00.000' AS TIMESTAMP), CAST('2016-03-04T00:00:00.000' AS TIMESTAMP), 3, 36.7100,'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 (10904,'WHITC', 3, CAST('2016-02-24T09:00:00.000' AS TIMESTAMP), CAST('2016-03-24T00:00:00.000' AS TIMESTAMP), CAST('2016-02-27T00:00:00.000' AS TIMESTAMP), 3, 162.9500,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10905,'WELLI', 9, CAST('2016-02-24T09:00:00.000' AS TIMESTAMP), CAST('2016-03-24T00:00:00.000' AS TIMESTAMP), CAST('2016-03-06T00:00:00.000' AS TIMESTAMP), 2, 13.7200,'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 (10906,'WOLZA', 4, CAST('2016-02-25T06:00:00.000' AS TIMESTAMP), CAST('2016-03-11T00:00:00.000' AS TIMESTAMP), CAST('2016-03-03T00:00:00.000' AS TIMESTAMP), 3, 26.2900,'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 (10907,'SPECD', 6, CAST('2016-02-25T12:00:00.000' AS TIMESTAMP), CAST('2016-03-25T00:00:00.000' AS TIMESTAMP), CAST('2016-02-27T00:00:00.000' AS TIMESTAMP), 3, 9.1900,'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 (10908,'REGGC', 4, CAST('2016-02-26T12:00:00.000' AS TIMESTAMP), CAST('2016-03-26T00:00:00.000' AS TIMESTAMP), CAST('2016-03-06T00:00:00.000' AS TIMESTAMP), 2, 32.9600,'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 (10909,'SANTG', 1, CAST('2016-02-26T05:00:00.000' AS TIMESTAMP), CAST('2016-03-26T00:00:00.000' AS TIMESTAMP), CAST('2016-03-10T00:00:00.000' AS TIMESTAMP), 2, 53.0500,'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 (10910,'WILMK', 1, CAST('2016-02-26T00:00:00.000' AS TIMESTAMP), CAST('2016-03-26T00:00:00.000' AS TIMESTAMP), CAST('2016-03-04T00:00:00.000' AS TIMESTAMP), 3, 38.1100,'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 (10911,'GODOS', 3, CAST('2016-02-26T13:00:00.000' AS TIMESTAMP), CAST('2016-03-26T00:00:00.000' AS TIMESTAMP), CAST('2016-03-05T00:00:00.000' AS TIMESTAMP), 1, 38.1900,'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 (10912,'HUNGO', 2, CAST('2016-02-26T08:00:00.000' AS TIMESTAMP), CAST('2016-03-26T00:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), 2, 580.9100,'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 (10913,'QUEEN', 4, CAST('2016-02-26T07:00:00.000' AS TIMESTAMP), CAST('2016-03-26T00:00:00.000' AS TIMESTAMP), CAST('2016-03-04T00:00:00.000' AS TIMESTAMP), 1, 33.0500,'Queen Cozinha','Alameda dos CanÃários, 891','Sao Paulo','SP','05487-020','Brazil');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10914,'QUEEN', 6, CAST('2016-02-27T14:00:00.000' AS TIMESTAMP), CAST('2016-03-27T00:00:00.000' AS TIMESTAMP), CAST('2016-03-02T00:00:00.000' AS TIMESTAMP), 1, 21.1900,'Queen Cozinha','Alameda dos CanÃários, 891','Sao Paulo','SP','05487-020','Brazil');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10915,'TORTU', 2, CAST('2016-02-27T08:00:00.000' AS TIMESTAMP), CAST('2016-03-27T00:00:00.000' AS TIMESTAMP), CAST('2016-03-02T00:00:00.000' AS TIMESTAMP), 2, 3.5100,'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 (10916,'RANCH', 1, CAST('2016-02-27T10:00:00.000' AS TIMESTAMP), CAST('2016-03-27T00:00:00.000' AS TIMESTAMP), CAST('2016-03-09T00:00:00.000' AS TIMESTAMP), 2, 63.7700,'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 (10917,'ROMEY', 4, CAST('2016-03-02T02:00:00.000' AS TIMESTAMP), CAST('2016-03-30T00:00:00.000' AS TIMESTAMP), CAST('2016-03-11T00:00:00.000' AS TIMESTAMP), 2, 8.2900,'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 (10918,'BOTTM', 3, CAST('2016-03-02T10:00:00.000' AS TIMESTAMP), CAST('2016-03-30T00:00:00.000' AS TIMESTAMP), CAST('2016-03-11T00:00:00.000' AS TIMESTAMP), 3, 48.8300,'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 (10919,'LINOD', 2, CAST('2016-03-02T12:00:00.000' AS TIMESTAMP), CAST('2016-03-30T00:00:00.000' AS TIMESTAMP), CAST('2016-03-04T00:00:00.000' AS TIMESTAMP), 2, 19.8000,'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 (10920,'AROUT', 4, CAST('2016-03-03T08:00:00.000' AS TIMESTAMP), CAST('2016-03-31T00:00:00.000' AS TIMESTAMP), CAST('2016-03-09T00:00:00.000' AS TIMESTAMP), 2, 29.6100,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10921,'VAFFE', 1, CAST('2016-03-03T17:00:00.000' AS TIMESTAMP), CAST('2016-04-14T00:00:00.000' AS TIMESTAMP), CAST('2016-03-09T00:00:00.000' AS TIMESTAMP), 1, 176.4800,'Vaffeljernet','Smagsloget 45','Ãàrhus', NULL,'8200','Denmark');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10922,'HANAR', 5, CAST('2016-03-03T02:00:00.000' AS TIMESTAMP), CAST('2016-03-31T00:00:00.000' AS TIMESTAMP), CAST('2016-03-05T00:00:00.000' AS TIMESTAMP), 3, 62.7400,'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 (10923,'LAMAI', 7, CAST('2016-03-03T08:00:00.000' AS TIMESTAMP), CAST('2016-04-14T00:00:00.000' AS TIMESTAMP), CAST('2016-03-13T00:00:00.000' AS TIMESTAMP), 3, 68.2600,'La maison d''Asie','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 (10924,'BERGS', 3, CAST('2016-03-04T20:00:00.000' AS TIMESTAMP), CAST('2016-04-01T00:00:00.000' AS TIMESTAMP), CAST('2016-04-08T00:00:00.000' AS TIMESTAMP), 2, 151.5200,'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 (10925,'HANAR', 3, CAST('2016-03-04T18:00:00.000' AS TIMESTAMP), CAST('2016-04-01T00:00:00.000' AS TIMESTAMP), CAST('2016-03-13T00:00:00.000' AS TIMESTAMP), 1, 2.2700,'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 (10926,'ANATR', 4, CAST('2016-03-04T16:00:00.000' AS TIMESTAMP), CAST('2016-04-01T00:00:00.000' AS TIMESTAMP), CAST('2016-03-11T00:00:00.000' AS TIMESTAMP), 3, 39.9200,'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 (10927,'LACOR', 4, CAST('2016-03-05T08:00:00.000' AS TIMESTAMP), CAST('2016-04-02T00:00:00.000' AS TIMESTAMP), CAST('2016-04-08T00:00:00.000' AS TIMESTAMP), 1, 19.7900,'La corne d''abondance','67, avenue de l''Europe','Versailles', NULL,'78000','France');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10928,'GALED', 1, CAST('2016-03-05T10:00:00.000' AS TIMESTAMP), CAST('2016-04-02T00:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), 1, 1.3600,'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 (10929,'FRANK', 6, CAST('2016-03-05T00:00:00.000' AS TIMESTAMP), CAST('2016-04-02T00:00:00.000' AS TIMESTAMP), CAST('2016-03-12T00:00:00.000' AS TIMESTAMP), 1, 33.9300,'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 (10930,'SUPRD', 4, CAST('2016-03-06T05:00:00.000' AS TIMESTAMP), CAST('2016-04-17T00:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), 3, 15.5500,'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 (10931,'RICSU', 4, CAST('2016-03-06T05:00:00.000' AS TIMESTAMP), CAST('2016-03-20T00:00:00.000' AS TIMESTAMP), CAST('2016-03-19T00:00:00.000' AS TIMESTAMP), 2, 13.6000,'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 (10932,'BONAP', 8, CAST('2016-03-06T01:00:00.000' AS TIMESTAMP), CAST('2016-04-03T00:00:00.000' AS TIMESTAMP), CAST('2016-03-24T00:00:00.000' AS TIMESTAMP), 1, 134.6400,'Bon app''','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 (10933,'ISLAT', 6, CAST('2016-03-06T16:00:00.000' AS TIMESTAMP), CAST('2016-04-03T00:00:00.000' AS TIMESTAMP), CAST('2016-03-16T00:00:00.000' AS TIMESTAMP), 3, 54.1500,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10934,'LEHMS', 3, CAST('2016-03-09T12:00:00.000' AS TIMESTAMP), CAST('2016-04-06T00:00:00.000' AS TIMESTAMP), CAST('2016-03-12T00:00:00.000' AS TIMESTAMP), 3, 32.0100,'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 (10935,'WELLI', 4, CAST('2016-03-09T12:00:00.000' AS TIMESTAMP), CAST('2016-04-06T00:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), 3, 47.5900,'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 (10936,'GREAL', 3, CAST('2016-03-09T00:00:00.000' AS TIMESTAMP), CAST('2016-04-06T00:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), 2, 33.6800,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10937,'CACTU', 7, CAST('2016-03-10T22:00:00.000' AS TIMESTAMP), CAST('2016-03-24T00:00:00.000' AS TIMESTAMP), CAST('2016-03-13T00:00:00.000' AS TIMESTAMP), 3, 31.5100,'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 (10938,'QUICK', 3, CAST('2016-03-10T14:00:00.000' AS TIMESTAMP), CAST('2016-04-07T00:00:00.000' AS TIMESTAMP), CAST('2016-03-16T00:00:00.000' AS TIMESTAMP), 2, 31.8900,'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 (10939,'MAGAA', 2, CAST('2016-03-10T15:00:00.000' AS TIMESTAMP), CAST('2016-04-07T00:00:00.000' AS TIMESTAMP), CAST('2016-03-13T00:00:00.000' AS TIMESTAMP), 2, 76.3300,'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 (10940,'BONAP', 8, CAST('2016-03-11T02:00:00.000' AS TIMESTAMP), CAST('2016-04-08T00:00:00.000' AS TIMESTAMP), CAST('2016-03-23T00:00:00.000' AS TIMESTAMP), 3, 19.7700,'Bon app''','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 (10941,'SAVEA', 7, CAST('2016-03-11T06:00:00.000' AS TIMESTAMP), CAST('2016-04-08T00:00:00.000' AS TIMESTAMP), CAST('2016-03-20T00:00:00.000' AS TIMESTAMP), 2, 400.8100,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10942,'REGGC', 9, CAST('2016-03-11T11:00:00.000' AS TIMESTAMP), CAST('2016-04-08T00:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), 3, 17.9500,'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 (10943,'BSBEV', 4, CAST('2016-03-11T01:00:00.000' AS TIMESTAMP), CAST('2016-04-08T00:00:00.000' AS TIMESTAMP), CAST('2016-03-19T00:00:00.000' AS TIMESTAMP), 2, 2.1700,'B''s Beverages','Fauntleroy Circus','London', NULL,'EC2 5NT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10944,'BOTTM', 6, CAST('2016-03-12T04:00:00.000' AS TIMESTAMP), CAST('2016-03-26T00:00:00.000' AS TIMESTAMP), CAST('2016-03-13T00:00:00.000' AS TIMESTAMP), 3, 52.9200,'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 (10945,'MORGK', 4, CAST('2016-03-12T12:00:00.000' AS TIMESTAMP), CAST('2016-04-09T00:00:00.000' AS TIMESTAMP), CAST('2016-03-18T00:00:00.000' AS TIMESTAMP), 1, 10.2200,'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 (10946,'VAFFE', 1, CAST('2016-03-12T04:00:00.000' AS TIMESTAMP), CAST('2016-04-09T00:00:00.000' AS TIMESTAMP), CAST('2016-03-19T00:00:00.000' AS TIMESTAMP), 2, 27.2000,'Vaffeljernet','Smagsloget 45','Ãàrhus', NULL,'8200','Denmark');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10947,'BSBEV', 3, CAST('2016-03-13T09:00:00.000' AS TIMESTAMP), CAST('2016-04-10T00:00:00.000' AS TIMESTAMP), CAST('2016-03-16T00:00:00.000' AS TIMESTAMP), 2, 3.2600,'B''s Beverages','Fauntleroy Circus','London', NULL,'EC2 5NT','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10948,'GODOS', 3, CAST('2016-03-13T16:00:00.000' AS TIMESTAMP), CAST('2016-04-10T00:00:00.000' AS TIMESTAMP), CAST('2016-03-19T00:00:00.000' AS TIMESTAMP), 3, 23.3900,'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 (10949,'BOTTM', 2, CAST('2016-03-13T13:00:00.000' AS TIMESTAMP), CAST('2016-04-10T00:00:00.000' AS TIMESTAMP), CAST('2016-03-17T00:00:00.000' AS TIMESTAMP), 3, 74.4400,'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 (10950,'MAGAA', 1, CAST('2016-03-16T02:00:00.000' AS TIMESTAMP), CAST('2016-04-13T00:00:00.000' AS TIMESTAMP), CAST('2016-03-23T00:00:00.000' AS TIMESTAMP), 2, 2.5000,'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 (10951,'RICSU', 9, CAST('2016-03-16T18:00:00.000' AS TIMESTAMP), CAST('2016-04-27T00:00:00.000' AS TIMESTAMP), CAST('2016-04-07T00:00:00.000' AS TIMESTAMP), 2, 30.8500,'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 (10952,'ALFKI', 1, CAST('2016-03-16T00:00:00.000' AS TIMESTAMP), CAST('2016-04-27T00:00:00.000' AS TIMESTAMP), CAST('2016-03-24T00:00:00.000' AS TIMESTAMP), 1, 40.4200,'Alfred''s 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 (10953,'AROUT', 9, CAST('2016-03-16T02:00:00.000' AS TIMESTAMP), CAST('2016-03-30T00:00:00.000' AS TIMESTAMP), CAST('2016-03-25T00:00:00.000' AS TIMESTAMP), 2, 23.7200,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10954,'LINOD', 5, CAST('2016-03-17T16:00:00.000' AS TIMESTAMP), CAST('2016-04-28T00:00:00.000' AS TIMESTAMP), CAST('2016-03-20T00:00:00.000' AS TIMESTAMP), 1, 27.9100,'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 (10955,'FOLKO', 8, CAST('2016-03-17T17:00:00.000' AS TIMESTAMP), CAST('2016-04-14T00:00:00.000' AS TIMESTAMP), CAST('2016-03-20T00:00:00.000' AS TIMESTAMP), 2, 3.2600,'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 (10956,'BLAUS', 6, CAST('2016-03-17T20:00:00.000' AS TIMESTAMP), CAST('2016-04-28T00:00:00.000' AS TIMESTAMP), CAST('2016-03-20T00:00:00.000' AS TIMESTAMP), 2, 44.6500,'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 (10957,'HILAA', 8, CAST('2016-03-18T04:00:00.000' AS TIMESTAMP), CAST('2016-04-15T00:00:00.000' AS TIMESTAMP), CAST('2016-03-27T00:00:00.000' AS TIMESTAMP), 3, 105.3600,'HILARION-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 (10958,'OCEAN', 7, CAST('2016-03-18T10:00:00.000' AS TIMESTAMP), CAST('2016-04-15T00:00:00.000' AS TIMESTAMP), CAST('2016-03-27T00:00:00.000' AS TIMESTAMP), 2, 49.5600,'Oc̩ano Atl̒ntico Ltda.','Ing. Gustavo Moncada 8585 Piso 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 (10959,'GOURL', 6, CAST('2016-03-18T14:00:00.000' AS TIMESTAMP), CAST('2016-04-29T00:00:00.000' AS TIMESTAMP), CAST('2016-03-23T00:00:00.000' AS TIMESTAMP), 2, 4.9800,'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 (10960,'HILAA', 3, CAST('2016-03-19T15:00:00.000' AS TIMESTAMP), CAST('2016-04-02T00:00:00.000' AS TIMESTAMP), CAST('2016-04-08T00:00:00.000' AS TIMESTAMP), 1, 2.0800,'HILARION-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 (10961,'QUEEN', 8, CAST('2016-03-19T08:00:00.000' AS TIMESTAMP), CAST('2016-04-16T00:00:00.000' AS TIMESTAMP), CAST('2016-03-30T00:00:00.000' AS TIMESTAMP), 1, 104.4700,'Queen Cozinha','Alameda dos CanÃários, 891','Sao Paulo','SP','05487-020','Brazil');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10962,'QUICK', 8, CAST('2016-03-19T02:00:00.000' AS TIMESTAMP), CAST('2016-04-16T00:00:00.000' AS TIMESTAMP), CAST('2016-03-23T00:00:00.000' AS TIMESTAMP), 2, 275.7900,'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 (10963,'FURIB', 9, CAST('2016-03-19T16:00:00.000' AS TIMESTAMP), CAST('2016-04-16T00:00:00.000' AS TIMESTAMP), CAST('2016-03-26T00:00:00.000' AS TIMESTAMP), 3, 2.7000,'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 (10964,'SPECD', 3, CAST('2016-03-20T09:00:00.000' AS TIMESTAMP), CAST('2016-04-17T00:00:00.000' AS TIMESTAMP), CAST('2016-03-24T00:00:00.000' AS TIMESTAMP), 2, 87.3800,'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 (10965,'OLDWO', 6, CAST('2016-03-20T05:00:00.000' AS TIMESTAMP), CAST('2016-04-17T00:00:00.000' AS TIMESTAMP), CAST('2016-03-30T00:00:00.000' AS TIMESTAMP), 3, 144.3800,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10966,'CHOPS', 4, CAST('2016-03-20T20:00:00.000' AS TIMESTAMP), CAST('2016-04-17T00:00:00.000' AS TIMESTAMP), CAST('2016-04-08T00:00:00.000' AS TIMESTAMP), 1, 27.1900,'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 (10967,'TOMSP', 2, CAST('2016-03-23T18:00:00.000' AS TIMESTAMP), CAST('2016-04-20T00:00:00.000' AS TIMESTAMP), CAST('2016-04-02T00:00:00.000' AS TIMESTAMP), 2, 62.2200,'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 (10968,'ERNSH', 1, CAST('2016-03-23T04:00:00.000' AS TIMESTAMP), CAST('2016-04-20T00:00:00.000' AS TIMESTAMP), CAST('2016-04-01T00:00:00.000' AS TIMESTAMP), 3, 74.6000,'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 (10969,'COMMI', 1, CAST('2016-03-23T14:00:00.000' AS TIMESTAMP), CAST('2016-04-20T00:00:00.000' AS TIMESTAMP), CAST('2016-03-30T00:00:00.000' AS TIMESTAMP), 2, 0.2100,'Comércio Mineiro','Av. dos Lusáadas, 23','Sao Paulo','SP','05432-043','Brazil');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10970,'BOLID', 9, CAST('2016-03-24T09:00:00.000' AS TIMESTAMP), CAST('2016-04-07T00:00:00.000' AS TIMESTAMP), CAST('2016-04-24T00:00:00.000' AS TIMESTAMP), 1, 16.1600,'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 (10971,'FRANR', 2, CAST('2016-03-24T11:00:00.000' AS TIMESTAMP), CAST('2016-04-21T00:00:00.000' AS TIMESTAMP), CAST('2016-04-02T00:00:00.000' AS TIMESTAMP), 2, 121.8200,'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 (10972,'LACOR', 4, CAST('2016-03-24T10:00:00.000' AS TIMESTAMP), CAST('2016-04-21T00:00:00.000' AS TIMESTAMP), CAST('2016-03-26T00:00:00.000' AS TIMESTAMP), 2, 0.0200,'La corne d''abondance','67, avenue de l''Europe','Versailles', NULL,'78000','France');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10973,'LACOR', 6, CAST('2016-03-24T09:00:00.000' AS TIMESTAMP), CAST('2016-04-21T00:00:00.000' AS TIMESTAMP), CAST('2016-03-27T00:00:00.000' AS TIMESTAMP), 2, 15.1700,'La corne d''abondance','67, avenue de l''Europe','Versailles', NULL,'78000','France');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10974,'SPLIR', 3, CAST('2016-03-25T21:00:00.000' AS TIMESTAMP), CAST('2016-04-08T00:00:00.000' AS TIMESTAMP), CAST('2016-04-03T00:00:00.000' AS TIMESTAMP), 3, 12.9600,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA');
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry) VALUES (10975,'BOTTM', 1, CAST('2016-03-25T21:00:00.000' AS TIMESTAMP), CAST('2016-04-22T00:00:00.000' AS TIMESTAMP), CAST('2016-03-27T00:00:00.000' AS TIMESTAMP), 3, 32.2700,'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 (10976,'HILAA', 1, CAST('2016-03-25T20:00:00.000' AS TIMESTAMP), CAST('2016-05-06T00:00:00.000' AS TIMESTAMP), CAST('2016-04-03T00:00:00.000' AS TIMESTAMP), 1, 37.9700,'HILARION-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 (10977,'FOLKO', 8, CAST('2016-03-26T02:00:00.000' AS TIMESTAMP), CAST('2016-04-23T00:00:00.000' AS TIMESTAMP), CAST('2016-04-10T00:00:00.000' AS TIMESTAMP), 3, 208.5000,'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 (10978,'MAISD', 9, CAST('2016-03-26T10:00:00.000' AS TIMESTAMP), CAST('2016-04-23T00:00:00.000' AS TIMESTAMP), CAST('2016-04-23T00:00:00.000' AS TIMESTAMP), 2, 32.8200,'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 (10979,'ERNSH', 8, CAST('2016-03-26T14:00:00.000' AS TIMESTAMP), CAST('2016-04-23T00:00:00.000' AS TIMESTAMP), CAST('2016-03-31T00:00:00.000' AS TIMESTAMP), 2, 353.0700,'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 (10980,'FOLKO', 4, CAST('2016-03-27T08:00:00.000' AS TIMESTAMP), CAST('2016-05-08T00:00:00.000' AS TIMESTAMP), CAST('2016-04-17T00:00:00.000' AS TIMESTAMP), 1, 1.2600,'Folk och fÃñ HB','Ãàkergatan 24','BrÃñcke', NULL,'S-844 67','Sweden');