Salta ai contenuti. | Salta alla navigazione

Strumenti personali

SQL della base di dati NorthWind

SQL code icon Northwind-MySQL.sql — SQL code, 612 kB (627528 bytes)

Contenuto del file

DROP DATABASE IF EXISTS Northwind;

CREATE DATABASE Northwind;

CREATE TABLE Northwind.Categories
(CategoryID INT NOT NULL AUTO_INCREMENT, 
CategoryName VARCHAR(15) NOT NULL, 
Description LONGTEXT NULL, 
Picture LONGBLOB NULL, 
PRIMARY KEY(CategoryID), 
INDEX CategoryName(CategoryName));

CREATE TABLE Northwind.CustomerCustomerDemo
(CustomerID CHAR(5) NOT NULL, 
CustomerTypeID CHAR(10) NOT NULL, 
PRIMARY KEY(CustomerID,CustomerTypeID));

CREATE TABLE Northwind.CustomerDemographics
(CustomerTypeID CHAR(10) NOT NULL, 
CustomerDesc LONGTEXT NULL, 
PRIMARY KEY(CustomerTypeID));

CREATE TABLE Northwind.Customers
(CustomerID CHAR(5) NOT NULL, 
CompanyName VARCHAR(40) NOT NULL, 
ContactName VARCHAR(30) NULL, 
ContactTitle VARCHAR(30) NULL, 
Address VARCHAR(60) NULL, 
City VARCHAR(15) NULL, 
Region VARCHAR(15) NULL, 
PostalCode VARCHAR(10) NULL, 
Country VARCHAR(15) NULL, 
Phone VARCHAR(24) NULL, 
Fax VARCHAR(24) NULL, 
PRIMARY KEY(CustomerID), 
INDEX City(City), 
INDEX CompanyName(CompanyName), 
INDEX PostalCode(PostalCode), 
INDEX Region(Region));

CREATE TABLE Northwind.Employees
(EmployeeID INT NOT NULL AUTO_INCREMENT, 
LastName VARCHAR(20) NOT NULL, 
FirstName VARCHAR(10) NOT NULL, 
Email VARCHAR(30) NULL, 
Password VARCHAR(10) NULL,
Title VARCHAR(30) NULL, 
TitleOfCourtesy VARCHAR(25) NULL, 
BirthDate DATETIME NULL, 
HireDate DATETIME NULL, 
Address VARCHAR(60) NULL, 
City VARCHAR(15) NULL, 
Region VARCHAR(15) NULL, 
PostalCode VARCHAR(10) NULL, 
Country VARCHAR(15) NULL, 
HomePhone VARCHAR(24) NULL, 
Extension VARCHAR(4) NULL, 
Photo LONGBLOB NULL, 
Notes LONGTEXT NULL, 
ReportsTo INT NULL, 
PhotoPath VARCHAR(255) NULL, 
PRIMARY KEY(EmployeeID), 
INDEX LastName(LastName), 
INDEX PostalCode(PostalCode));

CREATE TABLE Northwind.EmployeeTerritories
(EmployeeID INT NOT NULL, 
TerritoryID VARCHAR(20) NOT NULL, 
PRIMARY KEY(EmployeeID,TerritoryID));

CREATE TABLE Northwind.Order_Details
(OrderID INT NOT NULL, 
ProductID INT NOT NULL, 
UnitPrice DECIMAL(19, 4) NOT NULL, 
Quantity SMALLINT NOT NULL, 
Discount FLOAT NOT NULL, 
PRIMARY KEY(OrderID,ProductID), 
INDEX OrderID(OrderID), 
INDEX OrdersOrder_Details(OrderID), 
INDEX ProductID(ProductID), 
INDEX ProductsOrder_Details(ProductID));

CREATE TABLE Northwind.Orders
(OrderID INT NOT NULL AUTO_INCREMENT, 
CustomerID CHAR(5) NULL, 
EmployeeID INT NULL, 
OrderDate DATETIME NULL, 
RequiredDate DATETIME NULL, 
ShippedDate DATETIME NULL, 
ShipVia INT NULL, 
Freight DECIMAL(19, 4) NULL, 
ShipName VARCHAR(40) NULL, 
ShipAddress VARCHAR(60) NULL, 
ShipCity VARCHAR(15) NULL, 
ShipRegion VARCHAR(15) NULL, 
ShipPostalCode VARCHAR(10) NULL, 
ShipCountry VARCHAR(15) NULL, 
PRIMARY KEY(OrderID), 
INDEX CustomerID(CustomerID), 
INDEX CustomersOrders(CustomerID), 
INDEX EmployeeID(EmployeeID), 
INDEX EmployeesOrders(EmployeeID), 
INDEX OrderDate(OrderDate), 
INDEX ShippedDate(ShippedDate), 
INDEX ShippersOrders(ShipVia), 
INDEX ShipPostalCode(ShipPostalCode));

CREATE TABLE Northwind.Products
(ProductID INT NOT NULL AUTO_INCREMENT, 
ProductName VARCHAR(40) NOT NULL, 
SupplierID INT NULL, 
CategoryID INT NULL, 
QuantityPerUnit VARCHAR(20) NULL, 
UnitPrice DECIMAL(19, 4) NULL, 
UnitsInStock SMALLINT NULL, 
UnitsOnOrder SMALLINT NULL, 
ReorderLevel SMALLINT NULL, 
Discontinued TINYINT NOT NULL, 
PRIMARY KEY(ProductID), 
INDEX CategoriesProducts(CategoryID), 
INDEX CategoryID(CategoryID), 
INDEX ProductName(ProductName), 
INDEX SupplierID(SupplierID), 
INDEX SuppliersProducts(SupplierID));

CREATE TABLE Northwind.Region
(RegionID INT NOT NULL, 
RegionDescription CHAR(50) NOT NULL, 
PRIMARY KEY(RegionID));

CREATE TABLE Northwind.Shippers
(ShipperID INT NOT NULL AUTO_INCREMENT, 
CompanyName VARCHAR(40) NOT NULL, 
Phone VARCHAR(24) NULL, 
PRIMARY KEY(ShipperID));

CREATE TABLE Northwind.Suppliers
(SupplierID INT NOT NULL AUTO_INCREMENT, 
CompanyName VARCHAR(40) NOT NULL, 
ContactName VARCHAR(30) NULL, 
ContactTitle VARCHAR(30) NULL, 
Address VARCHAR(60) NULL, 
City VARCHAR(15) NULL, 
Region VARCHAR(15) NULL, 
PostalCode VARCHAR(10) NULL, 
Country VARCHAR(15) NULL, 
Phone VARCHAR(24) NULL, 
Fax VARCHAR(24) NULL, 
HomePage LONGTEXT NULL, 
PRIMARY KEY(SupplierID), 
INDEX CompanyName(CompanyName), 
INDEX PostalCode(PostalCode));

CREATE TABLE Northwind.Territories
(TerritoryID VARCHAR(20) NOT NULL, 
TerritoryDescription CHAR(50) NOT NULL, 
RegionID INT NOT NULL, 
PRIMARY KEY(TerritoryID));

CREATE TABLE Northwind.USStates
(StateID INT NOT NULL, 
StateName VARCHAR(100) NULL, 
StateAbbr VARCHAR(2) NULL, 
StateRegion VARCHAR(50) NULL);

USE Northwind;

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 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,Email, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath)  
VALUES(1, 'Davolio', 'Nancy','ndavolio@northwind.com', 'Sales Representative', 'Ms.', 19481208000000, 19920501000000, '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,Email, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath)  
VALUES(2, 'Fuller', 'Andrew','afuller@northwind.com', 'Vice President, Sales', 'Dr.', 19520219000000, 19920814000000, '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,Email, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath)  
VALUES(3, 'Leverling', 'Janet','jleverling@northwind.com', 'Sales Representative', 'Ms.', 19630830000000, 19920401000000, '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,Email, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath)  
VALUES(4, 'Peacock', 'Margaret','mpeacock@northwind.com', 'Sales Representative', 'Mrs.', 19370919000000, 19930503000000, '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,Email, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath)  
VALUES(5, 'Buchanan', 'Steven','sbuchanan@northwind.com', 'Sales Manager', 'Mr.', 19550304000000, 19931017000000, '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,Email, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath)  
VALUES(6, 'Suyama', 'Michael','msuyama@northwind.com', 'Sales Representative', 'Mr.', 19630702000000, 19931017000000, '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,Email, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath)  
VALUES(7, 'King', 'Robert','rking@northwind.com', 'Sales Representative', 'Mr.', 19600529000000, 19940102000000, '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, Email, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath)  
VALUES(8, 'Callahan', 'Laura','lcallahan@northwind.com', 'Inside Sales Coordinator', 'Ms.', 19580109000000, 19940305000000, '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,Email, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Notes, ReportsTo, PhotoPath)  
VALUES(9, 'Dodsworth', 'Anne','adodsworth@northwind.com', 'Sales Representative', 'Ms.', 19660127000000, 19941115000000, '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 EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(1, '06897');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(1, '19713');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(2, '01581');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(2, '01730');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(2, '01833');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(2, '02116');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(2, '02139');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(2, '02184');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(2, '40222');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(3, '30346');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(3, '31406');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(3, '32859');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(3, '33607');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(4, '20852');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(4, '27403');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(4, '27511');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(5, '02903');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(5, '07960');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(5, '08837');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(5, '10019');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(5, '10038');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(5, '11747');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(5, '14450');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(6, '85014');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(6, '85251');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(6, '98004');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(6, '98052');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(6, '98104');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '60179');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '60601');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '80202');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '80909');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '90405');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '94025');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '94105');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '95008');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '95054');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(7, '95060');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(8, '19428');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(8, '44122');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(8, '45839');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(8, '53404');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(9, '03049');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(9, '03801');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(9, '48075');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(9, '48084');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(9, '48304');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(9, '55113');
INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID)  VALUES(9, '55439');
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10248, 11,  14.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10248, 42,  9.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10248, 72,  34.8, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10249, 14,  18.6, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10249, 51,  42.4, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10250, 41,  7.7, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10250, 51,  42.4, 35,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10250, 65,  16.8, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10251, 22,  16.8, 6,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10251, 57,  15.6, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10251, 65,  16.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10252, 20,  64.8, 40,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10252, 33,  2.0, 25,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10252, 60,  27.2, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10253, 31,  10.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10253, 39,  14.4, 42,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10253, 49,  16.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10254, 24,  3.6, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10254, 55,  19.2, 21,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10254, 74,  8.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10255, 2,  15.2, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10255, 16,  13.9, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10255, 36,  15.2, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10255, 59,  44.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10256, 53,  26.2, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10256, 77,  10.4, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10257, 27,  35.1, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10257, 39,  14.4, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10257, 77,  10.4, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10258, 2,  15.2, 50,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10258, 5,  17.0, 65,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10258, 32,  25.6, 6,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10259, 21,  8.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10259, 37,  20.8, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10260, 41,  7.7, 16,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10260, 57,  15.6, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10260, 62,  39.4, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10260, 70,  12.0, 21,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10261, 21,  8.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10261, 35,  14.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10262, 5,  17.0, 12,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10262, 7,  24.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10262, 56,  30.4, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10263, 16,  13.9, 60,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10263, 24,  3.6, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10263, 30,  20.7, 60,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10263, 74,  8.0, 36,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10264, 2,  15.2, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10264, 41,  7.7, 25,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10265, 17,  31.2, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10265, 70,  12.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10266, 12,  30.4, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10267, 40,  14.7, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10267, 59,  44.0, 70,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10267, 76,  14.4, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10268, 29,  99.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10268, 72,  27.8, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10269, 33,  2.0, 60,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10269, 72,  27.8, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10270, 36,  15.2, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10270, 43,  36.8, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10271, 33,  2.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10272, 20,  64.8, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10272, 31,  10.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10272, 72,  27.8, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10273, 10,  24.8, 24,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10273, 31,  10.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10273, 33,  2.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10273, 40,  14.7, 60,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10273, 76,  14.4, 33,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10274, 71,  17.2, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10274, 72,  27.8, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10275, 24,  3.6, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10275, 59,  44.0, 6,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10276, 10,  24.8, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10276, 13,  4.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10277, 28,  36.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10277, 62,  39.4, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10278, 44,  15.5, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10278, 59,  44.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10278, 63,  35.1, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10278, 73,  12.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10279, 17,  31.2, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10280, 24,  3.6, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10280, 55,  19.2, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10280, 75,  6.2, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10281, 19,  7.3, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10281, 24,  3.6, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10281, 35,  14.4, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10282, 30,  20.7, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10282, 57,  15.6, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10283, 15,  12.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10283, 19,  7.3, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10283, 60,  27.2, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10283, 72,  27.8, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10284, 27,  35.1, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10284, 44,  15.5, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10284, 60,  27.2, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10284, 67,  11.2, 5,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10285, 1,  14.4, 45,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10285, 40,  14.7, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10285, 53,  26.2, 36,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10286, 35,  14.4, 100,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10286, 62,  39.4, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10287, 16,  13.9, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10287, 34,  11.2, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10287, 46,  9.6, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10288, 54,  5.9, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10288, 68,  10.0, 3,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10289, 3,  8.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10289, 64,  26.6, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10290, 5,  17.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10290, 29,  99.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10290, 49,  16.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10290, 77,  10.4, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10291, 13,  4.8, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10291, 44,  15.5, 24,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10291, 51,  42.4, 2,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10292, 20,  64.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10293, 18,  50.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10293, 24,  3.6, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10293, 63,  35.1, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10293, 75,  6.2, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10294, 1,  14.4, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10294, 17,  31.2, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10294, 43,  36.8, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10294, 60,  27.2, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10294, 75,  6.2, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10295, 56,  30.4, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10296, 11,  16.8, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10296, 16,  13.9, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10296, 69,  28.8, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10297, 39,  14.4, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10297, 72,  27.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10298, 2,  15.2, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10298, 36,  15.2, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10298, 59,  44.0, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10298, 62,  39.4, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10299, 19,  7.3, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10299, 70,  12.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10300, 66,  13.6, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10300, 68,  10.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10301, 40,  14.7, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10301, 56,  30.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10302, 17,  31.2, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10302, 28,  36.4, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10302, 43,  36.8, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10303, 40,  14.7, 40,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10303, 65,  16.8, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10303, 68,  10.0, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10304, 49,  16.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10304, 59,  44.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10304, 71,  17.2, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10305, 18,  50.0, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10305, 29,  99.0, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10305, 39,  14.4, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10306, 30,  20.7, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10306, 53,  26.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10306, 54,  5.9, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10307, 62,  39.4, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10307, 68,  10.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10308, 69,  28.8, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10308, 70,  12.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10309, 4,  17.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10309, 6,  20.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10309, 42,  11.2, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10309, 43,  36.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10309, 71,  17.2, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10310, 16,  13.9, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10310, 62,  39.4, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10311, 42,  11.2, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10311, 69,  28.8, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10312, 28,  36.4, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10312, 43,  36.8, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10312, 53,  26.2, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10312, 75,  6.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10313, 36,  15.2, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10314, 32,  25.6, 40,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10314, 58,  10.6, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10314, 62,  39.4, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10315, 34,  11.2, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10315, 70,  12.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10316, 41,  7.7, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10316, 62,  39.4, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10317, 1,  14.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10318, 41,  7.7, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10318, 76,  14.4, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10319, 17,  31.2, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10319, 28,  36.4, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10319, 76,  14.4, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10320, 71,  17.2, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10321, 35,  14.4, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10322, 52,  5.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10323, 15,  12.4, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10323, 25,  11.2, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10323, 39,  14.4, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10324, 16,  13.9, 21,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10324, 35,  14.4, 70,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10324, 46,  9.6, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10324, 59,  44.0, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10324, 63,  35.1, 80,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10325, 6,  20.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10325, 13,  4.8, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10325, 14,  18.6, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10325, 31,  10.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10325, 72,  27.8, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10326, 4,  17.6, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10326, 57,  15.6, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10326, 75,  6.2, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10327, 2,  15.2, 25,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10327, 11,  16.8, 50,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10327, 30,  20.7, 35,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10327, 58,  10.6, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10328, 59,  44.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10328, 65,  16.8, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10328, 68,  10.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10329, 19,  7.3, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10329, 30,  20.7, 8,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10329, 38,  210.8, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10329, 56,  30.4, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10330, 26,  24.9, 50,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10330, 72,  27.8, 25,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10331, 54,  5.9, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10332, 18,  50.0, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10332, 42,  11.2, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10332, 47,  7.6, 16,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10333, 14,  18.6, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10333, 21,  8.0, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10333, 71,  17.2, 40,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10334, 52,  5.6, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10334, 68,  10.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10335, 2,  15.2, 7,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10335, 31,  10.0, 25,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10335, 32,  25.6, 6,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10335, 51,  42.4, 48,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10336, 4,  17.6, 18,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10337, 23,  7.2, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10337, 26,  24.9, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10337, 36,  15.2, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10337, 37,  20.8, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10337, 72,  27.8, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10338, 17,  31.2, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10338, 30,  20.7, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10339, 4,  17.6, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10339, 17,  31.2, 70,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10339, 62,  39.4, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10340, 18,  50.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10340, 41,  7.7, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10340, 43,  36.8, 40,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10341, 33,  2.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10341, 59,  44.0, 9,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10342, 2,  15.2, 24,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10342, 31,  10.0, 56,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10342, 36,  15.2, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10342, 55,  19.2, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10343, 64,  26.6, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10343, 68,  10.0, 4,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10343, 76,  14.4, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10344, 4,  17.6, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10344, 8,  32.0, 70,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10345, 8,  32.0, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10345, 19,  7.3, 80,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10345, 42,  11.2, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10346, 17,  31.2, 36,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10346, 56,  30.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10347, 25,  11.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10347, 39,  14.4, 50,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10347, 40,  14.7, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10347, 75,  6.2, 6,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10348, 1,  14.4, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10348, 23,  7.2, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10349, 54,  5.9, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10350, 50,  13.0, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10350, 69,  28.8, 18,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10351, 38,  210.8, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10351, 41,  7.7, 13,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10351, 44,  15.5, 77,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10351, 65,  16.8, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10352, 24,  3.6, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10352, 54,  5.9, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10353, 11,  16.8, 12,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10353, 38,  210.8, 50,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10354, 1,  14.4, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10354, 29,  99.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10355, 24,  3.6, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10355, 57,  15.6, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10356, 31,  10.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10356, 55,  19.2, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10356, 69,  28.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10357, 10,  24.8, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10357, 26,  24.9, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10357, 60,  27.2, 8,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10358, 24,  3.6, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10358, 34,  11.2, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10358, 36,  15.2, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10359, 16,  13.9, 56,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10359, 31,  10.0, 70,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10359, 60,  27.2, 80,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10360, 28,  36.4, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10360, 29,  99.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10360, 38,  210.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10360, 49,  16.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10360, 54,  5.9, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10361, 39,  14.4, 54,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10361, 60,  27.2, 55,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10362, 25,  11.2, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10362, 51,  42.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10362, 54,  5.9, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10363, 31,  10.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10363, 75,  6.2, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10363, 76,  14.4, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10364, 69,  28.8, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10364, 71,  17.2, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10365, 11,  16.8, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10366, 65,  16.8, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10366, 77,  10.4, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10367, 34,  11.2, 36,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10367, 54,  5.9, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10367, 65,  16.8, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10367, 77,  10.4, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10368, 21,  8.0, 5,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10368, 28,  36.4, 13,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10368, 57,  15.6, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10368, 64,  26.6, 35,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10369, 29,  99.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10369, 56,  30.4, 18,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10370, 1,  14.4, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10370, 64,  26.6, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10370, 74,  8.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10371, 36,  15.2, 6,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10372, 20,  64.8, 12,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10372, 38,  210.8, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10372, 60,  27.2, 70,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10372, 72,  27.8, 42,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10373, 58,  10.6, 80,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10373, 71,  17.2, 50,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10374, 31,  10.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10374, 58,  10.6, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10375, 14,  18.6, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10375, 54,  5.9, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10376, 31,  10.0, 42,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10377, 28,  36.4, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10377, 39,  14.4, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10378, 71,  17.2, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10379, 41,  7.7, 8,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10379, 63,  35.1, 16,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10379, 65,  16.8, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10380, 30,  20.7, 18,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10380, 53,  26.2, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10380, 60,  27.2, 6,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10380, 70,  12.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10381, 74,  8.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10382, 5,  17.0, 32,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10382, 18,  50.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10382, 29,  99.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10382, 33,  2.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10382, 74,  8.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10383, 13,  4.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10383, 50,  13.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10383, 56,  30.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10384, 20,  64.8, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10384, 60,  27.2, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10385, 7,  24.0, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10385, 60,  27.2, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10385, 68,  10.0, 8,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10386, 24,  3.6, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10386, 34,  11.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10387, 24,  3.6, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10387, 28,  36.4, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10387, 59,  44.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10387, 71,  17.2, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10388, 45,  7.6, 15,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10388, 52,  5.6, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10388, 53,  26.2, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10389, 10,  24.8, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10389, 55,  19.2, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10389, 62,  39.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10389, 70,  12.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10390, 31,  10.0, 60,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10390, 35,  14.4, 40,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10390, 46,  9.6, 45,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10390, 72,  27.8, 24,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10391, 13,  4.8, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10392, 69,  28.8, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10393, 2,  15.2, 25,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10393, 14,  18.6, 42,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10393, 25,  11.2, 7,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10393, 26,  24.9, 70,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10393, 31,  10.0, 32,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10394, 13,  4.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10394, 62,  39.4, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10395, 46,  9.6, 28,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10395, 53,  26.2, 70,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10395, 69,  28.8, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10396, 23,  7.2, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10396, 71,  17.2, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10396, 72,  27.8, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10397, 21,  8.0, 10,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10397, 51,  42.4, 18,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10398, 35,  14.4, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10398, 55,  19.2, 120,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10399, 68,  10.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10399, 71,  17.2, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10399, 76,  14.4, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10399, 77,  10.4, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10400, 29,  99.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10400, 35,  14.4, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10400, 49,  16.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10401, 30,  20.7, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10401, 56,  30.4, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10401, 65,  16.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10401, 71,  17.2, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10402, 23,  7.2, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10402, 63,  35.1, 65,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10403, 16,  13.9, 21,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10403, 48,  10.2, 70,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10404, 26,  24.9, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10404, 42,  11.2, 40,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10404, 49,  16.0, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10405, 3,  8.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10406, 1,  14.4, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10406, 21,  8.0, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10406, 28,  36.4, 42,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10406, 36,  15.2, 5,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10406, 40,  14.7, 2,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10407, 11,  16.8, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10407, 69,  28.8, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10407, 71,  17.2, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10408, 37,  20.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10408, 54,  5.9, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10408, 62,  39.4, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10409, 14,  18.6, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10409, 21,  8.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10410, 33,  2.0, 49,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10410, 59,  44.0, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10411, 41,  7.7, 25,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10411, 44,  15.5, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10411, 59,  44.0, 9,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10412, 14,  18.6, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10413, 1,  14.4, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10413, 62,  39.4, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10413, 76,  14.4, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10414, 19,  7.3, 18,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10414, 33,  2.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10415, 17,  31.2, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10415, 33,  2.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10416, 19,  7.3, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10416, 53,  26.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10416, 57,  15.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10417, 38,  210.8, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10417, 46,  9.6, 2,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10417, 68,  10.0, 36,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10417, 77,  10.4, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10418, 2,  15.2, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10418, 47,  7.6, 55,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10418, 61,  22.8, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10418, 74,  8.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10419, 60,  27.2, 60,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10419, 69,  28.8, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10420, 9,  77.6, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10420, 13,  4.8, 2,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10420, 70,  12.0, 8,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10420, 73,  12.0, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10421, 19,  7.3, 4,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10421, 26,  24.9, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10421, 53,  26.2, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10421, 77,  10.4, 10,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10422, 26,  24.9, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10423, 31,  10.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10423, 59,  44.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10424, 35,  14.4, 60,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10424, 38,  210.8, 49,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10424, 68,  10.0, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10425, 55,  19.2, 10,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10425, 76,  14.4, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10426, 56,  30.4, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10426, 64,  26.6, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10427, 14,  18.6, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10428, 46,  9.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10429, 50,  13.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10429, 63,  35.1, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10430, 17,  31.2, 45,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10430, 21,  8.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10430, 56,  30.4, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10430, 59,  44.0, 70,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10431, 17,  31.2, 50,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10431, 40,  14.7, 50,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10431, 47,  7.6, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10432, 26,  24.9, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10432, 54,  5.9, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10433, 56,  30.4, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10434, 11,  16.8, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10434, 76,  14.4, 18,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10435, 2,  15.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10435, 22,  16.8, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10435, 72,  27.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10436, 46,  9.6, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10436, 56,  30.4, 40,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10436, 64,  26.6, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10436, 75,  6.2, 24,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10437, 53,  26.2, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10438, 19,  7.3, 15,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10438, 34,  11.2, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10438, 57,  15.6, 15,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10439, 12,  30.4, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10439, 16,  13.9, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10439, 64,  26.6, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10439, 74,  8.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10440, 2,  15.2, 45,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10440, 16,  13.9, 49,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10440, 29,  99.0, 24,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10440, 61,  22.8, 90,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10441, 27,  35.1, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10442, 11,  16.8, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10442, 54,  5.9, 80,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10442, 66,  13.6, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10443, 11,  16.8, 6,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10443, 28,  36.4, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10444, 17,  31.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10444, 26,  24.9, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10444, 35,  14.4, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10444, 41,  7.7, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10445, 39,  14.4, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10445, 54,  5.9, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10446, 19,  7.3, 12,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10446, 24,  3.6, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10446, 31,  10.0, 3,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10446, 52,  5.6, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10447, 19,  7.3, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10447, 65,  16.8, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10447, 71,  17.2, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10448, 26,  24.9, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10448, 40,  14.7, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10449, 10,  24.8, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10449, 52,  5.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10449, 62,  39.4, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10450, 10,  24.8, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10450, 54,  5.9, 6,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10451, 55,  19.2, 120,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10451, 64,  26.6, 35,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10451, 65,  16.8, 28,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10451, 77,  10.4, 55,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10452, 28,  36.4, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10452, 44,  15.5, 100,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10453, 48,  10.2, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10453, 70,  12.0, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10454, 16,  13.9, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10454, 33,  2.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10454, 46,  9.6, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10455, 39,  14.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10455, 53,  26.2, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10455, 61,  22.8, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10455, 71,  17.2, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10456, 21,  8.0, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10456, 49,  16.0, 21,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10457, 59,  44.0, 36,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10458, 26,  24.9, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10458, 28,  36.4, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10458, 43,  36.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10458, 56,  30.4, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10458, 71,  17.2, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10459, 7,  24.0, 16,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10459, 46,  9.6, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10459, 72,  27.8, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10460, 68,  10.0, 21,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10460, 75,  6.2, 4,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10461, 21,  8.0, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10461, 30,  20.7, 28,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10461, 55,  19.2, 60,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10462, 13,  4.8, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10462, 23,  7.2, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10463, 19,  7.3, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10463, 42,  11.2, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10464, 4,  17.6, 16,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10464, 43,  36.8, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10464, 56,  30.4, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10464, 60,  27.2, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10465, 24,  3.6, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10465, 29,  99.0, 18,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10465, 40,  14.7, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10465, 45,  7.6, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10465, 50,  13.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10466, 11,  16.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10466, 46,  9.6, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10467, 24,  3.6, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10467, 25,  11.2, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10468, 30,  20.7, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10468, 43,  36.8, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10469, 2,  15.2, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10469, 16,  13.9, 35,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10469, 44,  15.5, 2,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10470, 18,  50.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10470, 23,  7.2, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10470, 64,  26.6, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10471, 7,  24.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10471, 56,  30.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10472, 24,  3.6, 80,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10472, 51,  42.4, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10473, 33,  2.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10473, 71,  17.2, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10474, 14,  18.6, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10474, 28,  36.4, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10474, 40,  14.7, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10474, 75,  6.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10475, 31,  10.0, 35,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10475, 66,  13.6, 60,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10475, 76,  14.4, 42,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10476, 55,  19.2, 2,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10476, 70,  12.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10477, 1,  14.4, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10477, 21,  8.0, 21,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10477, 39,  14.4, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10478, 10,  24.8, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10479, 38,  210.8, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10479, 53,  26.2, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10479, 59,  44.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10479, 64,  26.6, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10480, 47,  7.6, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10480, 59,  44.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10481, 49,  16.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10481, 60,  27.2, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10482, 40,  14.7, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10483, 34,  11.2, 35,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10483, 77,  10.4, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10484, 21,  8.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10484, 40,  14.7, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10484, 51,  42.4, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10485, 2,  15.2, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10485, 3,  8.0, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10485, 55,  19.2, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10485, 70,  12.0, 60,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10486, 11,  16.8, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10486, 51,  42.4, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10486, 74,  8.0, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10487, 19,  7.3, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10487, 26,  24.9, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10487, 54,  5.9, 24,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10488, 59,  44.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10488, 73,  12.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10489, 11,  16.8, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10489, 16,  13.9, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10490, 59,  44.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10490, 68,  10.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10490, 75,  6.2, 36,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10491, 44,  15.5, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10491, 77,  10.4, 7,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10492, 25,  11.2, 60,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10492, 42,  11.2, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10493, 65,  16.8, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10493, 66,  13.6, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10493, 69,  28.8, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10494, 56,  30.4, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10495, 23,  7.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10495, 41,  7.7, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10495, 77,  10.4, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10496, 31,  10.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10497, 56,  30.4, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10497, 72,  27.8, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10497, 77,  10.4, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10498, 24,  4.5, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10498, 40,  18.4, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10498, 42,  14.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10499, 28,  45.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10499, 49,  20.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10500, 15,  15.5, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10500, 28,  45.6, 8,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10501, 54,  7.45, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10502, 45,  9.5, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10502, 53,  32.8, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10502, 67,  14.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10503, 14,  23.25, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10503, 65,  21.05, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10504, 2,  19.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10504, 21,  10.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10504, 53,  32.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10504, 61,  28.5, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10505, 62,  49.3, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10506, 25,  14.0, 18,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10506, 70,  15.0, 14,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10507, 43,  46.0, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10507, 48,  12.75, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10508, 13,  6.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10508, 39,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10509, 28,  45.6, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10510, 29,  123.79, 36,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10510, 75,  7.75, 36,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10511, 4,  22.0, 50,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10511, 7,  30.0, 50,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10511, 8,  40.0, 10,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10512, 24,  4.5, 10,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10512, 46,  12.0, 9,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10512, 47,  9.5, 6,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10512, 60,  34.0, 12,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10513, 21,  10.0, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10513, 32,  32.0, 50,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10513, 61,  28.5, 15,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10514, 20,  81.0, 39,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10514, 28,  45.6, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10514, 56,  38.0, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10514, 65,  21.05, 39,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10514, 75,  7.75, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10515, 9,  97.0, 16,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10515, 16,  17.45, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10515, 27,  43.9, 120,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10515, 33,  2.5, 16,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10515, 60,  34.0, 84,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10516, 18,  62.5, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10516, 41,  9.65, 80,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10516, 42,  14.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10517, 52,  7.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10517, 59,  55.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10517, 70,  15.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10518, 24,  4.5, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10518, 38,  263.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10518, 44,  19.45, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10519, 10,  31.0, 16,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10519, 56,  38.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10519, 60,  34.0, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10520, 24,  4.5, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10520, 53,  32.8, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10521, 35,  18.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10521, 41,  9.65, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10521, 68,  12.5, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10522, 1,  18.0, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10522, 8,  40.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10522, 30,  25.89, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10522, 40,  18.4, 25,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10523, 17,  39.0, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10523, 20,  81.0, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10523, 37,  26.0, 18,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10523, 41,  9.65, 6,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10524, 10,  31.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10524, 30,  25.89, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10524, 43,  46.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10524, 54,  7.45, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10525, 36,  19.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10525, 40,  18.4, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10526, 1,  18.0, 8,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10526, 13,  6.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10526, 56,  38.0, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10527, 4,  22.0, 50,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10527, 36,  19.0, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10528, 11,  21.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10528, 33,  2.5, 8,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10528, 72,  34.8, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10529, 55,  24.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10529, 68,  12.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10529, 69,  36.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10530, 17,  39.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10530, 43,  46.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10530, 61,  28.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10530, 76,  18.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10531, 59,  55.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10532, 30,  25.89, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10532, 66,  17.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10533, 4,  22.0, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10533, 72,  34.8, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10533, 73,  15.0, 24,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10534, 30,  25.89, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10534, 40,  18.4, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10534, 54,  7.45, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10535, 11,  21.0, 50,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10535, 40,  18.4, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10535, 57,  19.5, 5,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10535, 59,  55.0, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10536, 12,  38.0, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10536, 31,  12.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10536, 33,  2.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10536, 60,  34.0, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10537, 31,  12.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10537, 51,  53.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10537, 58,  13.25, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10537, 72,  34.8, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10537, 73,  15.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10538, 70,  15.0, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10538, 72,  34.8, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10539, 13,  6.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10539, 21,  10.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10539, 33,  2.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10539, 49,  20.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10540, 3,  10.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10540, 26,  31.23, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10540, 38,  263.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10540, 68,  12.5, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10541, 24,  4.5, 35,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10541, 38,  263.5, 4,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10541, 65,  21.05, 36,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10541, 71,  21.5, 9,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10542, 11,  21.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10542, 54,  7.45, 24,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10543, 12,  38.0, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10543, 23,  9.0, 70,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10544, 28,  45.6, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10544, 67,  14.0, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10545, 11,  21.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10546, 7,  30.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10546, 35,  18.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10546, 62,  49.3, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10547, 32,  32.0, 24,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10547, 36,  19.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10548, 34,  14.0, 10,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10548, 41,  9.65, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10549, 31,  12.5, 55,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10549, 45,  9.5, 100,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10549, 51,  53.0, 48,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10550, 17,  39.0, 8,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10550, 19,  9.2, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10550, 21,  10.0, 6,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10550, 61,  28.5, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10551, 16,  17.45, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10551, 35,  18.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10551, 44,  19.45, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10552, 69,  36.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10552, 75,  7.75, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10553, 11,  21.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10553, 16,  17.45, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10553, 22,  21.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10553, 31,  12.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10553, 35,  18.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10554, 16,  17.45, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10554, 23,  9.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10554, 62,  49.3, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10554, 77,  13.0, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10555, 14,  23.25, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10555, 19,  9.2, 35,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10555, 24,  4.5, 18,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10555, 51,  53.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10555, 56,  38.0, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10556, 72,  34.8, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10557, 64,  33.25, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10557, 75,  7.75, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10558, 47,  9.5, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10558, 51,  53.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10558, 52,  7.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10558, 53,  32.8, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10558, 73,  15.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10559, 41,  9.65, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10559, 55,  24.0, 18,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10560, 30,  25.89, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10560, 62,  49.3, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10561, 44,  19.45, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10561, 51,  53.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10562, 33,  2.5, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10562, 62,  49.3, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10563, 36,  19.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10563, 52,  7.0, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10564, 17,  39.0, 16,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10564, 31,  12.5, 6,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10564, 55,  24.0, 25,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10565, 24,  4.5, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10565, 64,  33.25, 18,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10566, 11,  21.0, 35,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10566, 18,  62.5, 18,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10566, 76,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10567, 31,  12.5, 60,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10567, 51,  53.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10567, 59,  55.0, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10568, 10,  31.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10569, 31,  12.5, 35,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10569, 76,  18.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10570, 11,  21.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10570, 56,  38.0, 60,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10571, 14,  23.25, 11,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10571, 42,  14.0, 28,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10572, 16,  17.45, 12,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10572, 32,  32.0, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10572, 40,  18.4, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10572, 75,  7.75, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10573, 17,  39.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10573, 34,  14.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10573, 53,  32.8, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10574, 33,  2.5, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10574, 40,  18.4, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10574, 62,  49.3, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10574, 64,  33.25, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10575, 59,  55.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10575, 63,  43.9, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10575, 72,  34.8, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10575, 76,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10576, 1,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10576, 31,  12.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10576, 44,  19.45, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10577, 39,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10577, 75,  7.75, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10577, 77,  13.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10578, 35,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10578, 57,  19.5, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10579, 15,  15.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10579, 75,  7.75, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10580, 14,  23.25, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10580, 41,  9.65, 9,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10580, 65,  21.05, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10581, 75,  7.75, 50,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10582, 57,  19.5, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10582, 76,  18.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10583, 29,  123.79, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10583, 60,  34.0, 24,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10583, 69,  36.0, 10,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10584, 31,  12.5, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10585, 47,  9.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10586, 52,  7.0, 4,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10587, 26,  31.23, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10587, 35,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10587, 77,  13.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10588, 18,  62.5, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10588, 42,  14.0, 100,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10589, 35,  18.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10590, 1,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10590, 77,  13.0, 60,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10591, 3,  10.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10591, 7,  30.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10591, 54,  7.45, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10592, 15,  15.5, 25,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10592, 26,  31.23, 5,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10593, 20,  81.0, 21,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10593, 69,  36.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10593, 76,  18.0, 4,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10594, 52,  7.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10594, 58,  13.25, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10595, 35,  18.0, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10595, 61,  28.5, 120,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10595, 69,  36.0, 65,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10596, 56,  38.0, 5,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10596, 63,  43.9, 24,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10596, 75,  7.75, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10597, 24,  4.5, 35,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10597, 57,  19.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10597, 65,  21.05, 12,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10598, 27,  43.9, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10598, 71,  21.5, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10599, 62,  49.3, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10600, 54,  7.45, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10600, 73,  15.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10601, 13,  6.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10601, 59,  55.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10602, 77,  13.0, 5,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10603, 22,  21.0, 48,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10603, 49,  20.0, 25,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10604, 48,  12.75, 6,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10604, 76,  18.0, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10605, 16,  17.45, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10605, 59,  55.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10605, 60,  34.0, 70,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10605, 71,  21.5, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10606, 4,  22.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10606, 55,  24.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10606, 62,  49.3, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10607, 7,  30.0, 45,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10607, 17,  39.0, 100,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10607, 33,  2.5, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10607, 40,  18.4, 42,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10607, 72,  34.8, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10608, 56,  38.0, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10609, 1,  18.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10609, 10,  31.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10609, 21,  10.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10610, 36,  19.0, 21,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10611, 1,  18.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10611, 2,  19.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10611, 60,  34.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10612, 10,  31.0, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10612, 36,  19.0, 55,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10612, 49,  20.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10612, 60,  34.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10612, 76,  18.0, 80,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10613, 13,  6.0, 8,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10613, 75,  7.75, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10614, 11,  21.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10614, 21,  10.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10614, 39,  18.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10615, 55,  24.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10616, 38,  263.5, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10616, 56,  38.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10616, 70,  15.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10616, 71,  21.5, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10617, 59,  55.0, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10618, 6,  25.0, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10618, 56,  38.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10618, 68,  12.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10619, 21,  10.0, 42,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10619, 22,  21.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10620, 24,  4.5, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10620, 52,  7.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10621, 19,  9.2, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10621, 23,  9.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10621, 70,  15.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10621, 71,  21.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10622, 2,  19.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10622, 68,  12.5, 18,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10623, 14,  23.25, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10623, 19,  9.2, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10623, 21,  10.0, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10623, 24,  4.5, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10623, 35,  18.0, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10624, 28,  45.6, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10624, 29,  123.79, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10624, 44,  19.45, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10625, 14,  23.25, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10625, 42,  14.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10625, 60,  34.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10626, 53,  32.8, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10626, 60,  34.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10626, 71,  21.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10627, 62,  49.3, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10627, 73,  15.0, 35,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10628, 1,  18.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10629, 29,  123.79, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10629, 64,  33.25, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10630, 55,  24.0, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10630, 76,  18.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10631, 75,  7.75, 8,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10632, 2,  19.0, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10632, 33,  2.5, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10633, 12,  38.0, 36,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10633, 13,  6.0, 13,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10633, 26,  31.23, 35,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10633, 62,  49.3, 80,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10634, 7,  30.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10634, 18,  62.5, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10634, 51,  53.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10634, 75,  7.75, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10635, 4,  22.0, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10635, 5,  21.35, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10635, 22,  21.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10636, 4,  22.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10636, 58,  13.25, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10637, 11,  21.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10637, 50,  16.25, 25,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10637, 56,  38.0, 60,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10638, 45,  9.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10638, 65,  21.05, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10638, 72,  34.8, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10639, 18,  62.5, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10640, 69,  36.0, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10640, 70,  15.0, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10641, 2,  19.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10641, 40,  18.4, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10642, 21,  10.0, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10642, 61,  28.5, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10643, 28,  45.6, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10643, 39,  18.0, 21,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10643, 46,  12.0, 2,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10644, 18,  62.5, 4,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10644, 43,  46.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10644, 46,  12.0, 21,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10645, 18,  62.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10645, 36,  19.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10646, 1,  18.0, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10646, 10,  31.0, 18,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10646, 71,  21.5, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10646, 77,  13.0, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10647, 19,  9.2, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10647, 39,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10648, 22,  21.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10648, 24,  4.5, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10649, 28,  45.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10649, 72,  34.8, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10650, 30,  25.89, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10650, 53,  32.8, 25,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10650, 54,  7.45, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10651, 19,  9.2, 12,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10651, 22,  21.0, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10652, 30,  25.89, 2,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10652, 42,  14.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10653, 16,  17.45, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10653, 60,  34.0, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10654, 4,  22.0, 12,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10654, 39,  18.0, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10654, 54,  7.45, 6,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10655, 41,  9.65, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10656, 14,  23.25, 3,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10656, 44,  19.45, 28,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10656, 47,  9.5, 6,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10657, 15,  15.5, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10657, 41,  9.65, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10657, 46,  12.0, 45,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10657, 47,  9.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10657, 56,  38.0, 45,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10657, 60,  34.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10658, 21,  10.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10658, 40,  18.4, 70,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10658, 60,  34.0, 55,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10658, 77,  13.0, 70,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10659, 31,  12.5, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10659, 40,  18.4, 24,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10659, 70,  15.0, 40,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10660, 20,  81.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10661, 39,  18.0, 3,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10661, 58,  13.25, 49,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10662, 68,  12.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10663, 40,  18.4, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10663, 42,  14.0, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10663, 51,  53.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10664, 10,  31.0, 24,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10664, 56,  38.0, 12,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10664, 65,  21.05, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10665, 51,  53.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10665, 59,  55.0, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10665, 76,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10666, 29,  123.79, 36,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10666, 65,  21.05, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10667, 69,  36.0, 45,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10667, 71,  21.5, 14,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10668, 31,  12.5, 8,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10668, 55,  24.0, 4,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10668, 64,  33.25, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10669, 36,  19.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10670, 23,  9.0, 32,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10670, 46,  12.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10670, 67,  14.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10670, 73,  15.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10670, 75,  7.75, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10671, 16,  17.45, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10671, 62,  49.3, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10671, 65,  21.05, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10672, 38,  263.5, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10672, 71,  21.5, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10673, 16,  17.45, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10673, 42,  14.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10673, 43,  46.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10674, 23,  9.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10675, 14,  23.25, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10675, 53,  32.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10675, 58,  13.25, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10676, 10,  31.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10676, 19,  9.2, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10676, 44,  19.45, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10677, 26,  31.23, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10677, 33,  2.5, 8,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10678, 12,  38.0, 100,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10678, 33,  2.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10678, 41,  9.65, 120,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10678, 54,  7.45, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10679, 59,  55.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10680, 16,  17.45, 50,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10680, 31,  12.5, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10680, 42,  14.0, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10681, 19,  9.2, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10681, 21,  10.0, 12,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10681, 64,  33.25, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10682, 33,  2.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10682, 66,  17.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10682, 75,  7.75, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10683, 52,  7.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10684, 40,  18.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10684, 47,  9.5, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10684, 60,  34.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10685, 10,  31.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10685, 41,  9.65, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10685, 47,  9.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10686, 17,  39.0, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10686, 26,  31.23, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10687, 9,  97.0, 50,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10687, 29,  123.79, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10687, 36,  19.0, 6,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10688, 10,  31.0, 18,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10688, 28,  45.6, 60,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10688, 34,  14.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10689, 1,  18.0, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10690, 56,  38.0, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10690, 77,  13.0, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10691, 1,  18.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10691, 29,  123.79, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10691, 43,  46.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10691, 44,  19.45, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10691, 62,  49.3, 48,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10692, 63,  43.9, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10693, 9,  97.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10693, 54,  7.45, 60,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10693, 69,  36.0, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10693, 73,  15.0, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10694, 7,  30.0, 90,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10694, 59,  55.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10694, 70,  15.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10695, 8,  40.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10695, 12,  38.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10695, 24,  4.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10696, 17,  39.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10696, 46,  12.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10697, 19,  9.2, 7,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10697, 35,  18.0, 9,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10697, 58,  13.25, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10697, 70,  15.0, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10698, 11,  21.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10698, 17,  39.0, 8,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10698, 29,  123.79, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10698, 65,  21.05, 65,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10698, 70,  15.0, 8,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10699, 47,  9.5, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10700, 1,  18.0, 5,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10700, 34,  14.0, 12,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10700, 68,  12.5, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10700, 71,  21.5, 60,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10701, 59,  55.0, 42,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10701, 71,  21.5, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10701, 76,  18.0, 35,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10702, 3,  10.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10702, 76,  18.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10703, 2,  19.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10703, 59,  55.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10703, 73,  15.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10704, 4,  22.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10704, 24,  4.5, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10704, 48,  12.75, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10705, 31,  12.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10705, 32,  32.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10706, 16,  17.45, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10706, 43,  46.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10706, 59,  55.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10707, 55,  24.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10707, 57,  19.5, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10707, 70,  15.0, 28,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10708, 5,  21.35, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10708, 36,  19.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10709, 8,  40.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10709, 51,  53.0, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10709, 60,  34.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10710, 19,  9.2, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10710, 47,  9.5, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10711, 19,  9.2, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10711, 41,  9.65, 42,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10711, 53,  32.8, 120,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10712, 53,  32.8, 3,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10712, 56,  38.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10713, 10,  31.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10713, 26,  31.23, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10713, 45,  9.5, 110,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10713, 46,  12.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10714, 2,  19.0, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10714, 17,  39.0, 27,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10714, 47,  9.5, 50,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10714, 56,  38.0, 18,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10714, 58,  13.25, 12,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10715, 10,  31.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10715, 71,  21.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10716, 21,  10.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10716, 51,  53.0, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10716, 61,  28.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10717, 21,  10.0, 32,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10717, 54,  7.45, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10717, 69,  36.0, 25,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10718, 12,  38.0, 36,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10718, 16,  17.45, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10718, 36,  19.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10718, 62,  49.3, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10719, 18,  62.5, 12,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10719, 30,  25.89, 3,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10719, 54,  7.45, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10720, 35,  18.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10720, 71,  21.5, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10721, 44,  19.45, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10722, 2,  19.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10722, 31,  12.5, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10722, 68,  12.5, 45,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10722, 75,  7.75, 42,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10723, 26,  31.23, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10724, 10,  31.0, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10724, 61,  28.5, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10725, 41,  9.65, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10725, 52,  7.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10725, 55,  24.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10726, 4,  22.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10726, 11,  21.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10727, 17,  39.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10727, 56,  38.0, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10727, 59,  55.0, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10728, 30,  25.89, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10728, 40,  18.4, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10728, 55,  24.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10728, 60,  34.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10729, 1,  18.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10729, 21,  10.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10729, 50,  16.25, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10730, 16,  17.45, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10730, 31,  12.5, 3,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10730, 65,  21.05, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10731, 21,  10.0, 40,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10731, 51,  53.0, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10732, 76,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10733, 14,  23.25, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10733, 28,  45.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10733, 52,  7.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10734, 6,  25.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10734, 30,  25.89, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10734, 76,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10735, 61,  28.5, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10735, 77,  13.0, 2,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10736, 65,  21.05, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10736, 75,  7.75, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10737, 13,  6.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10737, 41,  9.65, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10738, 16,  17.45, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10739, 36,  19.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10739, 52,  7.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10740, 28,  45.6, 5,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10740, 35,  18.0, 35,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10740, 45,  9.5, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10740, 56,  38.0, 14,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10741, 2,  19.0, 15,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10742, 3,  10.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10742, 60,  34.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10742, 72,  34.8, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10743, 46,  12.0, 28,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10744, 40,  18.4, 50,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10745, 18,  62.5, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10745, 44,  19.45, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10745, 59,  55.0, 45,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10745, 72,  34.8, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10746, 13,  6.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10746, 42,  14.0, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10746, 62,  49.3, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10746, 69,  36.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10747, 31,  12.5, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10747, 41,  9.65, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10747, 63,  43.9, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10747, 69,  36.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10748, 23,  9.0, 44,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10748, 40,  18.4, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10748, 56,  38.0, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10749, 56,  38.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10749, 59,  55.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10749, 76,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10750, 14,  23.25, 5,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10750, 45,  9.5, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10750, 59,  55.0, 25,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10751, 26,  31.23, 12,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10751, 30,  25.89, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10751, 50,  16.25, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10751, 73,  15.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10752, 1,  18.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10752, 69,  36.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10753, 45,  9.5, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10753, 74,  10.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10754, 40,  18.4, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10755, 47,  9.5, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10755, 56,  38.0, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10755, 57,  19.5, 14,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10755, 69,  36.0, 25,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10756, 18,  62.5, 21,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10756, 36,  19.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10756, 68,  12.5, 6,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10756, 69,  36.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10757, 34,  14.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10757, 59,  55.0, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10757, 62,  49.3, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10757, 64,  33.25, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10758, 26,  31.23, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10758, 52,  7.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10758, 70,  15.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10759, 32,  32.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10760, 25,  14.0, 12,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10760, 27,  43.9, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10760, 43,  46.0, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10761, 25,  14.0, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10761, 75,  7.75, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10762, 39,  18.0, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10762, 47,  9.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10762, 51,  53.0, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10762, 56,  38.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10763, 21,  10.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10763, 22,  21.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10763, 24,  4.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10764, 3,  10.0, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10764, 39,  18.0, 130,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10765, 65,  21.05, 80,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10766, 2,  19.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10766, 7,  30.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10766, 68,  12.5, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10767, 42,  14.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10768, 22,  21.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10768, 31,  12.5, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10768, 60,  34.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10768, 71,  21.5, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10769, 41,  9.65, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10769, 52,  7.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10769, 61,  28.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10769, 62,  49.3, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10770, 11,  21.0, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10771, 71,  21.5, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10772, 29,  123.79, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10772, 59,  55.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10773, 17,  39.0, 33,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10773, 31,  12.5, 70,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10773, 75,  7.75, 7,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10774, 31,  12.5, 2,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10774, 66,  17.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10775, 10,  31.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10775, 67,  14.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10776, 31,  12.5, 16,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10776, 42,  14.0, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10776, 45,  9.5, 27,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10776, 51,  53.0, 120,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10777, 42,  14.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10778, 41,  9.65, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10779, 16,  17.45, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10779, 62,  49.3, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10780, 70,  15.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10780, 77,  13.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10781, 54,  7.45, 3,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10781, 56,  38.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10781, 74,  10.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10782, 31,  12.5, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10783, 31,  12.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10783, 38,  263.5, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10784, 36,  19.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10784, 39,  18.0, 2,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10784, 72,  34.8, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10785, 10,  31.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10785, 75,  7.75, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10786, 8,  40.0, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10786, 30,  25.89, 15,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10786, 75,  7.75, 42,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10787, 2,  19.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10787, 29,  123.79, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10788, 19,  9.2, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10788, 75,  7.75, 40,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10789, 18,  62.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10789, 35,  18.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10789, 63,  43.9, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10789, 68,  12.5, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10790, 7,  30.0, 3,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10790, 56,  38.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10791, 29,  123.79, 14,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10791, 41,  9.65, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10792, 2,  19.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10792, 54,  7.45, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10792, 68,  12.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10793, 41,  9.65, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10793, 52,  7.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10794, 14,  23.25, 15,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10794, 54,  7.45, 6,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10795, 16,  17.45, 65,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10795, 17,  39.0, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10796, 26,  31.23, 21,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10796, 44,  19.45, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10796, 64,  33.25, 35,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10796, 69,  36.0, 24,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10797, 11,  21.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10798, 62,  49.3, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10798, 72,  34.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10799, 13,  6.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10799, 24,  4.5, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10799, 59,  55.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10800, 11,  21.0, 50,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10800, 51,  53.0, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10800, 54,  7.45, 7,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10801, 17,  39.0, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10801, 29,  123.79, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10802, 30,  25.89, 25,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10802, 51,  53.0, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10802, 55,  24.0, 60,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10802, 62,  49.3, 5,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10803, 19,  9.2, 24,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10803, 25,  14.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10803, 59,  55.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10804, 10,  31.0, 36,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10804, 28,  45.6, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10804, 49,  20.0, 4,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10805, 34,  14.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10805, 38,  263.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10806, 2,  19.0, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10806, 65,  21.05, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10806, 74,  10.0, 15,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10807, 40,  18.4, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10808, 56,  38.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10808, 76,  18.0, 50,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10809, 52,  7.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10810, 13,  6.0, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10810, 25,  14.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10810, 70,  15.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10811, 19,  9.2, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10811, 23,  9.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10811, 40,  18.4, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10812, 31,  12.5, 16,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10812, 72,  34.8, 40,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10812, 77,  13.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10813, 2,  19.0, 12,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10813, 46,  12.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10814, 41,  9.65, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10814, 43,  46.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10814, 48,  12.75, 8,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10814, 61,  28.5, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10815, 33,  2.5, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10816, 38,  263.5, 30,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10816, 62,  49.3, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10817, 26,  31.23, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10817, 38,  263.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10817, 40,  18.4, 60,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10817, 62,  49.3, 25,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10818, 32,  32.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10818, 41,  9.65, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10819, 43,  46.0, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10819, 75,  7.75, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10820, 56,  38.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10821, 35,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10821, 51,  53.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10822, 62,  49.3, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10822, 70,  15.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10823, 11,  21.0, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10823, 57,  19.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10823, 59,  55.0, 40,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10823, 77,  13.0, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10824, 41,  9.65, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10824, 70,  15.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10825, 26,  31.23, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10825, 53,  32.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10826, 31,  12.5, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10826, 57,  19.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10827, 10,  31.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10827, 39,  18.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10828, 20,  81.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10828, 38,  263.5, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10829, 2,  19.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10829, 8,  40.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10829, 13,  6.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10829, 60,  34.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10830, 6,  25.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10830, 39,  18.0, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10830, 60,  34.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10830, 68,  12.5, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10831, 19,  9.2, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10831, 35,  18.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10831, 38,  263.5, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10831, 43,  46.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10832, 13,  6.0, 3,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10832, 25,  14.0, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10832, 44,  19.45, 16,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10832, 64,  33.25, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10833, 7,  30.0, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10833, 31,  12.5, 9,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10833, 53,  32.8, 9,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10834, 29,  123.79, 8,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10834, 30,  25.89, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10835, 59,  55.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10835, 77,  13.0, 2,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10836, 22,  21.0, 52,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10836, 35,  18.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10836, 57,  19.5, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10836, 60,  34.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10836, 64,  33.25, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10837, 13,  6.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10837, 40,  18.4, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10837, 47,  9.5, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10837, 76,  18.0, 21,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10838, 1,  18.0, 4,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10838, 18,  62.5, 25,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10838, 36,  19.0, 50,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10839, 58,  13.25, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10839, 72,  34.8, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10840, 25,  14.0, 6,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10840, 39,  18.0, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10841, 10,  31.0, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10841, 56,  38.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10841, 59,  55.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10841, 77,  13.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10842, 11,  21.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10842, 43,  46.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10842, 68,  12.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10842, 70,  15.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10843, 51,  53.0, 4,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10844, 22,  21.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10845, 23,  9.0, 70,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10845, 35,  18.0, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10845, 42,  14.0, 42,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10845, 58,  13.25, 60,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10845, 64,  33.25, 48,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10846, 4,  22.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10846, 70,  15.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10846, 74,  10.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10847, 1,  18.0, 80,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10847, 19,  9.2, 12,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10847, 37,  26.0, 60,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10847, 45,  9.5, 36,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10847, 60,  34.0, 45,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10847, 71,  21.5, 55,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10848, 5,  21.35, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10848, 9,  97.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10849, 3,  10.0, 49,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10849, 26,  31.23, 18,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10850, 25,  14.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10850, 33,  2.5, 4,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10850, 70,  15.0, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10851, 2,  19.0, 5,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10851, 25,  14.0, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10851, 57,  19.5, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10851, 59,  55.0, 42,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10852, 2,  19.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10852, 17,  39.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10852, 62,  49.3, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10853, 18,  62.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10854, 10,  31.0, 100,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10854, 13,  6.0, 65,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10855, 16,  17.45, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10855, 31,  12.5, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10855, 56,  38.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10855, 65,  21.05, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10856, 2,  19.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10856, 42,  14.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10857, 3,  10.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10857, 26,  31.23, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10857, 29,  123.79, 10,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10858, 7,  30.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10858, 27,  43.9, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10858, 70,  15.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10859, 24,  4.5, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10859, 54,  7.45, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10859, 64,  33.25, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10860, 51,  53.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10860, 76,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10861, 17,  39.0, 42,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10861, 18,  62.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10861, 21,  10.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10861, 33,  2.5, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10861, 62,  49.3, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10862, 11,  21.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10862, 52,  7.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10863, 1,  18.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10863, 58,  13.25, 12,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10864, 35,  18.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10864, 67,  14.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10865, 38,  263.5, 60,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10865, 39,  18.0, 80,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10866, 2,  19.0, 21,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10866, 24,  4.5, 6,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10866, 30,  25.89, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10867, 53,  32.8, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10868, 26,  31.23, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10868, 35,  18.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10868, 49,  20.0, 42,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10869, 1,  18.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10869, 11,  21.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10869, 23,  9.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10869, 68,  12.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10870, 35,  18.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10870, 51,  53.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10871, 6,  25.0, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10871, 16,  17.45, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10871, 17,  39.0, 16,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10872, 55,  24.0, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10872, 62,  49.3, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10872, 64,  33.25, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10872, 65,  21.05, 21,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10873, 21,  10.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10873, 28,  45.6, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10874, 10,  31.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10875, 19,  9.2, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10875, 47,  9.5, 21,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10875, 49,  20.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10876, 46,  12.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10876, 64,  33.25, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10877, 16,  17.45, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10877, 18,  62.5, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10878, 20,  81.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10879, 40,  18.4, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10879, 65,  21.05, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10879, 76,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10880, 23,  9.0, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10880, 61,  28.5, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10880, 70,  15.0, 50,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10881, 73,  15.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10882, 42,  14.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10882, 49,  20.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10882, 54,  7.45, 32,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10883, 24,  4.5, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10884, 21,  10.0, 40,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10884, 56,  38.0, 21,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10884, 65,  21.05, 12,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10885, 2,  19.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10885, 24,  4.5, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10885, 70,  15.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10885, 77,  13.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10886, 10,  31.0, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10886, 31,  12.5, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10886, 77,  13.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10887, 25,  14.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10888, 2,  19.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10888, 68,  12.5, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10889, 11,  21.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10889, 38,  263.5, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10890, 17,  39.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10890, 34,  14.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10890, 41,  9.65, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10891, 30,  25.89, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10892, 59,  55.0, 40,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10893, 8,  40.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10893, 24,  4.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10893, 29,  123.79, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10893, 30,  25.89, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10893, 36,  19.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10894, 13,  6.0, 28,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10894, 69,  36.0, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10894, 75,  7.75, 120,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10895, 24,  4.5, 110,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10895, 39,  18.0, 45,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10895, 40,  18.4, 91,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10895, 60,  34.0, 100,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10896, 45,  9.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10896, 56,  38.0, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10897, 29,  123.79, 80,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10897, 30,  25.89, 36,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10898, 13,  6.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10899, 39,  18.0, 8,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10900, 70,  15.0, 3,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10901, 41,  9.65, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10901, 71,  21.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10902, 55,  24.0, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10902, 62,  49.3, 6,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10903, 13,  6.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10903, 65,  21.05, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10903, 68,  12.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10904, 58,  13.25, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10904, 62,  49.3, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10905, 1,  18.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10906, 61,  28.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10907, 75,  7.75, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10908, 7,  30.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10908, 52,  7.0, 14,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10909, 7,  30.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10909, 16,  17.45, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10909, 41,  9.65, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10910, 19,  9.2, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10910, 49,  20.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10910, 61,  28.5, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10911, 1,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10911, 17,  39.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10911, 67,  14.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10912, 11,  21.0, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10912, 29,  123.79, 60,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10913, 4,  22.0, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10913, 33,  2.5, 40,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10913, 58,  13.25, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10914, 71,  21.5, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10915, 17,  39.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10915, 33,  2.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10915, 54,  7.45, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10916, 16,  17.45, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10916, 32,  32.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10916, 57,  19.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10917, 30,  25.89, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10917, 60,  34.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10918, 1,  18.0, 60,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10918, 60,  34.0, 25,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10919, 16,  17.45, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10919, 25,  14.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10919, 40,  18.4, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10920, 50,  16.25, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10921, 35,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10921, 63,  43.9, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10922, 17,  39.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10922, 24,  4.5, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10923, 42,  14.0, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10923, 43,  46.0, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10923, 67,  14.0, 24,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10924, 10,  31.0, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10924, 28,  45.6, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10924, 75,  7.75, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10925, 36,  19.0, 25,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10925, 52,  7.0, 12,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10926, 11,  21.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10926, 13,  6.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10926, 19,  9.2, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10926, 72,  34.8, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10927, 20,  81.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10927, 52,  7.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10927, 76,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10928, 47,  9.5, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10928, 76,  18.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10929, 21,  10.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10929, 75,  7.75, 49,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10929, 77,  13.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10930, 21,  10.0, 36,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10930, 27,  43.9, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10930, 55,  24.0, 25,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10930, 58,  13.25, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10931, 13,  6.0, 42,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10931, 57,  19.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10932, 16,  17.45, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10932, 62,  49.3, 14,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10932, 72,  34.8, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10932, 75,  7.75, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10933, 53,  32.8, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10933, 61,  28.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10934, 6,  25.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10935, 1,  18.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10935, 18,  62.5, 4,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10935, 23,  9.0, 8,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10936, 36,  19.0, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10937, 28,  45.6, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10937, 34,  14.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10938, 13,  6.0, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10938, 43,  46.0, 24,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10938, 60,  34.0, 49,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10938, 71,  21.5, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10939, 2,  19.0, 10,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10939, 67,  14.0, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10940, 7,  30.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10940, 13,  6.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10941, 31,  12.5, 44,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10941, 62,  49.3, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10941, 68,  12.5, 80,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10941, 72,  34.8, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10942, 49,  20.0, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10943, 13,  6.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10943, 22,  21.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10943, 46,  12.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10944, 11,  21.0, 5,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10944, 44,  19.45, 18,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10944, 56,  38.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10945, 13,  6.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10945, 31,  12.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10946, 10,  31.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10946, 24,  4.5, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10946, 77,  13.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10947, 59,  55.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10948, 50,  16.25, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10948, 51,  53.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10948, 55,  24.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10949, 6,  25.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10949, 10,  31.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10949, 17,  39.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10949, 62,  49.3, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10950, 4,  22.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10951, 33,  2.5, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10951, 41,  9.65, 6,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10951, 75,  7.75, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10952, 6,  25.0, 16,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10952, 28,  45.6, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10953, 20,  81.0, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10953, 31,  12.5, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10954, 16,  17.45, 28,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10954, 31,  12.5, 25,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10954, 45,  9.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10954, 60,  34.0, 24,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10955, 75,  7.75, 12,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10956, 21,  10.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10956, 47,  9.5, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10956, 51,  53.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10957, 30,  25.89, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10957, 35,  18.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10957, 64,  33.25, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10958, 5,  21.35, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10958, 7,  30.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10958, 72,  34.8, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10959, 75,  7.75, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10960, 24,  4.5, 10,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10960, 41,  9.65, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10961, 52,  7.0, 6,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10961, 76,  18.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10962, 7,  30.0, 45,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10962, 13,  6.0, 77,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10962, 53,  32.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10962, 69,  36.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10962, 76,  18.0, 44,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10963, 60,  34.0, 2,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10964, 18,  62.5, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10964, 38,  263.5, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10964, 69,  36.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10965, 51,  53.0, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10966, 37,  26.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10966, 56,  38.0, 12,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10966, 62,  49.3, 12,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10967, 19,  9.2, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10967, 49,  20.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10968, 12,  38.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10968, 24,  4.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10968, 64,  33.25, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10969, 46,  12.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10970, 52,  7.0, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10971, 29,  123.79, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10972, 17,  39.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10972, 33,  2.5, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10973, 26,  31.23, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10973, 41,  9.65, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10973, 75,  7.75, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10974, 63,  43.9, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10975, 8,  40.0, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10975, 75,  7.75, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10976, 28,  45.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10977, 39,  18.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10977, 47,  9.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10977, 51,  53.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10977, 63,  43.9, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10978, 8,  40.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10978, 21,  10.0, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10978, 40,  18.4, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10978, 44,  19.45, 6,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10979, 7,  30.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10979, 12,  38.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10979, 24,  4.5, 80,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10979, 27,  43.9, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10979, 31,  12.5, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10979, 63,  43.9, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10980, 75,  7.75, 40,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10981, 38,  263.5, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10982, 7,  30.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10982, 43,  46.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10983, 13,  6.0, 84,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10983, 57,  19.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10984, 16,  17.45, 55,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10984, 24,  4.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10984, 36,  19.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10985, 16,  17.45, 36,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10985, 18,  62.5, 8,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10985, 32,  32.0, 35,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10986, 11,  21.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10986, 20,  81.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10986, 76,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10986, 77,  13.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10987, 7,  30.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10987, 43,  46.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10987, 72,  34.8, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10988, 7,  30.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10988, 62,  49.3, 40,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10989, 6,  25.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10989, 11,  21.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10989, 41,  9.65, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10990, 21,  10.0, 65,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10990, 34,  14.0, 60,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10990, 55,  24.0, 65,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10990, 61,  28.5, 66,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10991, 2,  19.0, 50,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10991, 70,  15.0, 20,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10991, 76,  18.0, 90,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10992, 72,  34.8, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10993, 29,  123.79, 50,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10993, 41,  9.65, 35,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10994, 59,  55.0, 18,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10995, 51,  53.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10995, 60,  34.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10996, 42,  14.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10997, 32,  32.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10997, 46,  12.0, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10997, 52,  7.0, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10998, 24,  4.5, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10998, 61,  28.5, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10998, 74,  10.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10998, 75,  7.75, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10999, 41,  9.65, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10999, 51,  53.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(10999, 77,  13.0, 21,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11000, 4,  22.0, 25,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11000, 24,  4.5, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11000, 77,  13.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11001, 7,  30.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11001, 22,  21.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11001, 46,  12.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11001, 55,  24.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11002, 13,  6.0, 56,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11002, 35,  18.0, 15,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11002, 42,  14.0, 24,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11002, 55,  24.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11003, 1,  18.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11003, 40,  18.4, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11003, 52,  7.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11004, 26,  31.23, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11004, 76,  18.0, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11005, 1,  18.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11005, 59,  55.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11006, 1,  18.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11006, 29,  123.79, 2,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11007, 8,  40.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11007, 29,  123.79, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11007, 42,  14.0, 14,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11008, 28,  45.6, 70,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11008, 34,  14.0, 90,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11008, 71,  21.5, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11009, 24,  4.5, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11009, 36,  19.0, 18,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11009, 60,  34.0, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11010, 7,  30.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11010, 24,  4.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11011, 58,  13.25, 40,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11011, 71,  21.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11012, 19,  9.2, 50,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11012, 60,  34.0, 36,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11012, 71,  21.5, 60,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11013, 23,  9.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11013, 42,  14.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11013, 45,  9.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11013, 68,  12.5, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11014, 41,  9.65, 28,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11015, 30,  25.89, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11015, 77,  13.0, 18,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11016, 31,  12.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11016, 36,  19.0, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11017, 3,  10.0, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11017, 59,  55.0, 110,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11017, 70,  15.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11018, 12,  38.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11018, 18,  62.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11018, 56,  38.0, 5,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11019, 46,  12.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11019, 49,  20.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11020, 10,  31.0, 24,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11021, 2,  19.0, 11,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11021, 20,  81.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11021, 26,  31.23, 63,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11021, 51,  53.0, 44,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11021, 72,  34.8, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11022, 19,  9.2, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11022, 69,  36.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11023, 7,  30.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11023, 43,  46.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11024, 26,  31.23, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11024, 33,  2.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11024, 65,  21.05, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11024, 71,  21.5, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11025, 1,  18.0, 10,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11025, 13,  6.0, 20,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11026, 18,  62.5, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11026, 51,  53.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11027, 24,  4.5, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11027, 62,  49.3, 21,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11028, 55,  24.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11028, 59,  55.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11029, 56,  38.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11029, 63,  43.9, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11030, 2,  19.0, 100,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11030, 5,  21.35, 70,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11030, 29,  123.79, 60,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11030, 59,  55.0, 100,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11031, 1,  18.0, 45,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11031, 13,  6.0, 80,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11031, 24,  4.5, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11031, 64,  33.25, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11031, 71,  21.5, 16,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11032, 36,  19.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11032, 38,  263.5, 25,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11032, 59,  55.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11033, 53,  32.8, 70,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11033, 69,  36.0, 36,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11034, 21,  10.0, 15,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11034, 44,  19.45, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11034, 61,  28.5, 6,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11035, 1,  18.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11035, 35,  18.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11035, 42,  14.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11035, 54,  7.45, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11036, 13,  6.0, 7,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11036, 59,  55.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11037, 70,  15.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11038, 40,  18.4, 5,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11038, 52,  7.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11038, 71,  21.5, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11039, 28,  45.6, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11039, 35,  18.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11039, 49,  20.0, 60,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11039, 57,  19.5, 28,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11040, 21,  10.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11041, 2,  19.0, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11041, 63,  43.9, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11042, 44,  19.45, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11042, 61,  28.5, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11043, 11,  21.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11044, 62,  49.3, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11045, 33,  2.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11045, 51,  53.0, 24,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11046, 12,  38.0, 20,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11046, 32,  32.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11046, 35,  18.0, 18,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11047, 1,  18.0, 25,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11047, 5,  21.35, 30,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11048, 68,  12.5, 42,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11049, 2,  19.0, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11049, 12,  38.0, 4,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11050, 76,  18.0, 50,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11051, 24,  4.5, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11052, 43,  46.0, 30,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11052, 61,  28.5, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11053, 18,  62.5, 35,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11053, 32,  32.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11053, 64,  33.25, 25,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11054, 33,  2.5, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11054, 67,  14.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11055, 24,  4.5, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11055, 25,  14.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11055, 51,  53.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11055, 57,  19.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11056, 7,  30.0, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11056, 55,  24.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11056, 60,  34.0, 50,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11057, 70,  15.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11058, 21,  10.0, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11058, 60,  34.0, 21,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11058, 61,  28.5, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11059, 13,  6.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11059, 17,  39.0, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11059, 60,  34.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11060, 60,  34.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11060, 77,  13.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11061, 60,  34.0, 15,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11062, 53,  32.8, 10,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11062, 70,  15.0, 12,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11063, 34,  14.0, 30,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11063, 40,  18.4, 40,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11063, 41,  9.65, 30,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11064, 17,  39.0, 77,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11064, 41,  9.65, 12,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11064, 53,  32.8, 25,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11064, 55,  24.0, 4,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11064, 68,  12.5, 55,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11065, 30,  25.89, 4,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11065, 54,  7.45, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11066, 16,  17.45, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11066, 19,  9.2, 42,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11066, 34,  14.0, 35,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11067, 41,  9.65, 9,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11068, 28,  45.6, 8,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11068, 43,  46.0, 36,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11068, 77,  13.0, 28,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11069, 39,  18.0, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11070, 1,  18.0, 40,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11070, 2,  19.0, 20,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11070, 16,  17.45, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11070, 31,  12.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11071, 7,  30.0, 15,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11071, 13,  6.0, 10,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11072, 2,  19.0, 8,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11072, 41,  9.65, 40,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11072, 50,  16.25, 22,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11072, 64,  33.25, 130,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11073, 11,  21.0, 10,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11073, 24,  4.5, 20,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11074, 16,  17.45, 14,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11075, 2,  19.0, 10,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11075, 46,  12.0, 30,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11075, 76,  18.0, 2,  .15);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11076, 6,  25.0, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11076, 14,  23.25, 20,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11076, 19,  9.2, 10,  .25);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 2,  19.0, 24,  .2);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 3,  10.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 4,  22.0, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 6,  25.0, 1,  .02);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 7,  30.0, 1,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 8,  40.0, 2,  .1);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 10,  31.0, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 12,  38.0, 2,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 13,  6.0, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 14,  23.25, 1,  .03);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 16,  17.45, 2,  .03);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 20,  81.0, 1,  .04);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 23,  9.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 32,  32.0, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 39,  18.0, 2,  .05);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 41,  9.65, 3,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 46,  12.0, 3,  .02);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 52,  7.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 55,  24.0, 2,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 60,  34.0, 2,  .06);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 64,  33.25, 2,  .03);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 66,  17.0, 1,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 73,  15.0, 2,  .01);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 75,  7.75, 4,  0.0);
INSERT INTO Order_Details (OrderID, ProductID, UnitPrice, Quantity, Discount)  VALUES(11077, 77,  13.0, 2,  0.0);
INSERT INTO Orders (OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry)  VALUES(10248, 'VINET', 5, 19960704000000, 19960801000000, 19960716000000, 3,  32.38, '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, 19960705000000, 19960816000000, 19960710000000, 1,  11.61, '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, 19960708000000, 19960805000000, 19960712000000, 2,  65.83, '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, 19960708000000, 19960805000000, 19960715000000, 1,  41.34, '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, 19960709000000, 19960806000000, 19960711000000, 2,  51.3, '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, 19960710000000, 19960724000000, 19960716000000, 2,  58.17, '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, 19960711000000, 19960808000000, 19960723000000, 2,  22.98, '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, 19960712000000, 19960809000000, 19960715000000, 3,  148.33, '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, 19960715000000, 19960812000000, 19960717000000, 2,  13.97, '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, 19960716000000, 19960813000000, 19960722000000, 3,  81.91, '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, 19960717000000, 19960814000000, 19960723000000, 1,  140.51, '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, 19960718000000, 19960815000000, 19960725000000, 3,  3.25, '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, 19960719000000, 19960816000000, 19960729000000, 1,  55.09, '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, 19960719000000, 19960816000000, 19960730000000, 2,  3.05, '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, 19960722000000, 19960819000000, 19960725000000, 3,  48.29, '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, 19960723000000, 19960820000000, 19960731000000, 3,  146.06, '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, 19960724000000, 19960821000000, 19960823000000, 3,  3.67, '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, 19960725000000, 19960822000000, 19960812000000, 1,  55.28, '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, 19960726000000, 19960906000000, 19960731000000, 3,  25.73, '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, 19960729000000, 19960826000000, 19960806000000, 1,  208.58, '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, 19960730000000, 19960827000000, 19960802000000, 3,  66.29, '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, 19960731000000, 19960814000000, 19960809000000, 1,  4.56, '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, 19960801000000, 19960829000000, 19960802000000, 1,  136.54, '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, 19960801000000, 19960829000000, 19960830000000, 2,  4.54, '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, 19960802000000, 19960830000000, 19960806000000, 2,  98.03, '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, 19960805000000, 19960902000000, 19960812000000, 3,  76.07, '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, 19960806000000, 19960903000000, 19960816000000, 1,  6.01, '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, 19960807000000, 19960904000000, 19960809000000, 1,  26.93, '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, 19960808000000, 19960822000000, 19960814000000, 3,  13.84, '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, 19960809000000, 19960906000000, 19960813000000, 3,  125.77, '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, 19960812000000, 19960909000000, 19960816000000, 2,  92.69, '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, 19960813000000, 19960910000000, 19960816000000, 2,  25.83, '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, 19960814000000, 19960911000000, 19960912000000, 1,  8.98, '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, 19960814000000, 19960828000000, 19960821000000, 1,  2.94, '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, 19960815000000, 19960912000000, 19960821000000, 1,  12.69, '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, 19960816000000, 19960913000000, 19960823000000, 3,  84.81, '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, 19960819000000, 19960916000000, 19960827000000, 1,  76.56, '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, 19960820000000, 19960917000000, 19960826000000, 2,  76.83, '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, 19960821000000, 19960918000000, 19960830000000, 3,  229.24, '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, 19960822000000, 19960919000000, 19960828000000, 3,  12.76, '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, 19960823000000, 19960920000000, 19960903000000, 1,  7.45, '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, 19960826000000, 19960923000000, 19960828000000, 3,  22.77, '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, 19960827000000, 19960924000000, 19960903000000, 1,  79.7, '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, 19960827000000, 19960924000000, 19960904000000, 2,  6.4, '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, 19960828000000, 19960925000000, 19960902000000, 2,  1.35, '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, 19960829000000, 19960926000000, 19960911000000, 3,  21.18, '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, 19960830000000, 19960927000000, 19960905000000, 2,  147.26, '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, 19960902000000, 19960930000000, 19960910000000, 2,  1.15, '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, 19960903000000, 19961001000000, 19960911000000, 1,  .12, '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, 19960904000000, 19961016000000, 19960910000000, 2,  5.74, '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, 19960905000000, 19961003000000, 19960911000000, 2,  168.22, '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, 19960906000000, 19961004000000, 19960913000000, 2,  29.76, '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, 19960909000000, 19961007000000, 19960918000000, 2,  17.68, '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, 19960909000000, 19961007000000, 19960917000000, 2,  45.08, '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, 19960910000000, 19961008000000, 19961009000000, 2,  6.27, '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, 19960911000000, 19961009000000, 19960918000000, 2,  107.83, '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, 19960912000000, 19961010000000, 19960917000000, 2,  63.79, '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, 19960913000000, 19961011000000, 19961009000000, 3,  257.62, '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, 19960916000000, 19961014000000, 19960923000000, 3,  7.56, '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, 19960917000000, 19961015000000, 19960925000000, 2,  .56, '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, 19960918000000, 19961016000000, 19960924000000, 3,  1.61, '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, 19960919000000, 19961017000000, 19961023000000, 1,  47.3, '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, 19960920000000, 19961018000000, 19960927000000, 2,  17.52, '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, 19960920000000, 19961004000000, 19960926000000, 3,  24.69, '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, 19960923000000, 19961021000000, 19961003000000, 2,  40.26, '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, 19960924000000, 19961022000000, 19961004000000, 2,  1.96, '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, 19960925000000, 19961023000000, 19961004000000, 2,  74.16, '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, 19960926000000, 19961024000000, 19961003000000, 2,  41.76, '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, 19960927000000, 19961025000000, 19961008000000, 3,  150.15, '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, 19960930000000, 19961028000000, 19961010000000, 1,  12.69, '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, 19961001000000, 19961029000000, 19961004000000, 2,  4.73, '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, 19961002000000, 19961030000000, 19961011000000, 3,  64.5, '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, 19961003000000, 19961017000000, 19961018000000, 3,  34.57, '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, 19961003000000, 19961031000000, 19961011000000, 2,  3.43, '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, 19961004000000, 19961101000000, 19961023000000, 3,  .4, '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, 19961007000000, 19961104000000, 19961014000000, 1,  4.88, '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, 19961008000000, 19961105000000, 19961010000000, 1,  214.27, '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, 19961009000000, 19961023000000, 19961014000000, 3,  64.86, '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, 19961010000000, 19961107000000, 19961014000000, 2,  77.92, '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, 19961011000000, 19961108000000, 19961014000000, 1,  63.36, '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, 19961014000000, 19961111000000, 19961017000000, 3,  87.03, '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, 19961015000000, 19961126000000, 19961023000000, 2,  191.67, '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, 19961016000000, 19961113000000, 19961028000000, 1,  12.75, '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, 19961016000000, 19961127000000, 19961021000000, 1,  10.19, '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, 19961017000000, 19961128000000, 19961021000000, 2,  52.84, '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, 19961018000000, 19961115000000, 19961025000000, 3,  .59, '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, 19961021000000, 19961118000000, 19961028000000, 2,  8.56, '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, 19961022000000, 19961119000000, 19961024000000, 2,  42.11, '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, 19961023000000, 19961120000000, 19961025000000, 2,  15.51, '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, 19961024000000, 19961121000000, 19961029000000, 3,  108.26, '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, 19961025000000, 19961122000000, 19961029000000, 3,  84.21, '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, 19961028000000, 19961125000000, 19961104000000, 2,  15.66, '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, 19961029000000, 19961126000000, 19961108000000, 3,  166.31, '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, 19961029000000, 19961126000000, 19961105000000, 3,  26.78, '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, 19961030000000, 19961113000000, 19961104000000, 2,  54.83, '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, 19961031000000, 19961128000000, 19961106000000, 1,  110.37, '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, 19961101000000, 19961129000000, 19961105000000, 2,  23.29, '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, 19961104000000, 19961202000000, 19961111000000, 2,  249.06, '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, 19961105000000, 19961217000000, 19961108000000, 3,  142.08, '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, 19961106000000, 19961204000000, 19961108000000, 3,  3.1, '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, 19961107000000, 19961205000000, 19961115000000, 2,  .78, '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, 19961108000000, 19961206000000, 19961115000000, 1,  8.63, '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, 19961111000000, 19961209000000, 19961203000000, 2,  64.19, '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, 19961111000000, 19961209000000, 19961120000000, 1,  162.33, '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, 19961112000000, 19961126000000, 19961118000000, 3,  1.3, '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, 19961113000000, 19961211000000, 19961125000000, 3,  360.63, '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, 19961114000000, 19961212000000, 19961120000000, 3,  53.8, '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, 19961115000000, 19961213000000, 19961120000000, 1,  41.95, '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, 19961118000000, 19961216000000, 19961127000000, 2,  36.71, '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, 19961119000000, 19961217000000, 19961202000000, 3,  34.88, '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, 19961120000000, 19961218000000, 19961127000000, 1,  19.64, '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, 19961121000000, 19961219000000, 19961126000000, 3,  288.43, '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, 19961122000000, 19961220000000, 19961202000000, 3,  131.7, '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, 19961122000000, 19961220000000, 19961203000000, 2,  183.17, '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, 19961125000000, 19961223000000, 19961128000000, 1,  96.04, '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, 19961126000000, 19961224000000, 19961204000000, 3,  30.54, '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, 19961126000000, 19970107000000, 19961204000000, 1,  71.97, '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, 19961127000000, 19961225000000, 19961202000000, 2,  22.0, '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, 19961128000000, 19970109000000, 19961230000000, 2,  10.14, '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, 19961128000000, 19961226000000, 19961202000000, 3,  13.55, '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, 19961129000000, 19961227000000, 19961202000000, 2,  101.95, '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, 19961202000000, 19961230000000, 19961209000000, 2,  195.68, '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, 19961203000000, 19961231000000, 19961227000000, 2,  1.17, '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, 19961203000000, 19961231000000, 19961224000000, 1,  .45, '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, 19961204000000, 19970101000000, 19961209000000, 2,  890.78, '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, 19961205000000, 19970102000000, 19961211000000, 3,  124.12, '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, 19961205000000, 19970102000000, 19961209000000, 3,  3.94, '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, 19961206000000, 19970103000000, 19961209000000, 2,  20.12, '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, 19961209000000, 19970106000000, 19961213000000, 2,  20.39, '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, 19961209000000, 19970106000000, 19961213000000, 3,  22.21, '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, 19961210000000, 19970107000000, 19961219000000, 3,  5.44, '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, 19961211000000, 19970108000000, 19961213000000, 1,  45.03, '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, 19961212000000, 19970109000000, 19970116000000, 3,  35.03, '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, 19961212000000, 19970109000000, 19961213000000, 3,  7.99, '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, 19961213000000, 19970110000000, 19961216000000, 1,  94.77, '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, 19961216000000, 19970113000000, 19961218000000, 3,  34.24, '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, 19961216000000, 19970113000000, 19961220000000, 3,  168.64, '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, 19961217000000, 19970114000000, 19961223000000, 2,  30.96, '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, 19961218000000, 19970101000000, 19961225000000, 3,  13.99, '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, 19961218000000, 19970115000000, 19961220000000, 2,  93.63, '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, 19961219000000, 19970116000000, 19961220000000, 1,  34.86, '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, 19961220000000, 19970117000000, 19961224000000, 2,  47.42, '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, 19961223000000, 19970120000000, 19961226000000, 1,  126.38, '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, 19961223000000, 19970120000000, 19961231000000, 3,  5.45, '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, 19961224000000, 19970121000000, 19970101000000, 3,  122.46, '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, 19961225000000, 19970122000000, 19970103000000, 3,  126.56, '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, 19961225000000, 19970122000000, 19970103000000, 3,  30.34, '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, 19961226000000, 19970123000000, 19970103000000, 1,  184.41, '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, 19961227000000, 19970110000000, 19970106000000, 3,  135.35, '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, 19961227000000, 19970124000000, 19970102000000, 1,  60.26, '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, 19961230000000, 19970127000000, 19970109000000, 3,  89.16, '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, 19961231000000, 19970114000000, 19970108000000, 3,  27.36, '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, 19970101000000, 19970129000000, 19970116000000, 3,  83.93, '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, 19970101000000, 19970129000000, 19970110000000, 1,  12.51, '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, 19970102000000, 19970213000000, 19970110000000, 2,  67.88, '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, 19970103000000, 19970131000000, 19970109000000, 3,  73.79, '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, 19970103000000, 19970131000000, 19970108000000, 1,  155.97, '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, 19970106000000, 19970203000000, 19970122000000, 1,  34.82, '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, 19970107000000, 19970218000000, 19970113000000, 1,  108.04, '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, 19970107000000, 19970204000000, 19970130000000, 2,  91.48, '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, 19970108000000, 19970205000000, 19970114000000, 1,  11.26, '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, 19970109000000, 19970206000000, 19970114000000, 1,  29.83, '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, 19970110000000, 19970207000000, 19970115000000, 3,  2.4, '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, 19970110000000, 19970207000000, 19970121000000, 3,  23.65, '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, 19970113000000, 19970210000000, 19970115000000, 2,  3.77, '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, 19970114000000, 19970211000000, 19970116000000, 2,  95.66, '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, 19970114000000, 19970211000000, 19970117000000, 3,  21.48, '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, 19970115000000, 19970212000000, 19970124000000, 1,  .2, '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, 19970116000000, 19970213000000, 19970127000000, 3,  22.72, '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, 19970116000000, 19970213000000, 19970128000000, 3,  70.29, '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, 19970117000000, 19970214000000, 19970124000000, 1,  17.55, '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, 19970120000000, 19970217000000, 19970130000000, 2,  137.35, '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, 19970121000000, 19970218000000, 19970127000000, 1,  44.12, '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, 19970121000000, 19970304000000, 19970127000000, 1,  99.23, '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, 19970122000000, 19970219000000, 19970131000000, 1,  3.02, '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, 19970123000000, 19970206000000, 19970224000000, 3,  24.5, '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, 19970123000000, 19970220000000, 19970127000000, 2,  370.61, '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, 19970124000000, 19970221000000, 19970214000000, 2,  7.93, '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, 19970127000000, 19970224000000, 19970206000000, 1,  18.69, '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, 19970127000000, 19970224000000, 19970303000000, 2,  31.29, '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, 19970128000000, 19970225000000, 19970204000000, 1,  11.09, '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, 19970129000000, 19970312000000, 19970207000000, 2,  56.63, '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, 19970130000000, 19970213000000, 19970203000000, 1,  458.78, '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, 19970130000000, 19970213000000, 19970207000000, 2,  44.17, '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, 19970131000000, 19970214000000, 19970207000000, 2,  4.34, '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, 19970203000000, 19970303000000, 19970304000000, 3,  73.83, '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, 19970203000000, 19970303000000, 19970213000000, 2,  17.92, '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, 19970204000000, 19970318000000, 19970207000000, 2,  9.21, '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, 19970205000000, 19970305000000, 19970211000000, 2,  156.66, '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, 19970205000000, 19970305000000, 19970212000000, 1,  19.97, '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, 19970206000000, 19970306000000, 19970214000000, 2,  8.24, '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, 19970207000000, 19970307000000, 19970210000000, 3,  4.07, '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, 19970210000000, 19970310000000, 19970228000000, 2,  86.53, '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, 19970210000000, 19970324000000, 19970314000000, 2,  73.02, '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, 19970211000000, 19970311000000, 19970218000000, 2,  47.94, '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, 19970212000000, 19970312000000, 19970214000000, 1,  13.95, '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, 19970212000000, 19970312000000, 19970221000000, 3,  3.5, '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, 19970213000000, 19970313000000, 19970220000000, 1,  9.3, '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, 19970214000000, 19970314000000, 19970219000000, 1,  14.68, '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, 19970214000000, 19970314000000, 19970307000000, 2,  68.66, '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, 19970217000000, 19970317000000, 19970224000000, 2,  38.82, '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, 19970218000000, 19970318000000, 19970227000000, 2,  53.3, '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, 19970219000000, 19970319000000, 19970311000000, 2,  7.23, '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, 19970219000000, 19970305000000, 19970312000000, 3,  189.09, '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, 19970220000000, 19970320000000, 19970226000000, 1,  140.26, '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, 19970221000000, 19970321000000, 19970226000000, 2,  25.36, '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, 19970221000000, 19970321000000, 19970225000000, 3,  2.74, '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, 19970224000000, 19970407000000, 19970303000000, 2,  180.45, '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, 19970225000000, 19970408000000, 19970228000000, 2,  8.12, '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, 19970225000000, 19970325000000, 19970303000000, 1,  11.57, '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, 19970226000000, 19970326000000, 19970304000000, 3,  147.06, '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, 19970227000000, 19970327000000, 19970228000000, 2,  25.09, '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, 19970228000000, 19970328000000, 19970303000000, 1,  16.27, '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, 19970228000000, 19970328000000, 19970305000000, 3,  148.61, '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, 19970303000000, 19970331000000, 19970318000000, 1,  6.17, '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, 19970304000000, 19970401000000, 19970306000000, 3,  14.78, '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, 19970304000000, 19970401000000, 19970314000000, 2,  89.0, '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, 19970305000000, 19970402000000, 19970314000000, 3,  145.04, '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, 19970306000000, 19970403000000, 19970313000000, 1,  11.93, '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, 19970306000000, 19970403000000, 19970311000000, 2,  4.93, '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, 19970307000000, 19970404000000, 19970312000000, 3,  44.12, '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, 19970310000000, 19970407000000, 19970314000000, 1,  60.18, '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, 19970311000000, 19970408000000, 19970314000000, 2,  64.56, '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, 19970311000000, 19970408000000, 19970318000000, 3,  45.59, '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, 19970312000000, 19970409000000, 19970319000000, 1,  4.2, '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, 19970313000000, 19970327000000, 19970321000000, 3,  16.37, '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, 19970313000000, 19970410000000, 19970321000000, 2,  83.49, '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, 19970314000000, 19970411000000, 19970404000000, 1,  68.52, '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, 19970317000000, 19970414000000, 19970324000000, 3,  4.41, '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, 19970317000000, 19970414000000, 19970325000000, 2,  13.02, '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, 19970318000000, 19970401000000, 19970326000000, 3,  4.81, '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, 19970319000000, 19970416000000, 19970321000000, 3,  708.95, '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, 19970320000000, 19970417000000, 19970324000000, 2,  1.35, '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, 19970320000000, 19970417000000, 19970325000000, 2,  64.33, '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, 19970321000000, 19970418000000, 19970410000000, 3,  7.48, '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, 19970324000000, 19970421000000, 19970425000000, 2,  15.28, '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, 19970324000000, 19970421000000, 19970401000000, 3,  6.88, '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, 19970325000000, 19970408000000, 19970331000000, 2,  64.45, '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, 19970326000000, 19970423000000, 19970402000000, 2,  30.53, '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, 19970326000000, 19970423000000, 19970328000000, 2,  71.07, '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, 19970327000000, 19970424000000, 19970402000000, 2,  4.93, '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, 19970328000000, 19970425000000, 19970409000000, 2,  5.29, '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, 19970331000000, 19970428000000, 19970403000000, 2,  210.19, '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, 19970331000000, 19970428000000, 19970408000000, 3,  16.96, '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, 19970401000000, 19970429000000, 19970411000000, 1,  62.89, '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, 19970402000000, 19970430000000, 19970410000000, 3,  10.64, '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, 19970402000000, 19970430000000, 19970409000000, 2,  65.99, '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, 19970403000000, 19970501000000, 19970411000000, 3,  4.65, '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, 19970404000000, 19970502000000, 19970407000000, 2,  46.77, '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, 19970404000000, 19970502000000, 19970407000000, 1,  36.21, '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, 19970407000000, 19970505000000, 19970411000000, 2,  29.75, '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, 19970408000000, 19970506000000, 19970416000000, 2,  102.02, '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, 19970409000000, 19970507000000, 19970417000000, 1,  42.68, '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, 19970409000000, 19970507000000, 19970416000000, 3,  8.85, '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, 19970410000000, 19970508000000, 19970429000000, 1,  69.32, '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, 19970411000000, 19970509000000, 19970416000000, 2,  16.74, '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, 19970411000000, 19970509000000, 19970418000000, 3,  59.13, '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, 19970414000000, 19970512000000, 19970421000000, 3,  7.13, '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, 19970415000000, 19970513000000, 19970502000000, 2,  21.19, '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, 19970415000000, 19970513000000, 19970422000000, 1,  47.45, '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, 19970416000000, 19970514000000, 19970513000000, 2,  4.99, '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, 19970417000000, 19970515000000, 19970429000000, 1,  .15, '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, 19970418000000, 19970516000000, 19970428000000, 3,  367.63, '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, 19970418000000, 19970516000000, 19970421000000, 3,  350.64, '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, 19970421000000, 19970519000000, 19970424000000, 2,  3.53, '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, 19970422000000, 19970603000000, 19970428000000, 1,  105.65, '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, 19970422000000, 19970520000000, 19970516000000, 2,  789.95, '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, 19970423000000, 19970507000000, 19970523000000, 1,  204.47, '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, 19970424000000, 19970522000000, 19970501000000, 3,  62.78, '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, 19970424000000, 19970522000000, 19970429000000, 3,  32.07, '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, 19970425000000, 19970509000000, 19970505000000, 2,  218.15, '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, 19970428000000, 19970526000000, 19970501000000, 3,  91.76, '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, 19970429000000, 19970527000000, 19970501000000, 1,  13.37, '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, 19970429000000, 19970527000000, 19970502000000, 2,  17.22, '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, 19970430000000, 19970528000000, 19970506000000, 1,  45.33, '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, 19970501000000, 19970529000000, 19970530000000, 2,  77.63, '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, 19970501000000, 19970529000000, 19970507000000, 2,  244.79, '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, 19970502000000, 19970530000000, 19970523000000, 2,  11.06, '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, 19970505000000, 19970602000000, 19970515000000, 2,  58.59, '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, 19970505000000, 19970602000000, 19970507000000, 1,  41.9, '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, 19970506000000, 19970520000000, 19970509000000, 2,  3.35, '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, 19970507000000, 19970604000000, 19970509000000, 2,  66.69, '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, 19970508000000, 19970605000000, 19970512000000, 2,  339.22, '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, 19970508000000, 19970605000000, 19970519000000, 1,  8.12, '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, 19970509000000, 19970606000000, 19970512000000, 3,  74.46, '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, 19970512000000, 19970609000000, 19970522000000, 1,  188.04, '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, 19970512000000, 19970609000000, 19970514000000, 2,  27.94, '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, 19970513000000, 19970610000000, 19970521000000, 1,  15.64, '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, 19970514000000, 19970611000000, 19970606000000, 2,  58.88, '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, 19970514000000, 19970528000000, 19970519000000, 1,  78.85, '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, 19970515000000, 19970612000000, 19970516000000, 3,  4.87, '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, 19970516000000, 19970613000000, 19970523000000, 3,  12.36, '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, 19970519000000, 19970616000000, 19970613000000, 3,  1007.64, '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, 19970519000000, 19970616000000, 19970529000000, 1,  68.65, '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, 19970520000000, 19970617000000, 19970526000000, 3,  10.95, '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, 19970521000000, 19970618000000, 19970523000000, 2,  48.17, '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, 19970521000000, 19970618000000, 19970530000000, 1,  24.91, '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, 19970522000000, 19970619000000, 19970626000000, 2,  11.92, '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, 19970523000000, 19970620000000, 19970527000000, 3,  194.72, '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, 19970523000000, 19970620000000, 19970602000000, 2,  178.43, '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, 19970526000000, 19970623000000, 19970602000000, 2,  1.43, '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, 19970527000000, 19970610000000, 19970530000000, 1,  171.24, '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, 19970528000000, 19970625000000, 19970606000000, 3,  4.32, '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, 19970528000000, 19970709000000, 19970606000000, 3,  72.95, '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, 19970529000000, 19970626000000, 19970605000000, 1,  83.22, '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, 19970530000000, 19970627000000, 19970603000000, 2,  149.49, '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, 19970530000000, 19970627000000, 19970605000000, 3,  120.97, '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, 19970602000000, 19970630000000, 19970604000000, 3,  252.49, '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, 19970603000000, 19970715000000, 19970613000000, 1,  9.8, '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, 19970603000000, 19970617000000, 19970606000000, 2,  96.72, '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, 19970604000000, 19970702000000, 19970610000000, 2,  72.97, '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, 19970605000000, 19970703000000, 19970613000000, 1,  8.05, '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, 19970606000000, 19970704000000, 19970609000000, 1,  36.65, '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, 19970606000000, 19970704000000, 19970609000000, 2,  242.21, '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, 19970609000000, 19970707000000, 19970612000000, 1,  22.95, '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, 19970610000000, 19970722000000, 19970624000000, 2,  60.43, '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, 19970610000000, 19970708000000, 19970616000000, 3,  13.75, '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, 19970611000000, 19970709000000, 19970618000000, 2,  7.15, '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, 19970612000000, 19970710000000, 19970618000000, 1,  88.4, '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, 19970612000000, 19970710000000, 19970617000000, 1,  33.97, '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, 19970613000000, 19970711000000, 19970709000000, 3,  6.54, '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, 19970616000000, 19970714000000, 19970711000000, 1,  58.98, '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, 19970617000000, 19970715000000, 19970619000000, 3,  188.99, '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, 19970617000000, 19970729000000, 19970704000000, 3,  26.06, '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, 19970618000000, 19970716000000, 19970625000000, 2,  116.43, '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, 19970619000000, 19970717000000, 19970620000000, 3,  84.84, '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, 19970619000000, 19970717000000, 19970630000000, 2,  37.6, '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, 19970620000000, 19970704000000, 19970630000000, 1,  127.34, '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, 19970623000000, 19970707000000, 19970630000000, 3,  18.56, '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, 19970623000000, 19970804000000, 19970630000000, 2,  25.41, '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, 19970624000000, 19970722000000, 19970725000000, 3,  29.6, '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, 19970625000000, 19970723000000, 19970704000000, 2,  13.73, '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, 19970626000000, 19970724000000, 19970701000000, 3,  75.89, '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, 19970626000000, 19970724000000, 19970702000000, 1,  3.01, '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, 19970627000000, 19970725000000, 19970714000000, 2,  27.71, '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, 19970630000000, 19970728000000, 19970704000000, 2,  7.28, '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, 19970630000000, 19970728000000, 19970704000000, 1,  59.14, '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, 19970701000000, 19970729000000, 19970710000000, 1,  13.41, '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, 19970702000000, 19970730000000, 19970709000000, 1,  .48, '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, 19970702000000, 19970730000000, 19970709000000, 1,  62.52, '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, 19970703000000, 19970731000000, 19970710000000, 3,  194.67, '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, 19970704000000, 19970801000000, 19970714000000, 2,  4.42, '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, 19970707000000, 19970804000000, 19970714000000, 3,  44.77, '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, 19970707000000, 19970721000000, 19970716000000, 1,  55.92, '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, 19970708000000, 19970805000000, 19970716000000, 1,  32.1, '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, 19970709000000, 19970806000000, 19970813000000, 2,  174.2, '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, 19970709000000, 19970806000000, 19970716000000, 2,  5.24, '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, 19970710000000, 19970807000000, 19970714000000, 1,  96.78, '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, 19970711000000, 19970808000000, 19970812000000, 1,  16.34, '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, 19970711000000, 19970808000000, 19970718000000, 3,  35.12, '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, 19970714000000, 19970811000000, 19970718000000, 3,  44.42, '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, 19970715000000, 19970826000000, 19970721000000, 3,  29.98, '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, 19970716000000, 19970813000000, 19970721000000, 1,  45.13, '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, 19970716000000, 19970827000000, 19970722000000, 1,  58.3, '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, 19970717000000, 19970814000000, 19970722000000, 2,  2.92, '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, 19970718000000, 19970815000000, 19970808000000, 2,  48.77, '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, 19970718000000, 19970815000000, 19970729000000, 1,  7.46, '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, 19970721000000, 19970818000000, 19970729000000, 2,  379.13, '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, 19970722000000, 19970819000000, 19970731000000, 3,  79.4, '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, 19970722000000, 19970819000000, 19970725000000, 1,  200.24, '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, 19970723000000, 19970820000000, 19970801000000, 2,  27.79, '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, 19970724000000, 19970821000000, 19970730000000, 2,  1.85, '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, 19970725000000, 19970822000000, 19970806000000, 1,  26.78, '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, 19970725000000, 19970822000000, 19970801000000, 2,  80.65, '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, 19970728000000, 19970825000000, 19970801000000, 2,  544.08, '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, 19970729000000, 19970826000000, 19970801000000, 2,  8.11, '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, 19970729000000, 19970826000000, 19970801000000, 3,  1.93, '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, 19970730000000, 19970827000000, 19970806000000, 3,  .75, '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, 19970731000000, 19970828000000, 19970805000000, 2,  116.53, '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, 19970731000000, 19970828000000, 19970804000000, 2,  18.53, '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, 19970801000000, 19970912000000, 19970808000000, 1,  154.68, '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, 19970804000000, 19970901000000, 19970807000000, 3,  91.05, '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, 19970805000000, 19970902000000, 19970814000000, 3,  .94, '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, 19970805000000, 19970902000000, 19970811000000, 2,  23.73, '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, 19970806000000, 19970903000000, 19970811000000, 3,  50.97, '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, 19970807000000, 19970904000000, 19970812000000, 2,  97.18, '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, 19970807000000, 19970904000000, 19970819000000, 2,  94.8, '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, 19970808000000, 19970905000000, 19970814000000, 1,  43.9, '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, 19970811000000, 19970908000000, 19970820000000, 2,  138.69, '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, 19970811000000, 19970922000000, 19970821000000, 3,  107.46, '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, 19970812000000, 19970909000000, 19970820000000, 3,  30.36, '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, 19970812000000, 19970909000000, 19970820000000, 3,  85.46, '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, 19970813000000, 19970910000000, 19970819000000, 2,  32.35, '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, 19970814000000, 19970911000000, 19970815000000, 1,  .87, '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, 19970814000000, 19970911000000, 19970819000000, 1,  41.38, '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, 19970815000000, 19970912000000, 19970818000000, 3,  477.9, '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, 19970815000000, 19970912000000, 19970821000000, 3,  487.38, '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, 19970818000000, 19970915000000, 19970821000000, 3,  47.46, '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, 19970819000000, 19970916000000, 19970826000000, 1,  1.15, '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, 19970819000000, 19970916000000, 19970826000000, 1,  201.29, '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, 19970820000000, 19970917000000, 19970901000000, 1,  158.44, '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, 19970820000000, 19970917000000, 19970827000000, 3,  38.64, '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, 19970821000000, 19970918000000, 19970828000000, 1,  23.55, '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, 19970822000000, 19970919000000, 19970826000000, 2,  179.61, '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, 19970822000000, 19970919000000, 19970905000000, 3,  41.89, '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, 19970825000000, 19970922000000, 19970902000000, 1,  29.46, '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, 19970825000000, 19970922000000, 19970901000000, 2,  .14, '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, 19970826000000, 19970923000000, 19970902000000, 1,  12.41, '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, 19970827000000, 19971008000000, 19970903000000, 3,  142.33, '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, 19970827000000, 19970910000000, 19970903000000, 2,  45.54, '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, 19970828000000, 19971009000000, 19970909000000, 2,  14.25, '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, 19970828000000, 19970925000000, 19970829000000, 3,  6.2, '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, 19970829000000, 19970926000000, 19970903000000, 3,  176.81, '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, 19970901000000, 19970929000000, 19970911000000, 2,  20.6, '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, 19970901000000, 19970929000000, 19970908000000, 2,  7.14, '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, 19970902000000, 19970930000000, 19970919000000, 1,  93.25, '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, 19970902000000, 19970930000000, 19970911000000, 1,  55.26, '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, 19970903000000, 19971001000000, 19970911000000, 2,  4.41, '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, 19970904000000, 19971002000000, 19970910000000, 1,  57.15, '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, 19970904000000, 19971002000000, 19970915000000, 2,  352.69, '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, 19970905000000, 19971003000000, 19970908000000, 1,  364.15, '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, 19970905000000, 19971003000000, 19970910000000, 2,  105.81, '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, 19970908000000, 19971006000000, 19971015000000, 1,  111.29, '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, 19970909000000, 19971007000000, 19970915000000, 3,  17.55, '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, 19970909000000, 19971007000000, 19970918000000, 2,  1.28, '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, 19970910000000, 19970924000000, 19971003000000, 2,  113.15, '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, 19970910000000, 19971008000000, 19970919000000, 3,  1.27, '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, 19970911000000, 19971009000000, 19970917000000, 2,  26.31, '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, 19970912000000, 19971010000000, 19970922000000, 2,  232.42, '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, 19970912000000, 19971010000000, 19970919000000, 1,  78.09, '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, 19970915000000, 19971013000000, 19970923000000, 2,  47.22, '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, 19970915000000, 19971013000000, 19970922000000, 1,  24.39, '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, 19970916000000, 19971014000000, 19970918000000, 1,  203.48, '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, 19970917000000, 19971015000000, 19970924000000, 1,  30.34, '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, 19970917000000, 19971001000000, 19970926000000, 2,  95.75, '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, 19970918000000, 19971016000000, 19970919000000, 1,  22.76, '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, 19970918000000, 19971016000000, 19970930000000, 2,  .9, '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, 19970919000000, 19971017000000, 19970923000000, 2,  31.85, '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, 19970922000000, 19971020000000, 19970929000000, 2,  2.01, '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, 19970922000000, 19971020000000, 19970926000000, 3,  4.03, '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, 19970923000000, 19971021000000, 19971016000000, 3,  388.98, '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, 19970923000000, 19971021000000, 19970930000000, 3,  27.94, '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, 19970924000000, 19971022000000, 19970926000000, 1,  26.61, '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, 19970925000000, 19971023000000, 19970930000000, 3,  76.13, '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, 19970925000000, 19971023000000, 19971001000000, 2,  36.13, '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, 19970926000000, 19971024000000, 19971001000000, 1,  4.4, '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, 19970926000000, 19971024000000, 19970930000000, 1,  145.63, '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, 19970929000000, 19971013000000, 19971003000000, 2,  33.75, '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, 19970930000000, 19971028000000, 19971008000000, 1,  96.5, '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, 19970930000000, 19971028000000, 19971030000000, 2,  296.43, '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, 19971001000000, 19971015000000, 19971007000000, 2,  299.09, '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, 19971001000000, 19971029000000, 19971007000000, 2,  13.42, '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, 19971002000000, 19971030000000, 19971003000000, 1,  15.8, '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, 19971003000000, 19971114000000, 19971022000000, 2,  810.05, '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, 19971003000000, 19971031000000, 19971013000000, 2,  61.02, '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, 19971006000000, 19971020000000, 19971010000000, 3,  139.34, '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, 19971006000000, 19971103000000, 19971009000000, 3,  398.36, '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, 19971007000000, 19971118000000, 19971014000000, 1,  16.72, '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, 19971008000000, 19971119000000, 19971014000000, 3,  102.55, '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, 19971008000000, 19971105000000, 19971014000000, 1,  45.52, '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, 19971009000000, 19971106000000, 19971017000000, 1,  272.47, '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, 19971009000000, 19971106000000, 19971013000000, 3,  .58, '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, 19971010000000, 19971107000000, 19971016000000, 1,  65.1, '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, 19971013000000, 19971027000000, 19971015000000, 3,  220.31, '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, 19971013000000, 19971124000000, 19971021000000, 1,  23.94, '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, 19971014000000, 19971111000000, 19971020000000, 2,  152.3, '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, 19971014000000, 19971111000000, 19971107000000, 1,  4.78, '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, 19971015000000, 19971112000000, 19971118000000, 2,  3.52, '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, 19971016000000, 19971113000000, 19971021000000, 3,  135.63, '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, 19971016000000, 19971030000000, 19971023000000, 3,  21.74, '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, 19971017000000, 19971128000000, 19971105000000, 2,  2.96, '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, 19971017000000, 19971114000000, 19971120000000, 3,  210.8, '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, 19971020000000, 19971117000000, 19971023000000, 1,  4.98, '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, 19971021000000, 19971202000000, 19971029000000, 2,  52.41, '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, 19971021000000, 19971118000000, 19971031000000, 1,  89.93, '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, 19971022000000, 19971119000000, 19971024000000, 1,  167.05, '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, 19971022000000, 19971119000000, 19971027000000, 3,  24.49, '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, 19971023000000, 19971106000000, 19971029000000, 1,  63.2, '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, 19971024000000, 19971121000000, 19971027000000, 2,  22.57, '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, 19971024000000, 19971121000000, 19971029000000, 2,  59.25, '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, 19971027000000, 19971124000000, 19971029000000, 3,  170.88, '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, 19971027000000, 19971124000000, 19971105000000, 2,  51.44, '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, 19971028000000, 19971111000000, 19971105000000, 2,  9.53, '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, 19971029000000, 19971126000000, 19971031000000, 3,  48.92, '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, 19971029000000, 19971210000000, 19971104000000, 1,  74.58, '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, 19971030000000, 19971127000000, 19971125000000, 1,  21.72, '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, 19971030000000, 19971211000000, 19971105000000, 2,  57.75, '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, 19971031000000, 19971128000000, 19971105000000, 3,  10.83, '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, 19971103000000, 19971117000000, 19971205000000, 1,  16.56, '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, 19971103000000, 19971201000000, 19971205000000, 1,  89.9, '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, 19971104000000, 19971202000000, 19971111000000, 2,  58.33, '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, 19971104000000, 19971216000000, 19971114000000, 3,  141.06, '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, 19971105000000, 19971203000000, 19971114000000, 1,  20.12, '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, 19971106000000, 19971204000000, 19971114000000, 1,  96.65, '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, 19971106000000, 19971204000000, 19971107000000, 1,  16.97, '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, 19971107000000, 19971205000000, 19971110000000, 3,  110.11, '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, 19971107000000, 19971205000000, 19971112000000, 3,  1.63, '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, 19971110000000, 19971208000000, 19971121000000, 2,  45.97, '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, 19971111000000, 19971209000000, 19971121000000, 2,  44.1, '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, 19971111000000, 19971209000000, 19971118000000, 2,  7.79, '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, 19971112000000, 19971210000000, 19971118000000, 1,  2.91, '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, 19971112000000, 19971210000000, 19971117000000, 3,  11.08, '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, 19971113000000, 19971211000000, 19971125000000, 2,  81.88, '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, 19971114000000, 19971128000000, 19971118000000, 3,  10.96, '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, 19971114000000, 19971212000000, 19971118000000, 3,  243.73, '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, 19971117000000, 19971215000000, 19971121000000, 2,  23.72, '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, 19971117000000, 19971215000000, 19971124000000, 1,  69.19, '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, 19971118000000, 19971216000000, 19971127000000, 1,  3.52, '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, 19971119000000, 19971217000000, 19971121000000, 3,  31.43, '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, 19971119000000, 19971217000000, 19971126000000, 1,  117.33, '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, 19971120000000, 19971218000000, 19971128000000, 1,  232.55, '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, 19971120000000, 19971218000000, 19971219000000, 2,  61.53, '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, 19971121000000, 19971219000000, 19971124000000, 1,  79.3, '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, 19971124000000, 19971222000000, 19971203000000, 3,  130.79, '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, 19971124000000, 19971222000000, 19971128000000, 3,  1.39, '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, 19971125000000, 19971223000000, 19971127000000, 1,  7.7, '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, 19971125000000, 19971223000000, 19971127000000, 3,  2.38, '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, 19971126000000, 19971224000000, 19971128000000, 2,  16.71, '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, 19971127000000, 19971225000000, 19971202000000, 2,  73.21, '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, 19971127000000, 19971225000000, 19971215000000, 1,  8.19, '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, 19971128000000, 19971226000000, 19971204000000, 3,  138.17, '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, 19971128000000, 19971226000000, 19971212000000, 3,  11.99, '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, 19971201000000, 19971229000000, 19971210000000, 1,  155.64, '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, 19971202000000, 19971230000000, 19971208000000, 2,  18.66, '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, 19971202000000, 19971230000000, 19971209000000, 1,  328.74, '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, 19971203000000, 19971231000000, 19971208000000, 3,  37.35, '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, 19971203000000, 19971231000000, 19971208000000, 3,  145.45, '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, 19971204000000, 19980101000000, 19971209000000, 3,  42.74, '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, 19971205000000, 19980102000000, 19971209000000, 1,  157.55, '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, 19971205000000, 19980102000000, 19971215000000, 3,  1.59, '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, 19971208000000, 19980105000000, 19971215000000, 2,  146.32, '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, 19971208000000, 19980105000000, 19971212000000, 1,  65.06, '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, 19971209000000, 19980106000000, 19971217000000, 3,  5.32, '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, 19971210000000, 19980107000000, 19980102000000, 2,  11.19, '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, 19971210000000, 19980107000000, 19971219000000, 2,  91.28, '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, 19971211000000, 19980108000000, 19971216000000, 3,  96.43, '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, 19971211000000, 19971225000000, 19971212000000, 1,  48.2, '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, 19971212000000, 19980109000000, 19971226000000, 1,  20.25, '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, 19971215000000, 19980112000000, 19971218000000, 3,  351.53, '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, 19971215000000, 19971229000000, 19980121000000, 2,  3.01, '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, 19971216000000, 19980113000000, 19971224000000, 1,  6.79, '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, 19971216000000, 19980113000000, 19980114000000, 2,  58.13, '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, 19971216000000, 19971230000000, 19971225000000, 1,  42.13, '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, 19971217000000, 19980114000000, 19971219000000, 3,  73.16, '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, 19971217000000, 19980114000000, 19971222000000, 3,  1.1, '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, 19971218000000, 19980115000000, 19971219000000, 2,  124.98, '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, 19971218000000, 19980115000000, 19971222000000, 3,  70.09, '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, 19971218000000, 19980115000000, 19971224000000, 3,  1.51, '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, 19971219000000, 19980116000000, 19971223000000, 1,  110.87, '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, 19971219000000, 19980102000000, 19971226000000, 1,  249.93, '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, 19971222000000, 19980119000000, 19980119000000, 2,  42.7, '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, 19971222000000, 19980119000000, 19971231000000, 2,  100.6, '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, 19971222000000, 19980119000000, 19971226000000, 1,  28.23, '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, 19971223000000, 19980120000000, 19980101000000, 2,  16.85, '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, 19971223000000, 19980120000000, 19971231000000, 3,  23.79, '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, 19971224000000, 19980121000000, 19980108000000, 3,  4.52, '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, 19971224000000, 19980121000000, 19980102000000, 1,  21.49, '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, 19971224000000, 19980121000000, 19980120000000, 2,  126.66, '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, 19971225000000, 19980122000000, 19980114000000, 1,  26.52, '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, 19971225000000, 19980122000000, 19980105000000, 2,  33.35, '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, 19971226000000, 19980123000000, 19980105000000, 1,  2.33, '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, 19971226000000, 19980206000000, 19980105000000, 3,  30.76, '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, 19971226000000, 19980123000000, 19980105000000, 3,  137.44, '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, 19971229000000, 19980126000000, 19971231000000, 2,  97.09, '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, 19971229000000, 19980126000000, 19980102000000, 2,  257.26, '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, 19971230000000, 19980127000000, 19980106000000, 1,  55.23, '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, 19971230000000, 19980127000000, 19980107000000, 2,  27.33, '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, 19971230000000, 19980127000000, 19980109000000, 3,  237.34, '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, 19971231000000, 19980128000000, 19980105000000, 2,  22.11, '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, 19971231000000, 19980128000000, 19980130000000, 1,  1.36, '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, 19980101000000, 19980129000000, 19980109000000, 3,  45.53, '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, 19980101000000, 19980129000000, 19980107000000, 1,  4.87, '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, 19980101000000, 19980129000000, 19980107000000, 3,  4.33, '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, 19980102000000, 19980130000000, 19980108000000, 1,  31.22, '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, 19980102000000, 19980130000000, 19980112000000, 1,  59.78, '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, 19980105000000, 19980202000000, 19980109000000, 1,  47.38, '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, 19980105000000, 19980202000000, 19980114000000, 3,  130.94, '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, 19980105000000, 19980202000000, 19980114000000, 3,  14.62, '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, 19980106000000, 19980203000000, 19980204000000, 2,  719.78, '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, 19980106000000, 19980120000000, 19980113000000, 2,  306.07, '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, 19980107000000, 19980204000000, 19980112000000, 3,  65.48, '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, 19980107000000, 19980204000000, 19980116000000, 3,  19.76, '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, 19980107000000, 19980204000000, 19980113000000, 2,  37.52, '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, 19980108000000, 19980205000000, 19980115000000, 1,  36.68, '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, 19980108000000, 19980205000000, 19980116000000, 3,  7.0, '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, 19980109000000, 19980206000000, 19980113000000, 2,  163.97, '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, 19980109000000, 19980206000000, 19980130000000, 1,  1.23, '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, 19980109000000, 19980206000000, 19980114000000, 1,  79.25, '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, 19980112000000, 19980209000000, 19980206000000, 1,  7.09, '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, 19980112000000, 19980126000000, 19980206000000, 2,  63.54, '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, 19980113000000, 19980127000000, 19980204000000, 1,  90.85, '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, 19980113000000, 19980210000000, 19980123000000, 1,  154.72, '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, 19980113000000, 19980224000000, 19980121000000, 2,  81.83, '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, 19980114000000, 19980211000000, 19980123000000, 2,  72.19, '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, 19980114000000, 19980211000000, 19980119000000, 2,  43.26, '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, 19980115000000, 19980212000000, 19980123000000, 2,  71.49, '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, 19980115000000, 19980212000000, 19980119000000, 3,  29.78, '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, 19980115000000, 19980212000000, 19980121000000, 3,  69.53, '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, 19980116000000, 19980213000000, 19980121000000, 1,  411.88, '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, 19980116000000, 19980213000000, 19980123000000, 3,  13.32, '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, 19980119000000, 19980216000000, 19980123000000, 3,  59.28, '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, 19980119000000, 19980216000000, 19980122000000, 3,  35.43, '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, 19980119000000, 19980302000000, 19980216000000, 2,  2.71, '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, 19980120000000, 19980217000000, 19980129000000, 2,  424.3, '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, 19980120000000, 19980217000000, 19980129000000, 3,  54.42, '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, 19980121000000, 19980218000000, 19980126000000, 2,  9.26, '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, 19980121000000, 19980218000000, 19980126000000, 2,  25.22, '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, 19980121000000, 19980204000000, 19980130000000, 1,  212.98, '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, 19980122000000, 19980305000000, 19980123000000, 3,  56.46, '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, 19980122000000, 19980205000000, 19980210000000, 3,  487.57, '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, 19980123000000, 19980220000000, 19980129000000, 2,  38.24, '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, 19980123000000, 19980220000000, 19980130000000, 2,  .56, '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, 19980123000000, 19980306000000, 19980130000000, 1,  49.19, '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, 19980126000000, 19980223000000, 19980202000000, 1,  160.55, '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, 19980126000000, 19980209000000, 19980130000000, 1,  174.05, '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, 19980127000000, 19980224000000, 19980203000000, 2,  53.83, '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, 19980127000000, 19980224000000, 19980205000000, 2,  100.22, '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, 19980127000000, 19980224000000, 19980204000000, 1,  170.97, '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, 19980128000000, 19980225000000, 19980210000000, 2,  58.43, '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, 19980128000000, 19980225000000, 19980206000000, 2,  188.85, '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, 19980129000000, 19980226000000, 19980203000000, 1,  52.51, '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, 19980129000000, 19980226000000, 19980202000000, 2,  76.1, '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, 19980129000000, 19980226000000, 19980204000000, 3,  19.26, '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, 19980130000000, 19980227000000, 19980217000000, 2,  14.93, '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, 19980130000000, 19980313000000, 19980202000000, 2,  53.23, '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, 19980202000000, 19980302000000, 19980217000000, 2,  30.26, '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, 19980202000000, 19980302000000, 19980209000000, 2,  3.04, '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, 19980202000000, 19980216000000, 19980212000000, 1,  348.14, '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, 19980203000000, 19980303000000, 19980212000000, 1,  109.11, '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, 19980203000000, 19980317000000, 19980211000000, 1,  1.93, '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, 19980204000000, 19980304000000, 19980223000000, 2,  191.27, '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, 19980204000000, 19980304000000, 19980209000000, 1,  143.28, '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, 19980204000000, 19980304000000, 19980213000000, 3,  12.04, '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, 19980205000000, 19980305000000, 19980210000000, 2,  112.27, '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, 19980205000000, 19980305000000, 19980209000000, 2,  175.32, '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, 19980206000000, 19980306000000, 19980209000000, 1,  .82, '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, 19980206000000, 19980306000000, 19980211000000, 2,  19.58, '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, 19980206000000, 19980306000000, 19980303000000, 2,  32.37, '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, 19980209000000, 19980309000000, 19980212000000, 3,  60.42, '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, 19980209000000, 19980309000000, 19980219000000, 1,  38.06, '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, 19980210000000, 19980310000000, 19980212000000, 1,  46.69, '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, 19980210000000, 19980310000000, 19980212000000, 3,  8.5, '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, 19980210000000, 19980324000000, 19980218000000, 1,  88.01, '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, 19980211000000, 19980311000000, 19980218000000, 1,  2.84, '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, 19980211000000, 19980311000000, 19980220000000, 3,  23.1, '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, 19980212000000, 19980312000000, 19980220000000, 3,  .53, '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, 19980212000000, 19980312000000, 19980213000000, 2,  90.97, '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, 19980212000000, 19980312000000, 19980218000000, 3,  5.64, '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, 19980213000000, 19980313000000, 19980302000000, 1,  4.99, '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, 19980213000000, 19980313000000, 19980216000000, 3,  1.25, '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, 19980216000000, 19980316000000, 19980223000000, 2,  51.87, '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, 19980216000000, 19980316000000, 19980223000000, 3,  280.61, '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, 19980216000000, 19980316000000, 19980218000000, 1,  32.76, '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, 19980217000000, 19980317000000, 19980219000000, 2,  20.37, '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, 19980217000000, 19980317000000, 19980219000000, 2,  120.27, '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, 19980218000000, 19980318000000, 19980220000000, 2,  77.78, '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, 19980218000000, 19980318000000, 19980220000000, 1,  116.13, '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, 19980218000000, 19980318000000, 19980223000000, 1,  162.75, '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, 19980219000000, 19980319000000, 19980227000000, 3,  32.45, '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, 19980219000000, 19980319000000, 19980225000000, 2,  603.54, '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, 19980220000000, 19980320000000, 19980306000000, 2,  1.27, '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, 19980220000000, 19980320000000, 19980226000000, 3,  1.21, '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, 19980220000000, 19980320000000, 19980304000000, 2,  1.66, '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, 19980223000000, 19980323000000, 19980226000000, 1,  62.09, '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, 19980223000000, 19980323000000, 19980303000000, 1,  44.15, '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, 19980224000000, 19980324000000, 19980304000000, 3,  36.71, '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, 19980224000000, 19980324000000, 19980227000000, 3,  162.95, '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, 19980224000000, 19980324000000, 19980306000000, 2,  13.72, '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, 19980225000000, 19980311000000, 19980303000000, 3,  26.29, '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, 19980225000000, 19980325000000, 19980227000000, 3,  9.19, '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, 19980226000000, 19980326000000, 19980306000000, 2,  32.96, '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, 19980226000000, 19980326000000, 19980310000000, 2,  53.05, '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, 19980226000000, 19980326000000, 19980304000000, 3,  38.11, '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, 19980226000000, 19980326000000, 19980305000000, 1,  38.19, '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, 19980226000000, 19980326000000, 19980318000000, 2,  580.91, '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, 19980226000000, 19980326000000, 19980304000000, 1,  33.05, '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, 19980227000000, 19980327000000, 19980302000000, 1,  21.19, '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, 19980227000000, 19980327000000, 19980302000000, 2,  3.51, '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, 19980227000000, 19980327000000, 19980309000000, 2,  63.77, '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, 19980302000000, 19980330000000, 19980311000000, 2,  8.29, '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, 19980302000000, 19980330000000, 19980311000000, 3,  48.83, '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, 19980302000000, 19980330000000, 19980304000000, 2,  19.8, '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, 19980303000000, 19980331000000, 19980309000000, 2,  29.61, '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, 19980303000000, 19980414000000, 19980309000000, 1,  176.48, '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, 19980303000000, 19980331000000, 19980305000000, 3,  62.74, '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, 19980303000000, 19980414000000, 19980313000000, 3,  68.26, '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, 19980304000000, 19980401000000, 19980408000000, 2,  151.52, '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, 19980304000000, 19980401000000, 19980313000000, 1,  2.27, '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, 19980304000000, 19980401000000, 19980311000000, 3,  39.92, '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, 19980305000000, 19980402000000, 19980408000000, 1,  19.79, '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, 19980305000000, 19980402000000, 19980318000000, 1,  1.36, '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, 19980305000000, 19980402000000, 19980312000000, 1,  33.93, '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, 19980306000000, 19980417000000, 19980318000000, 3,  15.55, '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, 19980306000000, 19980320000000, 19980319000000, 2,  13.6, '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, 19980306000000, 19980403000000, 19980324000000, 1,  134.64, '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, 19980306000000, 19980403000000, 19980316000000, 3,  54.15, '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, 19980309000000, 19980406000000, 19980312000000, 3,  32.01, '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, 19980309000000, 19980406000000, 19980318000000, 3,  47.59, '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, 19980309000000, 19980406000000, 19980318000000, 2,  33.68, '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, 19980310000000, 19980324000000, 19980313000000, 3,  31.51, '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, 19980310000000, 19980407000000, 19980316000000, 2,  31.89, '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, 19980310000000, 19980407000000, 19980313000000, 2,  76.33, '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, 19980311000000, 19980408000000, 19980323000000, 3,  19.77, '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, 19980311000000, 19980408000000, 19980320000000, 2,  400.81, '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, 19980311000000, 19980408000000, 19980318000000, 3,  17.95, '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, 19980311000000, 19980408000000, 19980319000000, 2,  2.17, '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, 19980312000000, 19980326000000, 19980313000000, 3,  52.92, '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, 19980312000000, 19980409000000, 19980318000000, 1,  10.22, '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, 19980312000000, 19980409000000, 19980319000000, 2,  27.2, '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, 19980313000000, 19980410000000, 19980316000000, 2,  3.26, '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, 19980313000000, 19980410000000, 19980319000000, 3,  23.39, '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, 19980313000000, 19980410000000, 19980317000000, 3,  74.44, '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, 19980316000000, 19980413000000, 19980323000000, 2,  2.5, '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, 19980316000000, 19980427000000, 19980407000000, 2,  30.85, '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, 19980316000000, 19980427000000, 19980324000000, 1,  40.42, '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, 19980316000000, 19980330000000, 19980325000000, 2,  23.72, '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, 19980317000000, 19980428000000, 19980320000000, 1,  27.91, '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, 19980317000000, 19980414000000, 19980320000000, 2,  3.26, '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, 19980317000000, 19980428000000, 19980320000000, 2,  44.65, '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, 19980318000000, 19980415000000, 19980327000000, 3,  105.36, '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, 19980318000000, 19980415000000, 19980327000000, 2,  49.56, '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, 19980318000000, 19980429000000, 19980323000000, 2,  4.98, '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, 19980319000000, 19980402000000, 19980408000000, 1,  2.08, '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, 19980319000000, 19980416000000, 19980330000000, 1,  104.47, '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, 19980319000000, 19980416000000, 19980323000000, 2,  275.79, '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, 19980319000000, 19980416000000, 19980326000000, 3,  2.7, '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, 19980320000000, 19980417000000, 19980324000000, 2,  87.38, '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, 19980320000000, 19980417000000, 19980330000000, 3,  144.38, '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, 19980320000000, 19980417000000, 19980408000000, 1,  27.19, '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, 19980323000000, 19980420000000, 19980402000000, 2,  62.22, '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, 19980323000000, 19980420000000, 19980401000000, 3,  74.6, '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, 19980323000000, 19980420000000, 19980330000000, 2,  .21, '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, 19980324000000, 19980407000000, 19980424000000, 1,  16.16, '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, 19980324000000, 19980421000000, 19980402000000, 2,  121.82, '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, 19980324000000, 19980421000000, 19980326000000, 2,  .02, '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, 19980324000000, 19980421000000, 19980327000000, 2,  15.17, '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, 19980325000000, 19980408000000, 19980403000000, 3,  12.96, '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, 19980325000000, 19980422000000, 19980327000000, 3,  32.27, '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, 19980325000000, 19980506000000, 19980403000000, 1,  37.97, '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, 19980326000000, 19980423000000, 19980410000000, 3,  208.5, '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, 19980326000000, 19980423000000, 19980423000000, 2,  32.82, '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, 19980326000000, 19980423000000, 19980331000000, 2,  353.07, '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, 19980327000000, 19980508000000, 19980417000000, 1,  1.26, '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(10981, 'HANAR', 1, 19980327000000, 19980424000000, 19980402000000, 2,  193.37, '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(10982, 'BOTTM', 2, 19980327000000, 19980424000000, 19980408000000, 1,  14.01, '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(10983, 'SAVEA', 2, 19980327000000, 19980424000000, 19980406000000, 2,  657.54, '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(10984, 'SAVEA', 1, 19980330000000, 19980427000000, 19980403000000, 3,  211.22, '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(10985, 'HUNGO', 2, 19980330000000, 19980427000000, 19980402000000, 1,  91.51, '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(10986, 'OCEAN', 8, 19980330000000, 19980427000000, 19980421000000, 2,  217.86, '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(10987, 'EASTC', 8, 19980331000000, 19980428000000, 19980406000000, 1,  185.48, '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(10988, 'RATTC', 3, 19980331000000, 19980428000000, 19980410000000, 2,  61.14, '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(10989, 'QUEDE', 2, 19980331000000, 19980428000000, 19980402000000, 1,  34.76, '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(10990, 'ERNSH', 2, 19980401000000, 19980513000000, 19980407000000, 3,  117.61, '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(10991, 'QUICK', 1, 19980401000000, 19980429000000, 19980407000000, 1,  38.51, '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(10992, 'THEBI', 1, 19980401000000, 19980429000000, 19980403000000, 3,  4.27, '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(10993, 'FOLKO', 7, 19980401000000, 19980429000000, 19980410000000, 3,  8.81, '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(10994, 'VAFFE', 2, 19980402000000, 19980416000000, 19980409000000, 3,  65.53, '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(10995, 'PERIC', 1, 19980402000000, 19980430000000, 19980406000000, 3,  46.0, '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(10996, 'QUICK', 4, 19980402000000, 19980430000000, 19980410000000, 2,  1.12, '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(10997, 'LILAS', 8, 19980403000000, 19980515000000, 19980413000000, 2,  73.91, '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(10998, 'WOLZA', 8, 19980403000000, 19980417000000, 19980417000000, 2,  20.31, '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(10999, 'OTTIK', 6, 19980403000000, 19980501000000, 19980410000000, 2,  96.35, '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(11000, 'RATTC', 2, 19980406000000, 19980504000000, 19980414000000, 3,  55.12, '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(11001, 'FOLKO', 2, 19980406000000, 19980504000000, 19980414000000, 2,  197.3, '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(11002, 'SAVEA', 4, 19980406000000, 19980504000000, 19980416000000, 1,  141.16, '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(11003, 'THECR', 3, 19980406000000, 19980504000000, 19980408000000, 3,  14.91, '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(11004, 'MAISD', 3, 19980407000000, 19980505000000, 19980420000000, 1,  44.84, '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(11005, 'WILMK', 2, 19980407000000, 19980505000000, 19980410000000, 1,  .75, '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(11006, 'GREAL', 3, 19980407000000, 19980505000000, 19980415000000, 2,  25.19, '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(11007, 'PRINI', 8, 19980408000000, 19980506000000, 19980413000000, 2,  202.24, '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(11008, 'ERNSH', 7, 19980408000000, 19980506000000, NULL, 3,  79.46, '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(11009, 'GODOS', 2, 19980408000000, 19980506000000, 19980410000000, 1,  59.11, '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(11010, 'REGGC', 2, 19980409000000, 19980507000000, 19980421000000, 2,  28.71, '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(11011, 'ALFKI', 3, 19980409000000, 19980507000000, 19980413000000, 1,  1.21, '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(11012, 'FRANK', 1, 19980409000000, 19980423000000, 19980417000000, 3,  242.95, '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(11013, 'ROMEY', 2, 19980409000000, 19980507000000, 19980410000000, 1,  32.99, '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(11014, 'LINOD', 2, 19980410000000, 19980508000000, 19980415000000, 3,  23.6, '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(11015, 'SANTG', 2, 19980410000000, 19980424000000, 19980420000000, 2,  4.62, '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(11016, 'AROUT', 9, 19980410000000, 19980508000000, 19980413000000, 2,  33.8, '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(11017, 'ERNSH', 9, 19980413000000, 19980511000000, 19980420000000, 2,  754.26, '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(11018, 'LONEP', 4, 19980413000000, 19980511000000, 19980416000000, 2,  11.65, '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(11019, 'RANCH', 6, 19980413000000, 19980511000000, NULL, 3,  3.17, '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(11020, 'OTTIK', 2, 19980414000000, 19980512000000, 19980416000000, 2,  43.3, '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(11021, 'QUICK', 3, 19980414000000, 19980512000000, 19980421000000, 1,  297.18, '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(11022, 'HANAR', 9, 19980414000000, 19980512000000, 19980504000000, 2,  6.27, '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(11023, 'BSBEV', 1, 19980414000000, 19980428000000, 19980424000000, 2,  123.83, '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(11024, 'EASTC', 4, 19980415000000, 19980513000000, 19980420000000, 1,  74.36, '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(11025, 'WARTH', 6, 19980415000000, 19980513000000, 19980424000000, 3,  29.17, '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(11026, 'FRANS', 4, 19980415000000, 19980513000000, 19980428000000, 1,  47.09, '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(11027, 'BOTTM', 1, 19980416000000, 19980514000000, 19980420000000, 1,  52.52, '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(11028, 'KOENE', 2, 19980416000000, 19980514000000, 19980422000000, 1,  29.59, '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(11029, 'CHOPS', 4, 19980416000000, 19980514000000, 19980427000000, 1,  47.84, '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(11030, 'SAVEA', 7, 19980417000000, 19980515000000, 19980427000000, 2,  830.75, '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(11031, 'SAVEA', 6, 19980417000000, 19980515000000, 19980424000000, 2,  227.22, '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(11032, 'WHITC', 2, 19980417000000, 19980515000000, 19980423000000, 3,  606.19, '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(11033, 'RICSU', 7, 19980417000000, 19980515000000, 19980423000000, 3,  84.74, '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(11034, 'OLDWO', 8, 19980420000000, 19980601000000, 19980427000000, 1,  40.32, '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(11035, 'SUPRD', 2, 19980420000000, 19980518000000, 19980424000000, 2,  .17, '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(11036, 'DRACD', 8, 19980420000000, 19980518000000, 19980422000000, 3,  149.47, '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(11037, 'GODOS', 7, 19980421000000, 19980519000000, 19980427000000, 1,  3.2, '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(11038, 'SUPRD', 1, 19980421000000, 19980519000000, 19980430000000, 2,  29.59, '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(11039, 'LINOD', 1, 19980421000000, 19980519000000, NULL, 2,  65.0, '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(11040, 'GREAL', 4, 19980422000000, 19980520000000, NULL, 3,  18.84, '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(11041, 'CHOPS', 3, 19980422000000, 19980520000000, 19980428000000, 2,  48.22, '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(11042, 'COMMI', 2, 19980422000000, 19980506000000, 19980501000000, 1,  29.99, '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(11043, 'SPECD', 5, 19980422000000, 19980520000000, 19980429000000, 2,  8.8, '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(11044, 'WOLZA', 4, 19980423000000, 19980521000000, 19980501000000, 1,  8.72, '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(11045, 'BOTTM', 6, 19980423000000, 19980521000000, NULL, 2,  70.58, '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(11046, 'WANDK', 8, 19980423000000, 19980521000000, 19980424000000, 2,  71.64, '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(11047, 'EASTC', 7, 19980424000000, 19980522000000, 19980501000000, 3,  46.62, '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(11048, 'BOTTM', 7, 19980424000000, 19980522000000, 19980430000000, 3,  24.12, '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(11049, 'GOURL', 3, 19980424000000, 19980522000000, 19980504000000, 1,  8.34, '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(11050, 'FOLKO', 8, 19980427000000, 19980525000000, 19980505000000, 2,  59.41, '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(11051, 'LAMAI', 7, 19980427000000, 19980525000000, NULL, 3,  2.79, '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(11052, 'HANAR', 3, 19980427000000, 19980525000000, 19980501000000, 1,  67.26, '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(11053, 'PICCO', 2, 19980427000000, 19980525000000, 19980429000000, 2,  53.05, '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(11054, 'CACTU', 8, 19980428000000, 19980526000000, NULL, 1,  .33, '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(11055, 'HILAA', 7, 19980428000000, 19980526000000, 19980505000000, 2,  120.92, '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(11056, 'EASTC', 8, 19980428000000, 19980512000000, 19980501000000, 2,  278.96, '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(11057, 'NORTS', 3, 19980429000000, 19980527000000, 19980501000000, 3,  4.13, '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(11058, 'BLAUS', 9, 19980429000000, 19980527000000, NULL, 3,  31.14, '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(11059, 'RICAR', 2, 19980429000000, 19980610000000, NULL, 2,  85.8, '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(11060, 'FRANS', 2, 19980430000000, 19980528000000, 19980504000000, 2,  10.98, '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(11061, 'GREAL', 4, 19980430000000, 19980611000000, NULL, 3,  14.01, '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(11062, 'REGGC', 4, 19980430000000, 19980528000000, NULL, 2,  29.93, '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(11063, 'HUNGO', 3, 19980430000000, 19980528000000, 19980506000000, 2,  81.73, '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(11064, 'SAVEA', 1, 19980501000000, 19980529000000, 19980504000000, 1,  30.09, '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(11065, 'LILAS', 8, 19980501000000, 19980529000000, NULL, 1,  12.91, '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(11066, 'WHITC', 7, 19980501000000, 19980529000000, 19980504000000, 2,  44.72, '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(11067, 'DRACD', 1, 19980504000000, 19980518000000, 19980506000000, 2,  7.98, '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(11068, 'QUEEN', 8, 19980504000000, 19980601000000, NULL, 2,  81.75, '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(11069, 'TORTU', 1, 19980504000000, 19980601000000, 19980506000000, 2,  15.67, '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(11070, 'LEHMS', 2, 19980505000000, 19980602000000, NULL, 1,  136.0, '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(11071, 'LILAS', 1, 19980505000000, 19980602000000, NULL, 1,  .93, '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(11072, 'ERNSH', 4, 19980505000000, 19980602000000, NULL, 2,  258.64, '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(11073, 'PERIC', 2, 19980505000000, 19980602000000, NULL, 2,  24.95, '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(11074, 'SIMOB', 7, 19980506000000, 19980603000000, NULL, 2,  18.44, '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(11075, 'RICSU', 8, 19980506000000, 19980603000000, NULL, 2,  6.19, '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(11076, 'BONAP', 4, 19980506000000, 19980603000000, NULL, 2,  38.28, '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(11077, 'RATTC', 1, 19980506000000, 19980603000000, NULL, 2,  8.53, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA');
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(1, 'Chai', 8, 1, '10 boxes x 30 bags',  18.0, 39, 0, 10, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(2, 'Chang', 1, 1, '24 - 12 oz bottles',  19.0, 17, 40, 25, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(3, 'Aniseed Syrup', 1, 2, '12 - 550 ml bottles',  10.0, 13, 70, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(4, 'Chef Anton\'s Cajun Seasoning', 2, 2, '48 - 6 oz jars',  22.0, 53, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(5, 'Chef Anton\'s Gumbo Mix', 2, 2, '36 boxes',  21.35, 0, 0, 0, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(6, 'Grandma\'s Boysenberry Spread', 3, 2, '12 - 8 oz jars',  25.0, 120, 0, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(7, 'Uncle Bob\'s Organic Dried Pears', 3, 7, '12 - 1 lb pkgs.',  30.0, 15, 0, 10, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(8, 'Northwoods Cranberry Sauce', 3, 2, '12 - 12 oz jars',  40.0, 6, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(9, 'Mishi Kobe Niku', 4, 6, '18 - 500 g pkgs.',  97.0, 29, 0, 0, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(10, 'Ikura', 4, 8, '12 - 200 ml jars',  31.0, 31, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(11, 'Queso Cabrales', 5, 4, '1 kg pkg.',  21.0, 22, 30, 30, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(12, 'Queso Manchego La Pastora', 5, 4, '10 - 500 g pkgs.',  38.0, 86, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(13, 'Konbu', 6, 8, '2 kg box',  6.0, 24, 0, 5, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(14, 'Tofu', 6, 7, '40 - 100 g pkgs.',  23.25, 35, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(15, 'Genen Shouyu', 6, 2, '24 - 250 ml bottles',  13.0, 39, 0, 5, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(16, 'Pavlova', 7, 3, '32 - 500 g boxes',  17.45, 29, 0, 10, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(17, 'Alice Mutton', 7, 6, '20 - 1 kg tins',  39.0, 0, 0, 0, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(18, 'Carnarvon Tigers', 7, 8, '16 kg pkg.',  62.5, 42, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(19, 'Teatime Chocolate Biscuits', 8, 3, '10 boxes x 12 pieces',  9.2, 25, 0, 5, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(20, 'Sir Rodney\'s Marmalade', 8, 3, '30 gift boxes',  81.0, 40, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(21, 'Sir Rodney\'s Scones', 8, 3, '24 pkgs. x 4 pieces',  10.0, 3, 40, 5, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(22, 'Gustaf\'s Kn�ckebr�d', 9, 5, '24 - 500 g pkgs.',  21.0, 104, 0, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(23, 'Tunnbr�d', 9, 5, '12 - 250 g pkgs.',  9.0, 61, 0, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(24, 'Guaran� Fant�stica', 10, 1, '12 - 355 ml cans',  4.5, 20, 0, 0, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(25, 'NuNuCa Nu�-Nougat-Creme', 11, 3, '20 - 450 g glasses',  14.0, 76, 0, 30, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(26, 'Gumb�r Gummib�rchen', 11, 3, '100 - 250 g bags',  31.23, 15, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(27, 'Schoggi Schokolade', 11, 3, '100 - 100 g pieces',  43.9, 49, 0, 30, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(28, 'R�ssle Sauerkraut', 12, 7, '25 - 825 g cans',  45.6, 26, 0, 0, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(29, 'Th�ringer Rostbratwurst', 12, 6, '50 bags x 30 sausgs.',  123.79, 0, 0, 0, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(30, 'Nord-Ost Matjeshering', 13, 8, '10 - 200 g glasses',  25.89, 10, 0, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(31, 'Gorgonzola Telino', 14, 4, '12 - 100 g pkgs',  12.5, 0, 70, 20, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(32, 'Mascarpone Fabioli', 14, 4, '24 - 200 g pkgs.',  32.0, 9, 40, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(33, 'Geitost', 15, 4, '500 g',  2.5, 112, 0, 20, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(34, 'Sasquatch Ale', 16, 1, '24 - 12 oz bottles',  14.0, 111, 0, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(35, 'Steeleye Stout', 16, 1, '24 - 12 oz bottles',  18.0, 20, 0, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(36, 'Inlagd Sill', 17, 8, '24 - 250 g  jars',  19.0, 112, 0, 20, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(37, 'Gravad lax', 17, 8, '12 - 500 g pkgs.',  26.0, 11, 50, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(38, 'C�te de Blaye', 18, 1, '12 - 75 cl bottles',  263.5, 17, 0, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(39, 'Chartreuse verte', 18, 1, '750 cc per bottle',  18.0, 69, 0, 5, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(40, 'Boston Crab Meat', 19, 8, '24 - 4 oz tins',  18.4, 123, 0, 30, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(41, 'Jack\'s New England Clam Chowder', 19, 8, '12 - 12 oz cans',  9.65, 85, 0, 10, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(42, 'Singaporean Hokkien Fried Mee', 20, 5, '32 - 1 kg pkgs.',  14.0, 26, 0, 0, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(43, 'Ipoh Coffee', 20, 1, '16 - 500 g tins',  46.0, 17, 10, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(44, 'Gula Malacca', 20, 2, '20 - 2 kg bags',  19.45, 27, 0, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(45, 'Rogede sild', 21, 8, '1k pkg.',  9.5, 5, 70, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(46, 'Spegesild', 21, 8, '4 - 450 g glasses',  12.0, 95, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(47, 'Zaanse koeken', 22, 3, '10 - 4 oz boxes',  9.5, 36, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(48, 'Chocolade', 22, 3, '10 pkgs.',  12.75, 15, 70, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(49, 'Maxilaku', 23, 3, '24 - 50 g pkgs.',  20.0, 10, 60, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(50, 'Valkoinen suklaa', 23, 3, '12 - 100 g bars',  16.25, 65, 0, 30, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(51, 'Manjimup Dried Apples', 24, 7, '50 - 300 g pkgs.',  53.0, 20, 0, 10, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(52, 'Filo Mix', 24, 5, '16 - 2 kg boxes',  7.0, 38, 0, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(53, 'Perth Pasties', 24, 6, '48 pieces',  32.8, 0, 0, 0, 1);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(54, 'Tourti�re', 25, 6, '16 pies',  7.45, 21, 0, 10, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(55, 'P�t� chinois', 25, 6, '24 boxes x 2 pies',  24.0, 115, 0, 20, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(56, 'Gnocchi di nonna Alice', 26, 5, '24 - 250 g pkgs.',  38.0, 21, 10, 30, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(57, 'Ravioli Angelo', 26, 5, '24 - 250 g pkgs.',  19.5, 36, 0, 20, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(58, 'Escargots de Bourgogne', 27, 8, '24 pieces',  13.25, 62, 0, 20, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(59, 'Raclette Courdavault', 28, 4, '5 kg pkg.',  55.0, 79, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(60, 'Camembert Pierrot', 28, 4, '15 - 300 g rounds',  34.0, 19, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(61, 'Sirop d\'�rable', 29, 2, '24 - 500 ml bottles',  28.5, 113, 0, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(62, 'Tarte au sucre', 29, 3, '48 pies',  49.3, 17, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(63, 'Vegie-spread', 7, 2, '15 - 625 g jars',  43.9, 24, 0, 5, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(64, 'Wimmers gute Semmelkn�del', 12, 5, '20 bags x 4 pieces',  33.25, 22, 80, 30, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(65, 'Louisiana Fiery Hot Pepper Sauce', 2, 2, '32 - 8 oz bottles',  21.05, 76, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(66, 'Louisiana Hot Spiced Okra', 2, 2, '24 - 8 oz jars',  17.0, 4, 100, 20, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(67, 'Laughing Lumberjack Lager', 16, 1, '24 - 12 oz bottles',  14.0, 52, 0, 10, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(68, 'Scottish Longbreads', 8, 3, '10 boxes x 8 pieces',  12.5, 6, 10, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(69, 'Gudbrandsdalsost', 15, 4, '10 kg pkg.',  36.0, 26, 0, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(70, 'Outback Lager', 7, 1, '24 - 355 ml bottles',  15.0, 15, 10, 30, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(71, 'Flotemysost', 15, 4, '10 - 500 g pkgs.',  21.5, 26, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(72, 'Mozzarella di Giovanni', 14, 4, '24 - 200 g pkgs.',  34.8, 14, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(73, 'R�d Kaviar', 17, 8, '24 - 150 g jars',  15.0, 101, 0, 5, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(74, 'Longlife Tofu', 4, 7, '5 kg pkg.',  10.0, 4, 20, 5, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(75, 'Rh�nbr�u Klosterbier', 12, 1, '24 - 0.5 l bottles',  7.75, 125, 0, 25, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(76, 'Lakkalik��ri', 23, 1, '500 ml',  18.0, 57, 0, 20, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(77, 'Original Frankfurter gr�ne So�e', 12, 2, '12 boxes',  13.0, 32, 0, 15, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(91, 'testSP', NULL, NULL, NULL,  0.0, 0, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(92, 'testSP', NULL, NULL, NULL,  0.0, 0, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(93, 'testSP', NULL, NULL, NULL,  0.0, 0, 0, 0, 0);
INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)  VALUES(94, 'test', NULL, NULL, '3',  4.0, 0, 0, 0, 1);
INSERT INTO Region (RegionID, RegionDescription)  VALUES(1, 'Eastern                                           ');
INSERT INTO Region (RegionID, RegionDescription)  VALUES(2, 'Western                                           ');
INSERT INTO Region (RegionID, RegionDescription)  VALUES(3, 'Northern                                          ');
INSERT INTO Region (RegionID, RegionDescription)  VALUES(4, 'Southern                                          ');
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 Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(1, 'Exotic Liquids', 'Charlotte Cooper', 'Purchasing Manager', '49 Gilbert St.', 'London', NULL, 'EC1 4SD', 'UK', '(171) 555-2222', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(2, 'New Orleans Cajun Delights', 'Shelley Burke', 'Order Administrator', 'P.O. Box 78934', 'New Orleans', 'LA', '70117', 'USA', '(100) 555-4822', NULL, '#CAJUN.HTM#');
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(3, 'Grandma Kelly\'s Homestead', 'Regina Murphy', 'Sales Representative', '707 Oxford Rd.', 'Ann Arbor', 'MI', '48104', 'USA', '(313) 555-5735', '(313) 555-3349', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(4, 'Tokyo Traders', 'Yoshi Nagase', 'Marketing Manager', '9-8 Sekimai Musashino-shi', 'Tokyo', NULL, '100', 'Japan', '(03) 3555-5011', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(5, 'Cooperativa de Quesos \'Las Cabras\'', 'Antonio del Valle Saavedra', 'Export Administrator', 'Calle del Rosal 4', 'Oviedo', 'Asturias', '33007', 'Spain', '(98) 598 76 54', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(6, 'Mayumi\'s', 'Mayumi Ohno', 'Marketing Representative', '92 Setsuko Chuo-ku', 'Osaka', NULL, '545', 'Japan', '(06) 431-7877', NULL, 'Mayumi\'s (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#');
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(7, 'Pavlova, Ltd.', 'Ian Devling', 'Marketing Manager', '74 Rose St. Moonie Ponds', 'Melbourne', 'Victoria', '3058', 'Australia', '(03) 444-2343', '(03) 444-6588', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(8, 'Specialty Biscuits, Ltd.', 'Peter Wilson', 'Sales Representative', '29 King\'s Way', 'Manchester', NULL, 'M14 GSD', 'UK', '(161) 555-4448', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(9, 'PB Kn�ckebr�d AB', 'Lars Peterson', 'Sales Agent', 'Kaloadagatan 13', 'G�teborg', NULL, 'S-345 67', 'Sweden', '031-987 65 43', '031-987 65 91', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(10, 'Refrescos Americanas LTDA', 'Carlos Diaz', 'Marketing Manager', 'Av. das Americanas 12.890', 'Sao Paulo', NULL, '5442', 'Brazil', '(11) 555 4640', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(11, 'Heli S��waren GmbH & Co. KG', 'Petra Winkler', 'Sales Manager', 'Tiergartenstra�e 5', 'Berlin', NULL, '10785', 'Germany', '(010) 9984510', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(12, 'Plutzer Lebensmittelgro�m�rkte AG', 'Martin Bein', 'International Marketing Mgr.', 'Bogenallee 51', 'Frankfurt', NULL, '60439', 'Germany', '(069) 992755', NULL, 'Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#');
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(13, 'Nord-Ost-Fisch Handelsgesellschaft mbH', 'Sven Petersen', 'Coordinator Foreign Markets', 'Frahmredder 112a', 'Cuxhaven', NULL, '27478', 'Germany', '(04721) 8713', '(04721) 8714', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(14, 'Formaggi Fortini s.r.l.', 'Elio Rossi', 'Sales Representative', 'Viale Dante, 75', 'Ravenna', NULL, '48100', 'Italy', '(0544) 60323', '(0544) 60603', '#FORMAGGI.HTM#');
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(15, 'Norske Meierier', 'Beate Vileid', 'Marketing Manager', 'Hatlevegen 5', 'Sandvika', NULL, '1320', 'Norway', '(0)2-953010', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(16, 'Bigfoot Breweries', 'Cheryl Saylor', 'Regional Account Rep.', '3400 - 8th Avenue Suite 210', 'Bend', 'OR', '97101', 'USA', '(503) 555-9931', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(17, 'Svensk Sj�f�da AB', 'Michael Bj�rn', 'Sales Representative', 'Brovallav�gen 231', 'Stockholm', NULL, 'S-123 45', 'Sweden', '08-123 45 67', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(18, 'Aux joyeux eccl�siastiques', 'Guyl�ne Nodier', 'Sales Manager', '203, Rue des Francs-Bourgeois', 'Paris', NULL, '75004', 'France', '(1) 03.83.00.68', '(1) 03.83.00.62', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(19, 'New England Seafood Cannery', 'Robb Merchant', 'Wholesale Account Agent', 'Order Processing Dept. 2100 Paul Revere Blvd.', 'Boston', 'MA', '02134', 'USA', '(617) 555-3267', '(617) 555-3389', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(20, 'Leka Trading', 'Chandra Leka', 'Owner', '471 Serangoon Loop, Suite #402', 'Singapore', NULL, '0512', 'Singapore', '555-8787', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(21, 'Lyngbysild', 'Niels Petersen', 'Sales Manager', 'Lyngbysild Fiskebakken 10', 'Lyngby', NULL, '2800', 'Denmark', '43844108', '43844115', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(22, 'Zaanse Snoepfabriek', 'Dirk Luchte', 'Accounting Manager', 'Verkoop Rijnweg 22', 'Zaandam', NULL, '9999 ZZ', 'Netherlands', '(12345) 1212', '(12345) 1210', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(23, 'Karkki Oy', 'Anne Heikkonen', 'Product Manager', 'Valtakatu 12', 'Lappeenranta', NULL, '53120', 'Finland', '(953) 10956', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(24, 'G\'day, Mate', 'Wendy Mackenzie', 'Sales Representative', '170 Prince Edward Parade Hunter\'s Hill', 'Sydney', 'NSW', '2042', 'Australia', '(02) 555-5914', '(02) 555-4873', 'G\'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#');
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(25, 'Ma Maison', 'Jean-Guy Lauzon', 'Marketing Manager', '2960 Rue St. Laurent', 'Montr�al', 'Qu�bec', 'H1J 1C3', 'Canada', '(514) 555-9022', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(26, 'Pasta Buttini s.r.l.', 'Giovanni Giudici', 'Order Administrator', 'Via dei Gelsomini, 153', 'Salerno', NULL, '84100', 'Italy', '(089) 6547665', '(089) 6547667', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(27, 'Escargots Nouveaux', 'Marie Delamare', 'Sales Manager', '22, rue H. Voiron', 'Montceau', NULL, '71300', 'France', '85.57.00.07', NULL, NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(28, 'Gai p�turage', 'Eliane Noz', 'Sales Representative', 'Bat. B 3, rue des Alpes', 'Annecy', NULL, '74000', 'France', '38.76.98.06', '38.76.98.58', NULL);
INSERT INTO Suppliers (SupplierID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage)  VALUES(29, 'For�ts d\'�rables', 'Chantal Goulet', 'Accounting Manager', '148 rue Chasseur', 'Ste-Hyacinthe', 'Qu�bec', 'J2S 7S8', 'Canada', '(514) 555-2955', '(514) 555-2921', NULL);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('01581', 'Westboro                                          ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('01730', 'Bedford                                           ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('01833', 'Georgetow                                         ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('02116', 'Boston                                            ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('02139', 'Cambridge                                         ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('02184', 'Braintree                                         ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('02903', 'Providence                                        ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('03049', 'Hollis                                            ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('03801', 'Portsmouth                                        ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('06897', 'Wilton                                            ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('07960', 'Morristown                                        ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('08837', 'Edison                                            ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('10019', 'New York                                          ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('10038', 'New York                                          ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('11747', 'Mellvile                                          ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('14450', 'Fairport                                          ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('19428', 'Philadelphia                                      ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('19713', 'Neward                                            ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('20852', 'Rockville                                         ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('27403', 'Greensboro                                        ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('27511', 'Cary                                              ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('29202', 'Columbia                                          ', 4);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('30346', 'Atlanta                                           ', 4);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('31406', 'Savannah                                          ', 4);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('32859', 'Orlando                                           ', 4);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('33607', 'Tampa                                             ', 4);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('40222', 'Louisville                                        ', 1);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('44122', 'Beachwood                                         ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('45839', 'Findlay                                           ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('48075', 'Southfield                                        ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('48084', 'Troy                                              ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('48304', 'Bloomfield Hills                                  ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('53404', 'Racine                                            ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('55113', 'Roseville                                         ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('55439', 'Minneapolis                                       ', 3);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('60179', 'Hoffman Estates                                   ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('60601', 'Chicago                                           ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('72716', 'Bentonville                                       ', 4);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('75234', 'Dallas                                            ', 4);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('78759', 'Austin                                            ', 4);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('80202', 'Denver                                            ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('80909', 'Colorado Springs                                  ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('85014', 'Phoenix                                           ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('85251', 'Scottsdale                                        ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('90405', 'Santa Monica                                      ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('94025', 'Menlo Park                                        ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('94105', 'San Francisco                                     ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('95008', 'Campbell                                          ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('95054', 'Santa Clara                                       ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('95060', 'Santa Cruz                                        ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('98004', 'Bellevue                                          ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('98052', 'Redmond                                           ', 2);
INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID)  VALUES('98104', 'Seattle                                           ', 2);
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(1, 'Alabama', 'AL', 'south');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(2, 'Alaska', 'AK', 'north');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(3, 'Arizona', 'AZ', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(4, 'Arkansas', 'AR', 'south');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(5, 'California', 'CA', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(6, 'Colorado', 'CO', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(7, 'Connecticut', 'CT', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(8, 'Delaware', 'DE', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(9, 'District of Columbia', 'DC', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(10, 'Florida', 'FL', 'south');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(11, 'Georgia', 'GA', 'south');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(12, 'Hawaii', 'HI', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(13, 'Idaho', 'ID', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(14, 'Illinois', 'IL', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(15, 'Indiana', 'IN', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(16, 'Iowa', 'IO', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(17, 'Kansas', 'KS', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(18, 'Kentucky', 'KY', 'south');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(19, 'Louisiana', 'LA', 'south');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(20, 'Maine', 'ME', 'north');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(21, 'Maryland', 'MD', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(22, 'Massachusetts', 'MA', 'north');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(23, 'Michigan', 'MI', 'north');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(24, 'Minnesota', 'MN', 'north');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(25, 'Mississippi', 'MS', 'south');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(26, 'Missouri', 'MO', 'south');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(27, 'Montana', 'MT', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(28, 'Nebraska', 'NE', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(29, 'Nevada', 'NV', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(30, 'New Hampshire', 'NH', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(31, 'New Jersey', 'NJ', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(32, 'New Mexico', 'NM', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(33, 'New York', 'NY', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(34, 'North Carolina', 'NC', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(35, 'North Dakota', 'ND', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(36, 'Ohio', 'OH', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(37, 'Oklahoma', 'OK', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(38, 'Oregon', 'OR', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(39, 'Pennsylvania', 'PA', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(40, 'Rhode Island', 'RI', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(41, 'South Carolina', 'SC', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(42, 'South Dakota', 'SD', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(43, 'Tennessee', 'TN', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(44, 'Texas', 'TX', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(45, 'Utah', 'UT', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(46, 'Vermont', 'VT', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(47, 'Virginia', 'VA', 'east');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(48, 'Washington', 'WA', 'west');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(49, 'West Virginia', 'WV', 'south');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(50, 'Wisconsin', 'WI', 'midwest');
INSERT INTO USStates (StateID, StateName, StateAbbr, StateRegion)  VALUES(51, 'Wyoming', 'WY', 'west');