Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
customers
CREATE TABLE [dbo].[tblCustomers]( [CustomerID] [nvarchar](5) NULL, [CompanyName] [nvarchar](40) NOT NULL, [ContactName] [nvarchar](30) NULL, [ContactTitle] [nvarchar](30) NULL, [Address] [nvarchar](60) NULL, [City] [nvarchar](15) NULL, [Region] [nvarchar](15) NULL, [PostalCode] [nvarchar](10) NULL, [Country] [nvarchar](15) NULL, [Phone] [nvarchar](24) NULL, [Fax] [nvarchar](24) NULL ) ON [PRIMARY] CREATE TABLE [dbo].[tblOrderDetails]( [OrderID] [int] NULL, [ProductID] [int] NULL, [UnitPrice] [money] NOT NULL, [Quantity] [smallint] NOT NULL, [Discount] [real] NOT NULL ) ON [PRIMARY] CREATE TABLE [dbo].[tblOrders]( [OrderID] [int] NULL, [CustomerID] [nvarchar](5) NOT NULL, [EmployeeID] [int] NULL, [ShipName] [nvarchar](40) NULL, [ShipAddress] [nvarchar](60) NULL, [ShipCity] [nvarchar](15) NULL, [ShipRegion] [nvarchar](15) NULL, [ShipPostalCode] [nvarchar](10) NULL, [ShipCountry] [nvarchar](15) NULL, [ShipVia] [int] NULL, [OrderDate] [smalldatetime] NULL, [RequiredDate] [smalldatetime] NULL, [ShippedDate] [smalldatetime] NULL, [Freight] [money] NULL ) ON [PRIMARY] CREATE TABLE [dbo].[tblProducts]( [ProductID] [int] NOT NULL, [SupplierID] [int] NULL, [CategoryID] [int] NULL, [ProductName] [nvarchar](40) NOT NULL, [EnglishName] [nvarchar](40) NULL, [QuantityPerUnit] [nvarchar](20) NULL, [UnitPrice] [money] NULL, [UnitsInStock] [smallint] NULL, [UnitsOnOrder] [smallint] NULL, [ReorderLevel] [smallint] NULL, [Discontinued] [bit] NOT NULL ) ON [PRIMARY] CREATE TABLE [dbo].[tblShippers]( [ShipperID] [int] NOT NULL, [CompanyName] [nvarchar](40) NOT NULL ) ON [PRIMARY] CREATE TABLE [dbo].[tblSupplier]( [SupplierID] [int] NOT NULL, [Name] [nvarchar](50) NULL, [Address] [nvarchar](50) NULL, [City] [nvarchar](50) NULL, [Province] [nvarchar](50) NULL ) ON [PRIMARY] INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ALFKI', N'Alfreds Futterkiste', N'Maria Anders', N'Sales Representative', N'Obere Str. 57', N'Berlin', NULL, N'12209', N'Germany', N'030-0074321', N'030-0076545') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ANATR', N'Ana Trujillo Emparedados y helados', N'Ana Trujillo', N'Owner', N'Avda. de la Constitución 2222', N'México D.F.', NULL, N'05021', N'Mexico', N'(5) 555-4729', N'(5) 555-3745') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ANTON', N'Antonio Moreno Taquería', N'Antonio Moreno', N'Owner', N'Mataderos 2312', N'México D.F.', NULL, N'05023', N'Mexico', N'(5) 555-3932', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'AROUT', N'Around the Horn', N'Thomas Hardy', N'Sales Representative', N'120 Hanover Sq.', N'London', NULL, N'WA1 1DP', N'UK', N'(71) 555-7788', N'(71) 555-6750') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BERGS', N'Berglunds snabbköp', N'Christina Berglund', N'Order Administrator', N'Berguvsvägen 8', N'Luleå', NULL, N'S-958 22', N'Sweden', N'0921-12 34 65', N'0921-12 34 67') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BLAUS', N'Blauer See Delikatessen', N'Hanna Moos', N'Sales Representative', N'Forsterstr. 57', N'Mannheim', NULL, N'68306', N'Germany', N'0621-08460', N'0621-08924') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BLONP', N'Blondel père et fils', N'Frédérique Citeaux', N'Marketing Manager', N'24, place Kléber', N'Strasbourg', NULL, N'67000', N'France', N'88.60.15.31', N'88.60.15.32') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BOLID', N'Bólido Comidas preparadas', N'Martín Sommer', N'Owner', N'C/ Araquil, 67', N'Madrid', NULL, N'28023', N'Spain', N'(91) 555 22 82', N'(91) 555 91 99') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BONAP', N'Bon app''', N'Laurence Lebihan', N'Owner', N'12, rue des Bouchers', N'Marseille', NULL, N'13008', N'France', N'91.24.45.40', N'91.24.45.41') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BOTTM', N'Bottom-Dollar Markets', N'Elizabeth Lincoln', N'Accounting Manager', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada', N'(604) 555-4729', N'(604) 555-3745') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BSBEV', N'B''s Beverages', N'Victoria Ashworth', N'Sales Representative', N'Fauntleroy Circus', N'London', NULL, N'EC2 5NT', N'UK', N'(71) 555-1212', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'CACTU', N'Cactus Comidas para llevar', N'Patricio Simpson', N'Sales Agent', N'Cerrito 333', N'Buenos Aires', NULL, N'1010', N'Argentina', N'(1) 135-5555', N'(1) 135-4892') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'CENTC', N'Centro comercial Moctezuma', N'Francisco Chang', N'Marketing Manager', N'Sierras de Granada 9993', N'México D.F.', NULL, N'05022', N'Mexico', N'(5) 555-3392', N'(5) 555-7293') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'CHOPS', N'Chop-suey Chinese', N'Yang Wang', N'Owner', N'Hauptstr. 29', N'Bern', NULL, N'3012', N'Switzerland', N'0452-076545', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'COMMI', N'Comércio Mineiro', N'Pedro Afonso', N'Sales Associate', N'Av. dos Lusíadas, 23', N'São Paulo', N'SP', N'05432-043', N'Brazil', N'(11) 555-7647', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'CONSH', N'Consolidated Holdings', N'Elizabeth Brown', N'Sales Representative', N'Berkeley Gardens 12 Brewery', N'London', NULL, N'WX1 6LT', N'UK', N'(71) 555-2282', N'(71) 555-9199') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'DRACD', N'Drachenblut Delikatessen', N'Sven Ottlieb', N'Order Administrator', N'Walserweg 21', N'Aachen', NULL, N'52066', N'Germany', N'0241-039123', N'0241-059428') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'DUMON', N'Du monde entier', N'Janine Labrune', N'Owner', N'67, rue des Cinquante Otages', N'Nantes', NULL, N'44000', N'France', N'40.67.88.88', N'40.67.89.89') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'EASTC', N'Eastern Connection', N'Ann Devon', N'Sales Agent', N'35 King George', N'London', NULL, N'WX3 6FW', N'UK', N'(71) 555-0297', N'(71) 555-3373') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ERNSH', N'Ernst Handel', N'Roland Mendel', N'Sales Manager', N'Kirchgasse 6', N'Graz', NULL, N'8010', N'Austria', N'7675-3425', N'7675-3426') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FAMIA', N'Familia Arquibaldo', N'Aria Cruz', N'Marketing Assistant', N'Rua Orós, 92', N'São Paulo', N'SP', N'05442-030', N'Brazil', N'(11) 555-9857', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FISSA', N'FISSA Fabrica Inter. Salchichas S.A.', N'Diego Roel', N'Accounting Manager', N'C/ Moralzarzal, 86', N'Madrid', NULL, N'28034', N'Spain', N'(91) 555 94 44', N'(91) 555 55 93') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FOLIG', N'Folies gourmandes', N'Martine Rancé', N'Assistant Sales Agent', N'184, chaussée de Tournai', N'Lille', NULL, N'59000', N'France', N'20.16.10.16', N'20.16.10.17') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FOLKO', N'Folk och fä HB', N'Maria Larsson', N'Owner', N'Åkergatan 24', N'Bräcke', NULL, N'S-844 67', N'Sweden', N'0695-34 67 21', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FRANK', N'Frankenversand', N'Peter Franken', N'Marketing Manager', N'Berliner Platz 43', N'München', NULL, N'80805', N'Germany', N'089-0877310', N'089-0877451') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FRANR', N'France restauration', N'Carine Schmitt', N'Marketing Manager', N'54, rue Royale', N'Nantes', NULL, N'44000', N'France', N'40.32.21.21', N'40.32.21.20') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FRANS', N'Franchi S.p.A.', N'Paolo Accorti', N'Sales Representative', N'Via Monte Bianco 34', N'Torino', NULL, N'10100', N'Italy', N'011-4988260', N'011-4988261') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FURIB', N'Furia Bacalhau e Frutos do Mar', N'Lino Rodriguez', N'Sales Manager', N'Jardim das rosas n. 32', N'Lisboa', NULL, N'1675', N'Portugal', N'(1) 354-2534', N'(1) 354-2535') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GALED', N'Galería del gastrónomo', N'Eduardo Saavedra', N'Marketing Manager', N'Rambla de Cataluña, 23', N'Barcelona', NULL, N'08022', N'Spain', N'(93) 203 4560', N'(93) 203 4561') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GODOS', N'Godos Cocina Típica', N'José Pedro Freyre', N'Sales Manager', N'C/ Romero, 33', N'Sevilla', NULL, N'41101', N'Spain', N'(95) 555 82 82', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GOURL', N'Gourmet Lanchonetes', N'André Fonseca', N'Sales Associate', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil', N'(11) 555-9482', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GREAL', N'Great Lakes Food Market', N'Howard Snyder', N'Marketing Manager', N'2732 Baker Blvd.', N'Eugene', N'OR', N'97403', N'USA', N'(503) 555-7555', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GROSR', N'GROSELLA-Restaurante', N'Manuel Pereira', N'Owner', N'5ª Ave. Los Palos Grandes', N'Caracas', N'DF', N'1081', N'Venezuela', N'(2) 283-2951', N'(2) 283-3397') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'HANAR', N'Hanari Carnes', N'Mario Pontes', N'Accounting Manager', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil', N'(21) 555-0091', N'(21) 555-8765') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'HILAA', N'HILARIÓN-Abastos', N'Carlos Hernández', N'Sales Representative', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela', N'(5) 555-1340', N'(5) 555-1948') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'HUNGC', N'Hungry Coyote Import Store', N'Yoshi Latimer', N'Sales Representative', N'City Center Plaza 516 Main St.', N'Elgin', N'OR', N'97827', N'USA', N'(503) 555-6874', N'(503) 555-2376') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'HUNGO', N'Hungry Owl All-Night Grocers', N'Patricia McKenna', N'Sales Associate', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', N'2967 542', N'2967 3333') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ISLAT', N'Island Trading', N'Helen Bennett', N'Marketing Manager', N'Garden House Crowther Way', N'Hedge End', N'Lancashire', N'LA9 PX8', N'UK', N'(24) 555-8888', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'KOENE', N'Königlich Essen', N'Philip Cramer', N'Sales Associate', N'Maubelstr. 90', N'Brandenburg', NULL, N'14776', N'Germany', N'0555-09876', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LACOR', N'La corne d''abondance', N'Daniel Tonini', N'Sales Representative', N'67, avenue de l''Europe', N'Versailles', NULL, N'78000', N'France', N'30.59.84.10', N'30.59.85.11') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LAMAI', N'La maison d''Asie', N'Annette Roulet', N'Sales Manager', N'1 rue Alsace-Lorraine', N'Toulouse', NULL, N'31000', N'France', N'61.77.61.10', N'61.77.61.11') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LAUGB', N'Laughing Bacchus Wine Cellars', N'Yoshi Tannamuri', N'Marketing Assistant', N'1900 Oak St.', N'Vancouver', N'BC', N'V3F 2K1', N'Canada', N'(604) 555-3392', N'(604) 555-7293') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LAZYK', N'Lazy K Kountry Store', N'John Steel', N'Marketing Manager', N'12 Orchestra Terrace', N'Walla Walla', N'WA', N'99362', N'USA', N'(509) 555-7969', N'(509) 555-6221') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LEHMS', N'Lehmanns Marktstand', N'Renate Messner', N'Sales Representative', N'Magazinweg 7', N'Frankfurt a.M.', NULL, N'60528', N'Germany', N'069-0245984', N'069-0245874') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LETSS', N'Let''s Stop N Shop', N'Jaime Yorres', N'Owner', N'87 Polk St. Suite 5', N'San Francisco', N'CA', N'94117', N'USA', N'(415) 555-5938', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LILAS', N'LILA-Supermercado', N'Carlos González', N'Accounting Manager', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela', N'(9) 331-6954', N'(9) 331-7256') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LINOD', N'LINO-Delicateses', N'Felipe Izquierdo', N'Owner', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela', N'(8) 34-56-12', N'(8) 34-93-93') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LONEP', N'Lonesome Pine Restaurant', N'Fran Wilson', N'Sales Manager', N'89 Chiaroscuro Rd.', N'Portland', N'OR', N'97219', N'USA', N'(503) 555-9573', N'(503) 555-9646') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'MAGAA', N'Magazzini Alimentari Riuniti', N'Giovanni Rovelli', N'Marketing Manager', N'Via Ludovico il Moro 22', N'Bergamo', NULL, N'24100', N'Italy', N'035-640230', N'035-640231') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'MAISD', N'Maison Dewey', N'Catherine Dewey', N'Sales Agent', N'Rue Joseph-Bens 532', N'Bruxelles', NULL, N'B-1180', N'Belgium', N'(02) 201 24 67', N'(02) 201 24 68') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'MEREP', N'Mère Paillarde', N'Jean Fresnière', N'Marketing Assistant', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', N'(514) 555-8054', N'(514) 555-8055') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'MORGK', N'Morgenstern Gesundkost', N'Alexander Feuer', N'Marketing Assistant', N'Heerstr. 22', N'Leipzig', NULL, N'04179', N'Germany', N'0342-023176', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'NORTS', N'North/South', N'Simon Crowther', N'Sales Associate', N'South House 300 Queensbridge', N'London', NULL, N'SW7 1RZ', N'UK', N'(71) 555-7733', N'(71) 555-2530') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'OCEAN', N'Océano Atlántico Ltda.', N'Yvonne Moncada', N'Sales Agent', N'Ing. Gustavo Moncada 8585 Piso 20-A', N'Buenos Aires', NULL, N'1010', N'Argentina', N'(1) 135-5333', N'(1) 135-5535') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'OLDWO', N'Old World Delicatessen', N'Rene Phillips', N'Sales Representative', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA', N'(907) 555-7584', N'(907) 555-2880') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'OTTIK', N'Ottilies Käseladen', N'Henriette Pfalzheim', N'Owner', N'Mehrheimerstr. 369', N'Köln', NULL, N'50739', N'Germany', N'0221-0644327', N'0221-0765721') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'PARIS', N'Paris spécialités', N'Marie Bertrand', N'Owner', N'265, boulevard Charonne', N'Paris', NULL, N'75012', N'France', N'(1) 42.34.22.66', N'(1) 42.34.22.77') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'PERIC', N'Pericles Comidas clásicas', N'Guillermo Fernández', N'Sales Representative', N'Calle Dr. Jorge Cash 321', N'México D.F.', NULL, N'05033', N'Mexico', N'(5) 552-3745', N'(5) 545-3745') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'PICCO', N'Piccolo und mehr', N'Georg Pipps', N'Sales Manager', N'Geislweg 14', N'Salzburg', NULL, N'5020', N'Austria', N'6562-9722', N'6562-9723') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'PRINI', N'Princesa Isabel Vinhos', N'Isabel de Castro', N'Sales Representative', N'Estrada da saúde n. 58', N'Lisboa', NULL, N'1756', N'Portugal', N'(1) 356-5634', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'QUEDE', N'Que Delícia', N'Bernardo Batista', N'Accounting Manager', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil', N'(21) 555-4252', N'(21) 555-4545') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'QUEEN', N'Queen Cozinha', N'Lúcia Carvalho', N'Marketing Assistant', N'Alameda dos Canàrios, 891', N'São Paulo', N'SP', N'05487-020', N'Brazil', N'(11) 555-1189', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'QUICK', N'QUICK-Stop', N'Horst Kloss', N'Accounting Manager', N'Taucherstraße 10', N'Cunewalde', NULL, N'01307', N'Germany', N'0372-035188', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'RANCH', N'Rancho grande', N'Sergio Gutiérrez', N'Sales Representative', N'Av. del Libertador 900', N'Buenos Aires', NULL, N'1010', N'Argentina', N'(1) 123-5555', N'(1) 123-5556') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'RATTC', N'Rattlesnake Canyon Grocery', N'Paula Wilson', N'Assistant Sales Representative', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA', N'(505) 555-5939', N'(505) 555-3620') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'REGGC', N'Reggiani Caseifici', N'Maurizio Moroni', N'Sales Associate', N'Strada Provinciale 124', N'Reggio Emilia', NULL, N'42100', N'Italy', N'0522-556721', N'0522-556722') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'RICAR', N'Ricardo Adocicados', N'Janete Limeira', N'Assistant Sales Agent', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil', N'(21) 555-3412', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'RICSU', N'Richter Supermarkt', N'Michael Holz', N'Sales Manager', N'Grenzacherweg 237', N'Genève', NULL, N'1203', N'Switzerland', N'0897-034214', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ROMEY', N'Romero y tomillo', N'Alejandra Camino', N'Accounting Manager', N'Gran Vía, 1', N'Madrid', NULL, N'28001', N'Spain', N'(91) 745 6200', N'(91) 745 6210') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SANTG', N'Santé Gourmet', N'Jonas Bergulfsen', N'Owner', N'Erling Skakkes gate 78', N'Stavern', NULL, N'4110', N'Norway', N'07-98 92 35', N'07-98 92 47') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SAVEA', N'Save-a-lot Markets', N'Jose Pavarotti', N'Sales Representative', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', N'(208) 555-8097', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SEVES', N'Seven Seas Imports', N'Hari Kumar', N'Sales Manager', N'90 Wadhurst Rd.', N'London', NULL, N'OX15 4NB', N'UK', N'(71) 555-1717', N'(71) 555-5646') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SIMOB', N'Simons bistro', N'Jytte Petersen', N'Owner', N'Vinbæltet 34', N'København', NULL, N'1734', N'Denmark', N'31 12 34 56', N'31 13 35 57') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SPECD', N'Spécialités du monde', N'Dominique Perrier', N'Marketing Manager', N'25, rue Lauriston', N'Paris', NULL, N'75016', N'France', N'(1) 47.55.60.10', N'(1) 47.55.60.20') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SPLIR', N'Split Rail Beer & Ale', N'Art Braunschweiger', N'Sales Manager', N'P.O. Box 555', N'Lander', N'WY', N'82520', N'USA', N'(307) 555-4680', N'(307) 555-6525') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SUPRD', N'Suprêmes délices', N'Pascale Cartrain', N'Accounting Manager', N'Boulevard Tirou, 255', N'Charleroi', NULL, N'B-6000', N'Belgium', N'(071) 23 67 22 20', N'(071) 23 67 22 21') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'THEBI', N'The Big Cheese', N'Liz Nixon', N'Marketing Manager', N'89 Jefferson Way Suite 2', N'Portland', N'OR', N'97201', N'USA', N'(503) 555-3612', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'THECR', N'The Cracker Box', N'Liu Wong', N'Marketing Assistant', N'55 Grizzly Peak Rd.', N'Butte', N'MT', N'59801', N'USA', N'(406) 555-5834', N'(406) 555-8083') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'TOMSP', N'Toms Spezialitäten', N'Karin Josephs', N'Marketing Manager', N'Luisenstr. 48', N'Münster', NULL, N'44087', N'Germany', N'0251-031259', N'0251-035695') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'TORTU', N'Tortuga Restaurante', N'Miguel Angel Paolino', N'Owner', N'Avda. Azteca 123', N'México D.F.', NULL, N'05033', N'Mexico', N'(5) 555-2933', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'TRADH', N'Tradição Hipermercados', N'Anabela Domingues', N'Sales Representative', N'Av. Inês de Castro, 414', N'São Paulo', N'SP', N'05634-030', N'Brazil', N'(11) 555-2167', N'(11) 555-2168') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'TRAIH', N'Trail''s Head Gourmet Provisioners', N'Helvetius Nagy', N'Sales Associate', N'722 DaVinci Blvd.', N'Kirkland', N'WA', N'98034', N'USA', N'(206) 555-8257', N'(206) 555-2174') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'VAFFE', N'Vaffeljernet', N'Palle Ibsen', N'Sales Manager', N'Smagsløget 45', N'Århus', NULL, N'8200', N'Denmark', N'86 21 32 43', N'86 22 33 44') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'VICTE', N'Victuailles en stock', N'Mary Saveley', N'Sales Agent', N'2, rue du Commerce', N'Lyon', NULL, N'69004', N'France', N'78.32.54.86', N'78.32.54.87') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'VINET', N'Vins et alcools Chevalier', N'Paul Henriot', N'Accounting Manager', N'59 rue de l''Abbaye', N'Reims', NULL, N'51100', N'France', N'26.47.15.10', N'26.47.15.11') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WANDK', N'Die Wandernde Kuh', N'Rita Müller', N'Sales Representative', N'Adenauerallee 900', N'Stuttgart', NULL, N'70563', N'Germany', N'0711-020361', N'0711-035428') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WARTH', N'Wartian Herkku', N'Pirkko Koskitalo', N'Accounting Manager', N'Torikatu 38', N'Oulu', NULL, N'90110', N'Finland', N'981-443655', N'981-443655') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WELLI', N'Wellington Importadora', N'Paula Parente', N'Sales Manager', N'Rua do Mercado, 12', N'Resende', N'SP', N'08737-363', N'Brazil', N'(14) 555-8122', NULL) INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WHITC', N'White Clover Markets', N'Karl Jablonski', N'Owner', N'305 - 14th Ave. S. Suite 3B', N'Seattle', N'WA', N'98128', N'USA', N'(206) 555-4112', N'(206) 555-4115') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WILMK', N'Wilman Kala', N'Matti Karttunen', N'Owner/Marketing Assistant', N'Keskuskatu 45', N'Helsinki', NULL, N'21240', N'Finland', N'90-224 8858', N'90-224 8858') INSERT [dbo].[tblCustomers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WOLZA', N'Wolski Zajazd', N'Zbyszek Piestrzeniewicz', N'Owner', N'ul. Filtrowa 68', N'Warszawa', NULL, N'01-012', N'Poland', N'(26) 642-7012', N'(26) 642-7012') INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10000, 17, 27.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10001, 25, 9.8000, 30, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10001, 40, 12.8000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10001, 59, 38.5000, 8, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10001, 64, 23.0000, 15, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10002, 31, 8.0000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10002, 39, 12.6000, 18, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10002, 71, 15.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10003, 18, 43.7000, 12, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10004, 29, 86.0000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10004, 63, 30.7000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10005, 62, 34.0000, 6, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10006, 13, 4.2000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10006, 50, 11.3000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10007, 12, 26.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10007, 53, 22.9000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10007, 63, 30.7000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10008, 14, 16.2000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10008, 21, 7.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10008, 51, 37.1000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10009, 23, 6.0000, 70, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10009, 51, 37.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10010, 43, 32.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10010, 71, 15.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10011, 18, 43.7000, 12, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10011, 19, 6.4000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10011, 36, 13.3000, 10, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10012, 19, 6.4000, 49, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10012, 35, 12.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10012, 40, 12.8000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10013, 41, 6.7000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10013, 43, 32.2000, 7, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10014, 18, 43.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10014, 41, 6.7000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10015, 11, 14.7000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10015, 24, 3.0000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10015, 41, 6.7000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10015, 73, 10.5000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10015, 74, 7.0000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10016, 61, 19.9000, 15, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10016, 62, 34.5000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10016, 68, 8.7000, 10, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10017, 46, 8.4000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10017, 64, 23.2000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10017, 75, 5.0000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10018, 11, 14.0000, 70, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10018, 50, 11.3000, 10, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10019, 75, 5.4000, 20, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10020, 8, 28.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10020, 16, 12.0000, 14, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10021, 1, 12.0000, 60, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10021, 10, 21.7000, 27, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10021, 25, 9.8000, 5, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10021, 33, 1.0000, 50, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10021, 36, 13.0000, 36, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10021, 71, 15.0000, 5, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10022, 21, 7.0000, 40, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10022, 49, 14.0000, 15, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10022, 50, 11.3000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10022, 56, 26.0000, 4, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10023, 36, 13.3000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10023, 41, 6.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10023, 71, 15.0000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10024, 43, 32.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10024, 53, 22.9000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10024, 56, 26.0000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10025, 16, 12.2000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10025, 28, 31.9000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10026, 68, 8.7000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10027, 41, 6.7000, 40, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10027, 60, 23.0000, 50, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10027, 64, 23.2000, 40, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10027, 65, 14.7000, 80, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10028, 18, 43.7000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10028, 68, 8.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10029, 11, 14.7000, 1, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10029, 16, 12.2000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10029, 75, 5.4000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10030, 5, 14.9000, 30, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10030, 11, 14.7000, 8, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10030, 31, 8.0000, 25, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10030, 43, 32.2000, 6, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10031, 71, 15.0000, 10, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10031, 72, 24.3000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10032, 13, 4.0000, 20, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10032, 24, 3.1000, 15, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10033, 72, 24.3000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10034, 6, 17.0000, 18, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10034, 26, 21.0000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10035, 10, 21.0000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10035, 11, 14.7000, 35, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10035, 34, 9.0000, 30, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10035, 41, 6.7000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10036, 51, 37.0000, 1, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10036, 52, 4.9000, 8, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10036, 53, 22.9000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10037, 2, 13.3000, 10, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10037, 28, 31.9000, 12, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10038, 29, 86.6000, 4, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10038, 36, 13.0000, 8, 0) GO INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10038, 57, 13.0000, 30, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10038, 76, 12.0000, 9, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10039, 62, 34.0000, 15, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10040, 30, 18.0000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10040, 56, 26.0000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10041, 42, 9.8000, 25, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10041, 47, 6.6000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10041, 55, 16.0000, 30, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10042, 13, 4.2000, 25, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10042, 41, 6.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10042, 44, 13.6000, 30, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10042, 51, 37.1000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10043, 1, 12.6000, 40, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10043, 25, 9.8000, 12, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10043, 29, 86.0000, 15, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10044, 7, 21.0000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10044, 72, 24.3000, 21, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10044, 77, 9.0000, 9, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10045, 17, 27.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10045, 24, 3.1000, 16, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10045, 49, 14.0000, 25, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10045, 60, 23.0000, 5, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10046, 2, 13.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10046, 27, 30.0000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10047, 11, 14.7000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10047, 19, 6.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10047, 52, 4.0000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10047, 73, 10.5000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10048, 36, 13.0000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10049, 7, 21.0000, 20, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10050, 16, 12.0000, 14, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10050, 52, 4.9000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10050, 58, 9.0000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10050, 77, 9.1000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10051, 13, 4.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10051, 26, 21.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10051, 56, 26.6000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10052, 16, 12.2000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10052, 60, 23.0000, 90, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10052, 75, 5.4000, 90, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10053, 53, 22.9000, 12, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10053, 55, 16.0000, 2, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10053, 75, 5.4000, 40, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10054, 71, 15.0000, 30, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10054, 72, 24.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10055, 8, 28.0000, 18, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10055, 51, 37.1000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10056, 26, 21.0000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10056, 63, 30.0000, 8, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10057, 58, 9.0000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10057, 74, 7.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10058, 12, 26.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10058, 41, 6.7000, 70, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10058, 54, 5.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10058, 61, 19.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10058, 62, 34.0000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10059, 19, 6.4000, 20, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10059, 24, 3.0000, 24, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10059, 72, 24.3000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10060, 16, 12.2000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10060, 70, 10.5000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10060, 75, 5.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10061, 66, 11.9000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10062, 5, 14.9000, 8, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10062, 51, 37.1000, 12, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10062, 55, 16.8000, 20, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10063, 41, 6.0000, 32, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10063, 69, 25.0000, 24, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10063, 75, 5.0000, 40, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10064, 24, 3.1000, 12, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10064, 54, 5.0000, 15, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10064, 64, 23.2000, 5, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10064, 70, 10.5000, 12, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10065, 1, 12.6000, 55, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10065, 15, 10.0000, 10, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10065, 19, 6.0000, 42, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10066, 31, 8.7000, 8, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10066, 41, 6.7000, 15, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10066, 54, 5.2000, 9, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10067, 11, 14.7000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10067, 31, 8.7000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10067, 70, 10.5000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10068, 2, 13.3000, 10, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10068, 34, 9.8000, 20, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10069, 21, 7.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10069, 46, 8.4000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10070, 7, 21.0000, 8, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10070, 24, 3.1000, 30, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10070, 43, 32.2000, 10, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10071, 1, 12.6000, 25, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10071, 29, 86.0000, 42, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10071, 54, 5.0000, 14, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10072, 16, 12.2000, 25, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10072, 18, 43.0000, 30, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10072, 26, 21.0000, 18, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10072, 45, 6.0000, 35, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10073, 53, 22.9000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10073, 64, 23.2000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10074, 8, 28.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10074, 24, 3.0000, 20, 0) GO INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10074, 41, 6.7000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10074, 42, 9.8000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10075, 9, 67.9000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10075, 14, 16.2000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10075, 62, 34.5000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10076, 40, 12.8000, 7, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10077, 1, 12.6000, 28, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10077, 31, 8.0000, 1, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10078, 41, 6.7000, 7, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10078, 51, 37.0000, 24, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10078, 60, 23.0000, 8, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10079, 23, 6.0000, 30, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10079, 47, 6.0000, 18, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10079, 60, 23.0000, 20, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10080, 2, 13.3000, 30, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10080, 12, 26.0000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10080, 30, 18.1000, 24, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10081, 30, 18.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10081, 65, 14.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10081, 70, 10.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10082, 11, 14.0000, 21, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10082, 47, 6.6000, 15, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10082, 70, 10.5000, 40, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10082, 77, 9.1000, 10, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10083, 2, 13.0000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10083, 16, 12.2000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10083, 19, 6.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10083, 73, 10.5000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10084, 2, 13.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10084, 14, 16.0000, 9, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10084, 54, 5.2000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10084, 60, 23.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10085, 41, 6.7000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10085, 61, 19.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10085, 71, 15.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10086, 8, 28.0000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10086, 38, 184.4000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10087, 24, 3.1000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10087, 34, 9.8000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10087, 60, 23.8000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10088, 13, 4.0000, 30, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10088, 34, 9.8000, 4, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10089, 10, 21.7000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10089, 42, 9.8000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10089, 45, 6.6000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10090, 4, 15.4000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10090, 10, 21.0000, 9, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10090, 16, 12.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10090, 73, 10.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10091, 24, 3.1000, 60, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10091, 26, 21.8000, 12, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10091, 38, 184.4000, 70, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10092, 19, 6.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10092, 31, 8.7000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10092, 34, 9.8000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10093, 17, 27.0000, 4, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10093, 21, 7.0000, 25, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10093, 30, 18.1000, 100, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10093, 53, 22.9000, 40, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10094, 8, 28.0000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10094, 13, 4.2000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10094, 19, 6.4000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10094, 26, 21.8000, 24, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10094, 28, 31.0000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10095, 26, 21.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10095, 35, 12.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10095, 55, 16.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10095, 68, 8.0000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10096, 2, 13.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10096, 12, 26.0000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10096, 29, 86.0000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10097, 29, 86.6000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10097, 52, 4.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10097, 59, 38.5000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10097, 64, 23.2000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10098, 7, 21.0000, 10, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10098, 32, 22.4000, 40, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10098, 36, 13.0000, 21, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10098, 53, 22.0000, 45, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10098, 56, 26.6000, 55, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10098, 59, 38.5000, 9, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10099, 35, 12.0000, 4, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10099, 51, 37.0000, 24, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10100, 22, 14.0000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10100, 29, 86.6000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10100, 76, 12.0000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10101, 1, 12.0000, 8, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10101, 72, 24.3000, 15, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10102, 13, 4.2000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10102, 29, 86.6000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10102, 39, 12.0000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10102, 59, 38.0000, 14, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10103, 36, 13.3000, 20, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10103, 38, 184.0000, 10, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10104, 2, 13.3000, 70, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10104, 13, 4.2000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10104, 52, 4.9000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10104, 76, 12.6000, 30, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10105, 28, 31.9000, 50, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10105, 47, 6.6000, 20, 0.15) GO INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10106, 21, 7.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10106, 59, 38.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10107, 3, 7.0000, 20, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10107, 34, 9.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10107, 64, 23.0000, 15, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10107, 68, 8.7000, 50, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10108, 53, 22.9000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10108, 71, 15.0000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10109, 42, 9.8000, 70, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10109, 68, 8.7000, 70, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10109, 70, 10.5000, 24, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10109, 75, 5.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10110, 10, 21.7000, 8, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10110, 24, 3.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10110, 55, 16.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10110, 72, 24.0000, 14, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10111, 62, 34.5000, 30, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10112, 35, 12.6000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10113, 18, 43.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10113, 35, 12.6000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10114, 11, 14.7000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10114, 41, 6.7000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10114, 71, 15.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10115, 56, 26.6000, 8, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10115, 57, 13.0000, 8, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10115, 77, 9.0000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10116, 24, 3.0000, 7, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10116, 36, 13.3000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10116, 54, 5.2000, 70, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10116, 55, 16.8000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10117, 4, 15.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10117, 62, 34.0000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10117, 77, 9.1000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10118, 38, 184.4000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10118, 39, 12.0000, 42, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10118, 59, 38.5000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10118, 64, 23.0000, 18, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10119, 22, 14.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10119, 44, 13.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10120, 32, 22.4000, 1, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10120, 49, 14.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10121, 27, 30.7000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10121, 55, 16.0000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10122, 25, 9.0000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10123, 18, 43.0000, 35, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10123, 25, 9.0000, 36, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10123, 53, 22.0000, 40, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10124, 17, 27.0000, 7, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10124, 32, 22.4000, 24, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10124, 52, 4.0000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10125, 8, 28.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10125, 24, 3.1000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10126, 3, 7.0000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10126, 46, 8.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10126, 59, 38.5000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10127, 6, 17.5000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10127, 71, 15.0000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10128, 21, 7.0000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10128, 22, 14.0000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10128, 54, 5.0000, 18, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10129, 62, 34.0000, 15, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10130, 34, 9.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10130, 72, 24.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10130, 75, 5.4000, 30, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10131, 42, 9.8000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10131, 50, 11.0000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10131, 60, 23.8000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10132, 12, 26.0000, 20, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10132, 28, 31.0000, 20, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10132, 30, 18.0000, 10, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10132, 53, 22.0000, 30, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10133, 31, 8.0000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10133, 38, 184.4000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10133, 56, 26.6000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10134, 52, 4.9000, 25, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10135, 39, 12.6000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10136, 18, 43.0000, 24, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10137, 13, 4.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10137, 68, 8.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10137, 72, 24.3000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10138, 36, 13.3000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10138, 66, 11.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10139, 60, 23.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10140, 31, 8.7000, 40, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10141, 27, 30.0000, 50, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10141, 60, 23.8000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10142, 4, 15.4000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10142, 45, 6.6000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10143, 35, 12.0000, 12, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10143, 41, 6.0000, 50, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10144, 20, 56.7000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10144, 24, 3.1000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10144, 53, 22.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10144, 72, 24.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10145, 15, 10.0000, 8, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10145, 34, 9.8000, 12, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10145, 55, 16.0000, 20, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10146, 26, 21.8000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10146, 34, 9.0000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10147, 11, 14.0000, 1, 0) GO INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10147, 18, 43.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10147, 51, 37.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10148, 30, 18.0000, 12, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10148, 40, 12.0000, 5, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10148, 43, 32.2000, 24, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10148, 51, 37.1000, 24, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10149, 27, 30.7000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10149, 35, 12.6000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10150, 29, 86.6000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10150, 53, 22.0000, 9, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10150, 67, 9.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10151, 25, 9.0000, 2, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10151, 75, 5.0000, 4, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10152, 30, 18.0000, 20, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10152, 47, 6.0000, 5, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10152, 76, 12.0000, 10, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10153, 32, 22.0000, 20, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10153, 60, 23.8000, 15, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10154, 7, 21.0000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10154, 55, 16.8000, 7, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10154, 68, 8.7000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10155, 43, 32.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10155, 62, 34.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10155, 63, 30.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10156, 1, 12.0000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10156, 4, 15.4000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10156, 34, 9.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10157, 2, 13.0000, 35, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10157, 35, 12.6000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10157, 73, 10.5000, 50, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10158, 11, 14.0000, 30, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10158, 34, 9.8000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10158, 36, 13.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10158, 54, 5.0000, 20, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10158, 55, 16.0000, 20, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10159, 1, 12.0000, 40, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10159, 51, 37.1000, 6, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10160, 31, 8.0000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10160, 71, 15.0000, 2, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10161, 11, 14.7000, 14, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10161, 59, 38.0000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10161, 67, 9.8000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10162, 16, 12.2000, 6, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10162, 33, 1.7000, 6, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10162, 75, 5.4000, 20, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10163, 1, 12.6000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10163, 25, 9.0000, 8, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10163, 60, 23.0000, 48, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10163, 64, 23.2000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10164, 47, 6.0000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10165, 25, 9.0000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10165, 55, 16.8000, 35, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10166, 17, 27.3000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10166, 32, 22.4000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10166, 47, 6.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10167, 30, 18.1000, 30, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10167, 44, 13.6000, 18, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10167, 61, 19.0000, 12, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10168, 12, 26.6000, 80, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10168, 40, 12.8000, 16, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10168, 76, 12.0000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10169, 17, 27.3000, 42, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10169, 68, 8.7000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10170, 71, 15.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10170, 75, 5.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10170, 77, 9.0000, 24, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10171, 19, 6.4000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10171, 22, 14.0000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10172, 33, 1.7000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10172, 42, 9.0000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10172, 72, 24.3000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10173, 29, 86.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10173, 59, 38.5000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10174, 15, 10.8000, 20, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10174, 20, 56.7000, 8, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10175, 30, 18.0000, 12, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10175, 36, 13.3000, 25, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10175, 59, 38.0000, 35, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10176, 55, 16.8000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10176, 67, 9.0000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10176, 68, 8.7000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10176, 71, 15.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10177, 17, 27.0000, 30, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10177, 31, 8.0000, 35, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10177, 32, 22.0000, 6, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10178, 44, 13.6000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10178, 46, 8.4000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10178, 73, 10.0000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10179, 64, 23.0000, 14, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10180, 14, 16.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10180, 16, 12.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10180, 45, 6.6000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10181, 4, 15.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10181, 17, 27.3000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10182, 32, 22.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10182, 44, 13.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10183, 10, 21.7000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10183, 23, 6.3000, 14, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10183, 49, 14.0000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10184, 12, 26.0000, 15, 0) GO INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10184, 19, 6.4000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10184, 46, 8.4000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10185, 24, 3.0000, 4, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10185, 59, 38.0000, 8, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10185, 65, 14.0000, 10, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10186, 13, 4.0000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10186, 40, 12.8000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10186, 50, 11.3000, 16, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10186, 56, 26.6000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10187, 35, 12.0000, 60, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10187, 43, 32.0000, 12, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10188, 24, 3.0000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10188, 62, 34.5000, 10, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10189, 36, 13.0000, 30, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10190, 33, 1.7000, 36, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10191, 24, 3.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10191, 73, 10.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10192, 59, 38.0000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10192, 70, 10.0000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10193, 1, 12.6000, 45, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10193, 43, 32.0000, 110, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10193, 54, 5.2000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10194, 52, 4.9000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10194, 69, 25.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10195, 38, 184.0000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10195, 70, 10.5000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10196, 10, 21.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10196, 24, 3.0000, 42, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10196, 38, 184.4000, 30, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10197, 21, 7.0000, 3, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10197, 46, 8.4000, 24, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10197, 58, 9.0000, 25, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10198, 38, 184.4000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10198, 46, 8.0000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10198, 56, 26.0000, 18, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10198, 76, 12.6000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10199, 1, 12.0000, 66, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10199, 3, 7.0000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10199, 39, 12.0000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10200, 11, 14.7000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10201, 1, 12.6000, 25, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10201, 15, 10.8000, 25, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10202, 1, 12.6000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10202, 51, 37.1000, 42, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10202, 73, 10.5000, 18, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10203, 20, 56.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10203, 70, 10.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10204, 31, 8.7000, 70, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10204, 45, 6.0000, 35, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10204, 59, 38.0000, 50, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10205, 31, 8.7000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10205, 40, 12.0000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10205, 41, 6.0000, 56, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10205, 62, 34.0000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10205, 73, 10.0000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10206, 34, 9.0000, 60, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10206, 43, 32.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10207, 13, 4.2000, 20, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10207, 35, 12.0000, 10, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10207, 46, 8.4000, 40, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10208, 56, 26.6000, 12, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10209, 1, 12.0000, 4, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10209, 4, 15.0000, 15, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10209, 52, 4.9000, 18, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10210, 11, 14.7000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10210, 14, 16.2000, 28, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10210, 39, 12.6000, 60, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10210, 57, 13.0000, 15, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10210, 67, 9.0000, 30, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10211, 39, 12.6000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10211, 41, 6.0000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10211, 77, 9.1000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10212, 31, 8.0000, 8, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10212, 70, 10.5000, 25, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10213, 38, 184.4000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10213, 48, 8.0000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10213, 76, 12.6000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10214, 19, 6.4000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10214, 21, 7.0000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10214, 69, 25.0000, 35, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10214, 76, 12.6000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10215, 21, 7.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10215, 29, 86.0000, 9, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10216, 35, 12.0000, 30, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10216, 74, 7.0000, 30, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10217, 41, 6.7000, 28, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10217, 59, 38.5000, 6, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10218, 29, 86.0000, 5, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10218, 56, 26.0000, 15, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10219, 41, 6.0000, 56, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10219, 43, 32.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10219, 70, 10.0000, 4, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10220, 13, 4.0000, 20, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10220, 33, 1.7000, 9, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10220, 69, 25.0000, 30, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10221, 54, 5.2000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10221, 55, 16.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10221, 64, 23.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10222, 2, 13.0000, 70, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10222, 4, 15.4000, 80, 0) GO INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10223, 17, 27.0000, 1, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10223, 19, 6.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10223, 56, 26.6000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10224, 24, 3.1000, 50, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10224, 70, 10.0000, 25, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10225, 11, 14.0000, 70, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10225, 35, 12.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10225, 42, 9.0000, 55, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10225, 52, 4.9000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10225, 77, 9.1000, 63, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10226, 9, 67.0000, 25, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10226, 29, 86.6000, 110, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10226, 31, 8.0000, 14, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10226, 33, 1.7000, 21, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10226, 59, 38.0000, 42, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10227, 10, 21.0000, 4, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10227, 55, 16.8000, 14, 0.1) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10228, 53, 22.9000, 3, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10228, 64, 23.2000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10229, 35, 12.6000, 7, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10229, 74, 7.0000, 1, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10230, 27, 30.0000, 36, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10230, 56, 26.0000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10231, 62, 34.5000, 12, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10232, 30, 18.1000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10232, 49, 14.0000, 20, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10232, 61, 19.9000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10233, 33, 1.7000, 36, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10233, 44, 13.0000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10234, 24, 3.1000, 21, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10234, 53, 22.9000, 30, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10234, 69, 25.2000, 2, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10235, 75, 5.0000, 20, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10235, 76, 12.6000, 30, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10235, 77, 9.0000, 20, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10236, 5, 14.0000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10236, 69, 25.2000, 30, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10237, 19, 6.4000, 20, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10237, 62, 34.5000, 18, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10237, 76, 12.0000, 4, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10238, 26, 21.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10238, 35, 12.6000, 4, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10238, 65, 14.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10238, 75, 5.4000, 9, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10239, 20, 56.0000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10240, 32, 22.0000, 49, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10240, 33, 1.0000, 18, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10240, 46, 8.4000, 10, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10240, 55, 16.8000, 50, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10241, 8, 28.0000, 12, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10241, 21, 7.0000, 10, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10241, 43, 32.0000, 25, 0.05) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10242, 2, 13.3000, 15, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10242, 70, 10.5000, 25, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10242, 75, 5.0000, 40, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10243, 34, 9.8000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10243, 75, 5.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10244, 43, 32.0000, 6, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10244, 54, 5.2000, 8, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10245, 30, 18.0000, 28, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10245, 35, 12.0000, 10, 0.2) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10246, 40, 12.0000, 15, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10247, 10, 21.7000, 35, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10247, 46, 8.0000, 50, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10247, 76, 12.6000, 50, 0.25) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10248, 11, 14.0000, 12, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10248, 42, 9.8000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10248, 72, 24.3000, 5, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10249, 14, 18.6000, 9, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10249, 51, 42.4000, 40, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10250, 41, 7.7000, 10, 0) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10250, 51, 42.4000, 35, 0.15) INSERT [dbo].[tblOrderDetails] ([OrderID], [ProductID], [UnitPrice], [Quantity], [Discount]) VALUES (10250, 65, 16.8000, 15, 0.15) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10000, N'FRANS', 6, N'Franchi S.p.A.', N'Via Monte Bianco 34', N'Torino', NULL, N'10100', N'Italy', 3, CAST(N'1991-05-10T00:00:00' AS SmallDateTime), CAST(N'1991-06-07T00:00:00' AS SmallDateTime), CAST(N'1991-05-15T00:00:00' AS SmallDateTime), 4.4500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10001, N'MEREP', 8, N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', 3, CAST(N'1991-05-13T00:00:00' AS SmallDateTime), CAST(N'1991-06-10T00:00:00' AS SmallDateTime), CAST(N'1991-05-23T00:00:00' AS SmallDateTime), 79.4500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10002, N'FOLKO', 3, N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', NULL, N'S-844 67', N'Sweden', 3, CAST(N'1991-05-14T00:00:00' AS SmallDateTime), CAST(N'1991-06-11T00:00:00' AS SmallDateTime), CAST(N'1991-05-17T00:00:00' AS SmallDateTime), 36.1800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10003, N'SIMOB', 8, N'Simons bistro', N'Vinbæltet 34', N'København', NULL, N'1734', N'Denmark', 1, CAST(N'1991-05-15T00:00:00' AS SmallDateTime), CAST(N'1991-06-12T00:00:00' AS SmallDateTime), CAST(N'1991-05-24T00:00:00' AS SmallDateTime), 18.5900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10004, N'VAFFE', 3, N'Vaffeljernet', N'Smagsløget 45', N'Århus', NULL, N'8200', N'Denmark', 2, CAST(N'1991-05-16T00:00:00' AS SmallDateTime), CAST(N'1991-06-13T00:00:00' AS SmallDateTime), CAST(N'1991-05-20T00:00:00' AS SmallDateTime), 20.1200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10005, N'WARTH', 5, N'Wartian Herkku', N'Torikatu 38', N'Oulu', NULL, N'90110', N'Finland', 3, CAST(N'1991-05-20T00:00:00' AS SmallDateTime), CAST(N'1991-06-17T00:00:00' AS SmallDateTime), CAST(N'1991-05-24T00:00:00' AS SmallDateTime), 4.1300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10006, N'FRANS', 8, N'Franchi S.p.A.', N'Via Monte Bianco 34', N'Torino', NULL, N'10100', N'Italy', 1, CAST(N'1991-05-21T00:00:00' AS SmallDateTime), CAST(N'1991-06-18T00:00:00' AS SmallDateTime), CAST(N'1991-05-24T00:00:00' AS SmallDateTime), 3.6200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10007, N'MORGK', 4, N'Morgenstern Gesundkost', N'Heerstr. 22', N'Leipzig', NULL, N'04179', N'Germany', 3, CAST(N'1991-05-22T00:00:00' AS SmallDateTime), CAST(N'1991-06-19T00:00:00' AS SmallDateTime), CAST(N'1991-06-11T00:00:00' AS SmallDateTime), 36.1900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10008, N'FURIB', 3, N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', NULL, N'1675', N'Portugal', 1, CAST(N'1991-05-23T00:00:00' AS SmallDateTime), CAST(N'1991-06-20T00:00:00' AS SmallDateTime), CAST(N'1991-05-29T00:00:00' AS SmallDateTime), 74.2200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10009, N'SEVES', 8, N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', NULL, N'OX15 4NB', N'UK', 1, CAST(N'1991-05-24T00:00:00' AS SmallDateTime), CAST(N'1991-06-21T00:00:00' AS SmallDateTime), CAST(N'1991-05-31T00:00:00' AS SmallDateTime), 49.2100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10010, N'SIMOB', 8, N'Simons bistro', N'Vinbæltet 34', N'København', NULL, N'1734', N'Denmark', 1, CAST(N'1991-05-28T00:00:00' AS SmallDateTime), CAST(N'1991-06-25T00:00:00' AS SmallDateTime), CAST(N'1991-05-30T00:00:00' AS SmallDateTime), 3.0100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10011, N'WELLI', 6, N'Wellington Importadora', N'Rua do Mercado, 12', N'Resende', N'SP', N'08737-363', N'Brazil', 3, CAST(N'1991-05-29T00:00:00' AS SmallDateTime), CAST(N'1991-06-26T00:00:00' AS SmallDateTime), CAST(N'1991-06-03T00:00:00' AS SmallDateTime), 31.5400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10012, N'LINOD', 6, N'LINO-Delicateses', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela', 1, CAST(N'1991-05-30T00:00:00' AS SmallDateTime), CAST(N'1991-06-27T00:00:00' AS SmallDateTime), CAST(N'1991-06-03T00:00:00' AS SmallDateTime), 102.5900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10013, N'RICSU', 3, N'Richter Supermarkt', N'Starenweg 5', N'Genève', NULL, N'1204', N'Switzerland', 3, CAST(N'1991-05-31T00:00:00' AS SmallDateTime), CAST(N'1991-06-28T00:00:00' AS SmallDateTime), CAST(N'1991-06-07T00:00:00' AS SmallDateTime), 50.8700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10014, N'GROSR', 4, N'GROSELLA-Restaurante', N'5ª Ave. Los Palos Grandes', N'Caracas', N'DF', N'1081', N'Venezuela', 3, CAST(N'1991-06-03T00:00:00' AS SmallDateTime), CAST(N'1991-07-01T00:00:00' AS SmallDateTime), CAST(N'1991-06-12T00:00:00' AS SmallDateTime), 17.6700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10015, N'PICCO', 6, N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', NULL, N'5020', N'Austria', 1, CAST(N'1991-06-05T00:00:00' AS SmallDateTime), CAST(N'1991-07-03T00:00:00' AS SmallDateTime), CAST(N'1991-06-20T00:00:00' AS SmallDateTime), 22.1000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10016, N'FOLIG', 3, N'Folies gourmandes', N'184, chaussée de Tournai', N'Lille', NULL, N'59000', N'France', 2, CAST(N'1991-06-06T00:00:00' AS SmallDateTime), CAST(N'1991-07-04T00:00:00' AS SmallDateTime), CAST(N'1991-07-11T00:00:00' AS SmallDateTime), 113.0100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10017, N'BLONP', 4, N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', NULL, N'67000', N'France', 1, CAST(N'1991-06-07T00:00:00' AS SmallDateTime), CAST(N'1991-07-05T00:00:00' AS SmallDateTime), CAST(N'1991-06-10T00:00:00' AS SmallDateTime), 111.8100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10018, N'RATTC', 4, N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA', 1, CAST(N'1991-06-10T00:00:00' AS SmallDateTime), CAST(N'1991-07-08T00:00:00' AS SmallDateTime), CAST(N'1991-07-05T00:00:00' AS SmallDateTime), 65.4600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10019, N'MAGAA', 6, N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', NULL, N'24100', N'Italy', 3, CAST(N'1991-06-11T00:00:00' AS SmallDateTime), CAST(N'1991-07-09T00:00:00' AS SmallDateTime), CAST(N'1991-06-20T00:00:00' AS SmallDateTime), 2.4200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10020, N'VINET', 2, N'Vins et alcools Chevalier', N'59 rue de l''Abbaye', N'Reims', NULL, N'51100', N'France', 1, CAST(N'1991-06-13T00:00:00' AS SmallDateTime), CAST(N'1991-07-11T00:00:00' AS SmallDateTime), CAST(N'1991-06-26T00:00:00' AS SmallDateTime), 27.5100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10021, N'ERNSH', 7, N'Ernst Handel', N'Kirchgasse 6', N'Graz', NULL, N'8010', N'Austria', 3, CAST(N'1991-06-14T00:00:00' AS SmallDateTime), CAST(N'1991-07-12T00:00:00' AS SmallDateTime), CAST(N'1991-07-02T00:00:00' AS SmallDateTime), 75.1700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10022, N'LAMAI', 1, N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', NULL, N'31000', N'France', 1, CAST(N'1991-06-17T00:00:00' AS SmallDateTime), CAST(N'1991-07-15T00:00:00' AS SmallDateTime), CAST(N'1991-07-22T00:00:00' AS SmallDateTime), 46.0000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10023, N'TOMSP', 3, N'Toms Spezialitäten', N'Luisenstr. 48', N'Münster', NULL, N'44087', N'Germany', 1, CAST(N'1991-06-18T00:00:00' AS SmallDateTime), CAST(N'1991-07-16T00:00:00' AS SmallDateTime), CAST(N'1991-06-28T00:00:00' AS SmallDateTime), 66.8700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10024, N'RATTC', 4, N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA', 1, CAST(N'1991-06-19T00:00:00' AS SmallDateTime), CAST(N'1991-07-17T00:00:00' AS SmallDateTime), CAST(N'1991-06-21T00:00:00' AS SmallDateTime), 5.1900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10025, N'RATTC', 4, N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA', 3, CAST(N'1991-06-21T00:00:00' AS SmallDateTime), CAST(N'1991-07-19T00:00:00' AS SmallDateTime), CAST(N'1991-06-25T00:00:00' AS SmallDateTime), 3.3200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10026, N'MORGK', 5, N'Morgenstern Gesundkost', N'Heerstr. 22', N'Leipzig', NULL, N'04179', N'Germany', 3, CAST(N'1991-06-24T00:00:00' AS SmallDateTime), CAST(N'1991-07-22T00:00:00' AS SmallDateTime), CAST(N'1991-06-26T00:00:00' AS SmallDateTime), 1.3400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10027, N'ERNSH', 7, N'Ernst Handel', N'Kirchgasse 6', N'Graz', NULL, N'8010', N'Austria', 3, CAST(N'1991-06-25T00:00:00' AS SmallDateTime), CAST(N'1991-07-23T00:00:00' AS SmallDateTime), CAST(N'1991-07-02T00:00:00' AS SmallDateTime), 100.1300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10028, N'ANTON', 2, N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', NULL, N'05023', N'Mexico', 1, CAST(N'1991-06-26T00:00:00' AS SmallDateTime), CAST(N'1991-07-24T00:00:00' AS SmallDateTime), CAST(N'1991-07-31T00:00:00' AS SmallDateTime), 46.8600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10029, N'SANTG', 3, N'Santé Gourmet', N'Erling Skakkes gate 78', N'Stavern', NULL, N'4110', N'Norway', 2, CAST(N'1991-06-27T00:00:00' AS SmallDateTime), CAST(N'1991-07-25T00:00:00' AS SmallDateTime), CAST(N'1991-07-05T00:00:00' AS SmallDateTime), 6.7200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10030, N'LILAS', 1, N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela', 3, CAST(N'1991-07-01T00:00:00' AS SmallDateTime), CAST(N'1991-07-29T00:00:00' AS SmallDateTime), CAST(N'1991-07-08T00:00:00' AS SmallDateTime), 26.4900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10031, N'SUPRD', 1, N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', NULL, N'B-6000', N'Belgium', 3, CAST(N'1991-07-02T00:00:00' AS SmallDateTime), CAST(N'1991-07-16T00:00:00' AS SmallDateTime), CAST(N'1991-07-09T00:00:00' AS SmallDateTime), 7.0300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10032, N'BOLID', 8, N'Bólido Comidas preparadas', N'C/ Araquil, 67', N'Madrid', NULL, N'28023', N'Spain', 3, CAST(N'1991-07-03T00:00:00' AS SmallDateTime), CAST(N'1991-07-31T00:00:00' AS SmallDateTime), CAST(N'1991-07-09T00:00:00' AS SmallDateTime), 0.2600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10033, N'OTTIK', 3, N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', NULL, N'50739', N'Germany', 3, CAST(N'1991-07-04T00:00:00' AS SmallDateTime), CAST(N'1991-08-15T00:00:00' AS SmallDateTime), CAST(N'1991-07-08T00:00:00' AS SmallDateTime), 8.5200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10034, N'EASTC', 4, N'Eastern Connection', N'35 King George', N'London', NULL, N'WX3 6FW', N'UK', 2, CAST(N'1991-07-05T00:00:00' AS SmallDateTime), CAST(N'1991-08-02T00:00:00' AS SmallDateTime), CAST(N'1991-07-17T00:00:00' AS SmallDateTime), 64.1700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10035, N'HILAA', 1, N'HILARIÓN-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela', 3, CAST(N'1991-07-09T00:00:00' AS SmallDateTime), CAST(N'1991-08-06T00:00:00' AS SmallDateTime), CAST(N'1991-07-17T00:00:00' AS SmallDateTime), 192.5500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10036, N'CENTC', 9, N'Centro comercial Moctezuma', N'Sierras de Granada 9993', N'México D.F.', NULL, N'05022', N'Mexico', 2, CAST(N'1991-07-10T00:00:00' AS SmallDateTime), CAST(N'1991-08-07T00:00:00' AS SmallDateTime), CAST(N'1991-07-17T00:00:00' AS SmallDateTime), 17.0000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10037, N'VAFFE', 2, N'Vaffeljernet', N'Smagsløget 45', N'Århus', NULL, N'8200', N'Denmark', 3, CAST(N'1991-07-11T00:00:00' AS SmallDateTime), CAST(N'1991-08-08T00:00:00' AS SmallDateTime), CAST(N'1991-07-17T00:00:00' AS SmallDateTime), 29.6300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10038, N'OLDWO', 1, N'Old World Delicatessen', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA', 3, CAST(N'1991-07-12T00:00:00' AS SmallDateTime), CAST(N'1991-08-09T00:00:00' AS SmallDateTime), CAST(N'1991-07-15T00:00:00' AS SmallDateTime), 37.3700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10039, N'MEREP', 1, N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', 2, CAST(N'1991-07-15T00:00:00' AS SmallDateTime), CAST(N'1991-08-12T00:00:00' AS SmallDateTime), CAST(N'1991-07-18T00:00:00' AS SmallDateTime), 7.3700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10040, N'WHITC', 3, N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA', 3, CAST(N'1991-07-17T00:00:00' AS SmallDateTime), CAST(N'1991-08-14T00:00:00' AS SmallDateTime), CAST(N'1991-07-26T00:00:00' AS SmallDateTime), 51.8800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10041, N'HILAA', 2, N'HILARIÓN-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela', 2, CAST(N'1991-07-18T00:00:00' AS SmallDateTime), CAST(N'1991-08-15T00:00:00' AS SmallDateTime), CAST(N'1991-07-31T00:00:00' AS SmallDateTime), 2.5400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10042, N'FOLKO', 9, N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', NULL, N'S-844 67', N'Sweden', 3, CAST(N'1991-07-19T00:00:00' AS SmallDateTime), CAST(N'1991-08-16T00:00:00' AS SmallDateTime), CAST(N'1991-08-13T00:00:00' AS SmallDateTime), 106.0300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10043, N'LINOD', 9, N'LINO-Delicateses', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela', 2, CAST(N'1991-07-22T00:00:00' AS SmallDateTime), CAST(N'1991-08-19T00:00:00' AS SmallDateTime), CAST(N'1991-07-31T00:00:00' AS SmallDateTime), 166.1900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10044, N'ANTON', 3, N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', NULL, N'05023', N'Mexico', 3, CAST(N'1991-07-23T00:00:00' AS SmallDateTime), CAST(N'1991-08-20T00:00:00' AS SmallDateTime), CAST(N'1991-08-01T00:00:00' AS SmallDateTime), 67.6100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10045, N'BERGS', 9, N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', NULL, N'S-958 22', N'Sweden', 1, CAST(N'1991-07-25T00:00:00' AS SmallDateTime), CAST(N'1991-09-05T00:00:00' AS SmallDateTime), CAST(N'1991-07-31T00:00:00' AS SmallDateTime), 22.4200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10046, N'SANTG', 3, N'Santé Gourmet', N'Erling Skakkes gate 78', N'Stavern', NULL, N'4110', N'Norway', 3, CAST(N'1991-07-26T00:00:00' AS SmallDateTime), CAST(N'1991-08-23T00:00:00' AS SmallDateTime), CAST(N'1991-08-02T00:00:00' AS SmallDateTime), 16.1900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10047, N'MORGK', 4, N'Morgenstern Gesundkost', N'Heerstr. 22', N'Leipzig', NULL, N'04179', N'Germany', 1, CAST(N'1991-07-29T00:00:00' AS SmallDateTime), CAST(N'1991-08-26T00:00:00' AS SmallDateTime), CAST(N'1991-08-01T00:00:00' AS SmallDateTime), 17.7000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10048, N'HILAA', 7, N'HILARIÓN-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela', 1, CAST(N'1991-07-30T00:00:00' AS SmallDateTime), CAST(N'1991-08-27T00:00:00' AS SmallDateTime), CAST(N'1991-08-21T00:00:00' AS SmallDateTime), 61.8300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10049, N'TOMSP', 5, N'Toms Spezialitäten', N'Luisenstr. 48', N'Münster', NULL, N'44087', N'Germany', 2, CAST(N'1991-07-31T00:00:00' AS SmallDateTime), CAST(N'1991-08-28T00:00:00' AS SmallDateTime), CAST(N'1991-08-05T00:00:00' AS SmallDateTime), 4.8000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10050, N'BOLID', 4, N'Bólido Comidas preparadas', N'C/ Araquil, 67', N'Madrid', NULL, N'28023', N'Spain', 3, CAST(N'1991-08-02T00:00:00' AS SmallDateTime), CAST(N'1991-08-30T00:00:00' AS SmallDateTime), CAST(N'1991-08-08T00:00:00' AS SmallDateTime), 48.6400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10051, N'FOLKO', 5, N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', NULL, N'S-844 67', N'Sweden', 3, CAST(N'1991-08-05T00:00:00' AS SmallDateTime), CAST(N'1991-09-02T00:00:00' AS SmallDateTime), CAST(N'1991-08-23T00:00:00' AS SmallDateTime), 21.7300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10052, N'SAVEA', 7, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 2, CAST(N'1991-08-06T00:00:00' AS SmallDateTime), CAST(N'1991-09-17T00:00:00' AS SmallDateTime), CAST(N'1991-08-08T00:00:00' AS SmallDateTime), 181.5100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10053, N'WARTH', 4, N'Wartian Herkku', N'Torikatu 38', N'Oulu', NULL, N'90110', N'Finland', 1, CAST(N'1991-08-07T00:00:00' AS SmallDateTime), CAST(N'1991-09-04T00:00:00' AS SmallDateTime), CAST(N'1991-08-09T00:00:00' AS SmallDateTime), 62.6200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10054, N'RICAR', 4, N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil', 2, CAST(N'1991-08-08T00:00:00' AS SmallDateTime), CAST(N'1991-09-05T00:00:00' AS SmallDateTime), CAST(N'1991-08-13T00:00:00' AS SmallDateTime), 52.3900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10055, N'BLONP', 3, N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', NULL, N'67000', N'France', 1, CAST(N'1991-08-12T00:00:00' AS SmallDateTime), CAST(N'1991-09-09T00:00:00' AS SmallDateTime), CAST(N'1991-09-16T00:00:00' AS SmallDateTime), 135.3300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10056, N'LILAS', 4, N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela', 3, CAST(N'1991-08-13T00:00:00' AS SmallDateTime), CAST(N'1991-09-10T00:00:00' AS SmallDateTime), CAST(N'1991-08-21T00:00:00' AS SmallDateTime), 20.0900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10057, N'THECR', 4, N'The Cracker Box', N'55 Grizzly Peak Rd.', N'Butte', N'MT', N'59801', N'USA', 2, CAST(N'1991-08-14T00:00:00' AS SmallDateTime), CAST(N'1991-09-25T00:00:00' AS SmallDateTime), CAST(N'1991-08-23T00:00:00' AS SmallDateTime), 4.0300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10058, N'HUNGO', 3, N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', 1, CAST(N'1991-08-15T00:00:00' AS SmallDateTime), CAST(N'1991-09-26T00:00:00' AS SmallDateTime), CAST(N'1991-08-16T00:00:00' AS SmallDateTime), 101.6600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10059, N'LILAS', 2, N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela', 1, CAST(N'1991-08-16T00:00:00' AS SmallDateTime), CAST(N'1991-09-13T00:00:00' AS SmallDateTime), CAST(N'1991-09-20T00:00:00' AS SmallDateTime), 22.4500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10060, N'SEVES', 4, N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', NULL, N'OX15 4NB', N'UK', 2, CAST(N'1991-08-20T00:00:00' AS SmallDateTime), CAST(N'1991-09-03T00:00:00' AS SmallDateTime), CAST(N'1991-09-13T00:00:00' AS SmallDateTime), 101.9100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10061, N'EASTC', 1, N'Eastern Connection', N'35 King George', N'London', NULL, N'WX3 6FW', N'UK', 2, CAST(N'1991-08-21T00:00:00' AS SmallDateTime), CAST(N'1991-09-18T00:00:00' AS SmallDateTime), CAST(N'1991-08-23T00:00:00' AS SmallDateTime), 4.3400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10062, N'ALFKI', 5, N'Alfred''s Futterkiste', N'Obere Str. 57', N'Berlin', NULL, N'12209', N'Germany', 2, CAST(N'1991-08-22T00:00:00' AS SmallDateTime), CAST(N'1991-09-19T00:00:00' AS SmallDateTime), CAST(N'1991-08-29T00:00:00' AS SmallDateTime), 47.2200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10063, N'HUNGO', 4, N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', 2, CAST(N'1991-08-23T00:00:00' AS SmallDateTime), CAST(N'1991-09-20T00:00:00' AS SmallDateTime), CAST(N'1991-09-02T00:00:00' AS SmallDateTime), 15.3300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10064, N'VAFFE', 5, N'Vaffeljernet', N'Smagsløget 45', N'Århus', NULL, N'8200', N'Denmark', 2, CAST(N'1991-08-26T00:00:00' AS SmallDateTime), CAST(N'1991-09-23T00:00:00' AS SmallDateTime), CAST(N'1991-09-13T00:00:00' AS SmallDateTime), 10.2700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10065, N'SAVEA', 1, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 3, CAST(N'1991-08-28T00:00:00' AS SmallDateTime), CAST(N'1991-09-25T00:00:00' AS SmallDateTime), CAST(N'1991-09-03T00:00:00' AS SmallDateTime), 45.0300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10066, N'WARTH', 4, N'Wartian Herkku', N'Torikatu 38', N'Oulu', NULL, N'90110', N'Finland', 2, CAST(N'1991-08-29T00:00:00' AS SmallDateTime), CAST(N'1991-10-10T00:00:00' AS SmallDateTime), CAST(N'1991-09-02T00:00:00' AS SmallDateTime), 7.3100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10067, N'FRANR', 9, N'France restauration', N'54, rue Royale', N'Nantes', NULL, N'44000', N'France', 2, CAST(N'1991-08-30T00:00:00' AS SmallDateTime), CAST(N'1991-09-27T00:00:00' AS SmallDateTime), CAST(N'1991-09-03T00:00:00' AS SmallDateTime), 26.3100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10068, N'PICCO', 1, N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', NULL, N'5020', N'Austria', 2, CAST(N'1991-09-02T00:00:00' AS SmallDateTime), CAST(N'1991-09-30T00:00:00' AS SmallDateTime), CAST(N'1991-09-09T00:00:00' AS SmallDateTime), 19.1500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10069, N'LAMAI', 3, N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', NULL, N'31000', N'France', 2, CAST(N'1991-09-03T00:00:00' AS SmallDateTime), CAST(N'1991-10-01T00:00:00' AS SmallDateTime), CAST(N'1991-09-06T00:00:00' AS SmallDateTime), 25.4500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10070, N'LAMAI', 2, N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', NULL, N'31000', N'France', 2, CAST(N'1991-09-05T00:00:00' AS SmallDateTime), CAST(N'1991-10-03T00:00:00' AS SmallDateTime), CAST(N'1991-09-13T00:00:00' AS SmallDateTime), 47.7500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10071, N'HUNGO', 7, N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', 1, CAST(N'1991-09-06T00:00:00' AS SmallDateTime), CAST(N'1991-10-04T00:00:00' AS SmallDateTime), CAST(N'1991-09-10T00:00:00' AS SmallDateTime), 195.3100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10072, N'FOLKO', 1, N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', NULL, N'S-844 67', N'Sweden', 2, CAST(N'1991-09-09T00:00:00' AS SmallDateTime), CAST(N'1991-09-23T00:00:00' AS SmallDateTime), CAST(N'1991-09-16T00:00:00' AS SmallDateTime), 177.2400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10073, N'FOLKO', 2, N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', NULL, N'S-844 67', N'Sweden', 2, CAST(N'1991-09-10T00:00:00' AS SmallDateTime), CAST(N'1991-10-08T00:00:00' AS SmallDateTime), CAST(N'1991-09-19T00:00:00' AS SmallDateTime), 97.2500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10074, N'HUNGO', 4, N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', 1, CAST(N'1991-09-11T00:00:00' AS SmallDateTime), CAST(N'1991-10-09T00:00:00' AS SmallDateTime), CAST(N'1991-09-18T00:00:00' AS SmallDateTime), 52.3700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10075, N'CHOPS', 2, N'Chop-suey Chinese', N'Hauptstr. 31', N'Bern', NULL, N'3012', N'Switzerland', 1, CAST(N'1991-09-13T00:00:00' AS SmallDateTime), CAST(N'1991-10-11T00:00:00' AS SmallDateTime), CAST(N'1991-09-20T00:00:00' AS SmallDateTime), 29.3400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10076, N'SPECD', 2, N'Spécialités du monde', N'25, rue Lauriston', N'Paris', NULL, N'75016', N'France', 2, CAST(N'1991-09-16T00:00:00' AS SmallDateTime), CAST(N'1991-10-14T00:00:00' AS SmallDateTime), CAST(N'1991-09-23T00:00:00' AS SmallDateTime), 0.8800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10077, N'LAMAI', 2, N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', NULL, N'31000', N'France', 1, CAST(N'1991-09-17T00:00:00' AS SmallDateTime), CAST(N'1991-10-15T00:00:00' AS SmallDateTime), CAST(N'1991-09-23T00:00:00' AS SmallDateTime), 28.2100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10078, N'RICSU', 8, N'Richter Supermarkt', N'Starenweg 5', N'Genève', NULL, N'1204', N'Switzerland', 2, CAST(N'1991-09-18T00:00:00' AS SmallDateTime), CAST(N'1991-10-16T00:00:00' AS SmallDateTime), CAST(N'1991-09-27T00:00:00' AS SmallDateTime), 69.8200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10079, N'SUPRD', 3, N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', NULL, N'B-6000', N'Belgium', 3, CAST(N'1991-09-19T00:00:00' AS SmallDateTime), CAST(N'1991-10-17T00:00:00' AS SmallDateTime), CAST(N'1991-09-27T00:00:00' AS SmallDateTime), 52.1100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10080, N'BOTTM', 4, N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada', 2, CAST(N'1991-09-23T00:00:00' AS SmallDateTime), CAST(N'1991-10-21T00:00:00' AS SmallDateTime), CAST(N'1991-09-26T00:00:00' AS SmallDateTime), 35.3700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10081, N'CHOPS', 6, N'Chop-suey Chinese', N'Hauptstr. 31', N'Bern', NULL, N'3012', N'Switzerland', 2, CAST(N'1991-09-24T00:00:00' AS SmallDateTime), CAST(N'1991-10-22T00:00:00' AS SmallDateTime), CAST(N'1991-10-09T00:00:00' AS SmallDateTime), 21.1600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10082, N'GODOS', 6, N'Godos Cocina Típica', N'C/ Romero, 33', N'Sevilla', NULL, N'41101', N'Spain', 2, CAST(N'1991-09-25T00:00:00' AS SmallDateTime), CAST(N'1991-10-23T00:00:00' AS SmallDateTime), CAST(N'1991-10-04T00:00:00' AS SmallDateTime), 2.9700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10083, N'SUPRD', 5, N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', NULL, N'B-6000', N'Belgium', 1, CAST(N'1991-09-26T00:00:00' AS SmallDateTime), CAST(N'1991-10-24T00:00:00' AS SmallDateTime), CAST(N'1991-10-01T00:00:00' AS SmallDateTime), 78.8400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10084, N'LAMAI', 4, N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', NULL, N'31000', N'France', 2, CAST(N'1991-09-27T00:00:00' AS SmallDateTime), CAST(N'1991-10-25T00:00:00' AS SmallDateTime), CAST(N'1991-10-03T00:00:00' AS SmallDateTime), 77.4000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10085, N'SANTG', 8, N'Santé Gourmet', N'Erling Skakkes gate 78', N'Stavern', NULL, N'4110', N'Norway', 2, CAST(N'1991-10-01T00:00:00' AS SmallDateTime), CAST(N'1991-10-29T00:00:00' AS SmallDateTime), CAST(N'1991-10-03T00:00:00' AS SmallDateTime), 20.7800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10086, N'FRANS', 8, N'Franchi S.p.A.', N'Via Monte Bianco 34', N'Torino', NULL, N'10100', N'Italy', 2, CAST(N'1991-10-02T00:00:00' AS SmallDateTime), CAST(N'1991-10-30T00:00:00' AS SmallDateTime), CAST(N'1991-10-04T00:00:00' AS SmallDateTime), 178.1700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10087, N'MEREP', 4, N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', 1, CAST(N'1991-10-03T00:00:00' AS SmallDateTime), CAST(N'1991-10-31T00:00:00' AS SmallDateTime), CAST(N'1991-10-04T00:00:00' AS SmallDateTime), 79.6500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10088, N'LINOD', 3, N'LINO-Delicateses', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela', 2, CAST(N'1991-10-04T00:00:00' AS SmallDateTime), CAST(N'1991-11-01T00:00:00' AS SmallDateTime), CAST(N'1991-10-08T00:00:00' AS SmallDateTime), 4.7900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10089, N'GALED', 4, N'Galería del gastronómo', N'Rambla de Cataluña, 23', N'Barcelona', NULL, N'8022', N'Spain', 2, CAST(N'1991-10-07T00:00:00' AS SmallDateTime), CAST(N'1991-11-04T00:00:00' AS SmallDateTime), CAST(N'1991-10-14T00:00:00' AS SmallDateTime), 17.4000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10090, N'BSBEV', 4, N'B''s Beverages', N'Fauntleroy Circus', N'London', NULL, N'EC2 5NT', N'UK', 1, CAST(N'1991-10-09T00:00:00' AS SmallDateTime), CAST(N'1991-11-06T00:00:00' AS SmallDateTime), CAST(N'1991-10-14T00:00:00' AS SmallDateTime), 79.6400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10091, N'RICAR', 8, N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil', 2, CAST(N'1991-10-10T00:00:00' AS SmallDateTime), CAST(N'1991-11-07T00:00:00' AS SmallDateTime), CAST(N'1991-11-08T00:00:00' AS SmallDateTime), 995.3300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10092, N'ERNSH', 8, N'Ernst Handel', N'Kirchgasse 6', N'Graz', NULL, N'8010', N'Austria', 2, CAST(N'1991-10-11T00:00:00' AS SmallDateTime), CAST(N'1991-11-08T00:00:00' AS SmallDateTime), CAST(N'1991-10-21T00:00:00' AS SmallDateTime), 16.4600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10093, N'QUICK', 7, N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', NULL, N'01307', N'Germany', 2, CAST(N'1991-10-14T00:00:00' AS SmallDateTime), CAST(N'1991-11-11T00:00:00' AS SmallDateTime), CAST(N'1991-10-22T00:00:00' AS SmallDateTime), 263.6600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10094, N'RATTC', 3, N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA', 2, CAST(N'1991-10-15T00:00:00' AS SmallDateTime), CAST(N'1991-10-29T00:00:00' AS SmallDateTime), CAST(N'1991-10-17T00:00:00' AS SmallDateTime), 135.2300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10095, N'LAZYK', 3, N'Lazy K Kountry Store', N'12 Orchestra Terrace', N'Walla Walla', N'WA', N'99362', N'USA', 3, CAST(N'1991-10-17T00:00:00' AS SmallDateTime), CAST(N'1991-11-14T00:00:00' AS SmallDateTime), CAST(N'1991-10-18T00:00:00' AS SmallDateTime), 2.5800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10096, N'RICSU', 2, N'Richter Supermarkt', N'Starenweg 5', N'Genève', NULL, N'1204', N'Switzerland', 2, CAST(N'1991-10-18T00:00:00' AS SmallDateTime), CAST(N'1991-11-15T00:00:00' AS SmallDateTime), CAST(N'1991-10-28T00:00:00' AS SmallDateTime), 468.0200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10097, N'EASTC', 1, N'Eastern Connection', N'35 King George', N'London', NULL, N'WX3 6FW', N'UK', 2, CAST(N'1991-10-21T00:00:00' AS SmallDateTime), CAST(N'1991-11-18T00:00:00' AS SmallDateTime), CAST(N'1991-11-22T00:00:00' AS SmallDateTime), 390.2300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10098, N'SAVEA', 1, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 3, CAST(N'1991-10-22T00:00:00' AS SmallDateTime), CAST(N'1991-11-19T00:00:00' AS SmallDateTime), CAST(N'1991-10-28T00:00:00' AS SmallDateTime), 176.7000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10099, N'MAGAA', 8, N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', NULL, N'24100', N'Italy', 3, CAST(N'1991-10-23T00:00:00' AS SmallDateTime), CAST(N'1991-11-20T00:00:00' AS SmallDateTime), CAST(N'1991-10-30T00:00:00' AS SmallDateTime), 77.2000) GO INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10100, N'DUMON', 8, N'Du monde entier', N'67, rue des Cinquante Otages', N'Nantes', NULL, N'44000', N'France', 3, CAST(N'1991-10-25T00:00:00' AS SmallDateTime), CAST(N'1991-11-22T00:00:00' AS SmallDateTime), CAST(N'1991-11-01T00:00:00' AS SmallDateTime), 157.7600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10101, N'ANTON', 8, N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', NULL, N'05023', N'Mexico', 2, CAST(N'1991-10-28T00:00:00' AS SmallDateTime), CAST(N'1991-11-25T00:00:00' AS SmallDateTime), CAST(N'1991-11-01T00:00:00' AS SmallDateTime), 1.3400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10102, N'BLAUS', 3, N'Blauer See Delikatessen', N'Forsterstr. 57', N'Mannheim', NULL, N'68306', N'Germany', 2, CAST(N'1991-10-29T00:00:00' AS SmallDateTime), CAST(N'1991-11-26T00:00:00' AS SmallDateTime), CAST(N'1991-11-29T00:00:00' AS SmallDateTime), 116.0700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10103, N'FOLKO', 8, N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', NULL, N'S-844 67', N'Sweden', 3, CAST(N'1991-10-30T00:00:00' AS SmallDateTime), CAST(N'1991-11-27T00:00:00' AS SmallDateTime), CAST(N'1991-11-28T00:00:00' AS SmallDateTime), 88.1700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10104, N'SUPRD', 4, N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', NULL, N'B-6000', N'Belgium', 2, CAST(N'1991-10-31T00:00:00' AS SmallDateTime), CAST(N'1991-11-28T00:00:00' AS SmallDateTime), CAST(N'1991-11-05T00:00:00' AS SmallDateTime), 23.7400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10105, N'SUPRD', 4, N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', NULL, N'B-6000', N'Belgium', 3, CAST(N'1991-11-04T00:00:00' AS SmallDateTime), CAST(N'1991-12-02T00:00:00' AS SmallDateTime), CAST(N'1991-12-03T00:00:00' AS SmallDateTime), 186.3800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10106, N'PRINI', 5, N'Princesa Isabel Vinhos', N'Estrada da saúde n. 58', N'Lisboa', NULL, N'1756', N'Portugal', 2, CAST(N'1991-11-05T00:00:00' AS SmallDateTime), CAST(N'1991-12-03T00:00:00' AS SmallDateTime), CAST(N'1991-11-13T00:00:00' AS SmallDateTime), 21.7100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10107, N'WARTH', 6, N'Wartian Herkku', N'Torikatu 38', N'Oulu', NULL, N'90110', N'Finland', 1, CAST(N'1991-11-06T00:00:00' AS SmallDateTime), CAST(N'1991-12-04T00:00:00' AS SmallDateTime), CAST(N'1991-12-02T00:00:00' AS SmallDateTime), 23.7600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10108, N'FRANK', 3, N'Frankenversand', N'Berliner Platz 43', N'München', NULL, N'80805', N'Germany', 3, CAST(N'1991-11-07T00:00:00' AS SmallDateTime), CAST(N'1991-12-05T00:00:00' AS SmallDateTime), CAST(N'1991-11-08T00:00:00' AS SmallDateTime), 32.0400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10109, N'QUICK', 3, N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', NULL, N'01307', N'Germany', 2, CAST(N'1991-11-08T00:00:00' AS SmallDateTime), CAST(N'1991-12-06T00:00:00' AS SmallDateTime), CAST(N'1991-11-15T00:00:00' AS SmallDateTime), 27.0300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10110, N'GOURL', 3, N'Gourmet Lanchonetes', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil', 2, CAST(N'1991-11-12T00:00:00' AS SmallDateTime), CAST(N'1991-12-10T00:00:00' AS SmallDateTime), CAST(N'1991-11-19T00:00:00' AS SmallDateTime), 68.8900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10111, N'RATTC', 9, N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA', 2, CAST(N'1991-11-13T00:00:00' AS SmallDateTime), CAST(N'1991-12-11T00:00:00' AS SmallDateTime), CAST(N'1991-11-20T00:00:00' AS SmallDateTime), 7.1000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10112, N'DRACD', 1, N'Drachenblut Delikatessen', N'Walserweg 21', N'Aachen', NULL, N'52066', N'Germany', 2, CAST(N'1991-11-14T00:00:00' AS SmallDateTime), CAST(N'1991-11-28T00:00:00' AS SmallDateTime), CAST(N'1991-12-12T00:00:00' AS SmallDateTime), 1.4800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10113, N'FURIB', 4, N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', NULL, N'1675', N'Portugal', 3, CAST(N'1991-11-15T00:00:00' AS SmallDateTime), CAST(N'1991-12-13T00:00:00' AS SmallDateTime), CAST(N'1991-11-21T00:00:00' AS SmallDateTime), 52.6500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10114, N'GALED', 4, N'Galería del gastronómo', N'Rambla de Cataluña, 23', N'Barcelona', NULL, N'8022', N'Spain', 3, CAST(N'1991-11-18T00:00:00' AS SmallDateTime), CAST(N'1991-12-16T00:00:00' AS SmallDateTime), CAST(N'1991-11-22T00:00:00' AS SmallDateTime), 10.5500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10115, N'OCEAN', 4, N'Océano Atlántico Ltda.', N'Ing. Gustavo Moncada 8585 Piso 20-A', N'Buenos Aires', NULL, N'1010', N'Argentina', 3, CAST(N'1991-11-20T00:00:00' AS SmallDateTime), CAST(N'1991-12-18T00:00:00' AS SmallDateTime), CAST(N'1991-12-02T00:00:00' AS SmallDateTime), 24.2500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10116, N'EASTC', 4, N'Eastern Connection', N'35 King George', N'London', NULL, N'WX3 6FW', N'UK', 3, CAST(N'1991-11-21T00:00:00' AS SmallDateTime), CAST(N'1991-12-19T00:00:00' AS SmallDateTime), CAST(N'1991-11-29T00:00:00' AS SmallDateTime), 1.8000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10117, N'TRADH', 8, N'Tradição Hipermercados', N'Av. Inês de Castro, 414', N'São Paulo', N'SP', N'05634-030', N'Brazil', 2, CAST(N'1991-11-22T00:00:00' AS SmallDateTime), CAST(N'1991-12-20T00:00:00' AS SmallDateTime), CAST(N'1991-11-29T00:00:00' AS SmallDateTime), 34.9100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10118, N'WHITC', 5, N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA', 3, CAST(N'1991-11-25T00:00:00' AS SmallDateTime), CAST(N'1991-12-09T00:00:00' AS SmallDateTime), CAST(N'1991-11-28T00:00:00' AS SmallDateTime), 173.3000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10119, N'FURIB', 6, N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', NULL, N'1675', N'Portugal', 2, CAST(N'1991-11-26T00:00:00' AS SmallDateTime), CAST(N'1991-12-24T00:00:00' AS SmallDateTime), CAST(N'1991-12-03T00:00:00' AS SmallDateTime), 11.1200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10120, N'LAZYK', 6, N'Lazy K Kountry Store', N'12 Orchestra Terrace', N'Walla Walla', N'WA', N'99362', N'USA', 1, CAST(N'1991-11-28T00:00:00' AS SmallDateTime), CAST(N'1991-12-26T00:00:00' AS SmallDateTime), CAST(N'1992-01-01T00:00:00' AS SmallDateTime), 5.4200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10121, N'MEREP', 1, N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', 3, CAST(N'1991-11-29T00:00:00' AS SmallDateTime), CAST(N'1991-12-27T00:00:00' AS SmallDateTime), CAST(N'1991-12-06T00:00:00' AS SmallDateTime), 112.8300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10122, N'SANTG', 6, N'Santé Gourmet', N'Erling Skakkes gate 78', N'Stavern', NULL, N'4110', N'Norway', 1, CAST(N'1991-12-02T00:00:00' AS SmallDateTime), CAST(N'1991-12-30T00:00:00' AS SmallDateTime), CAST(N'1991-12-04T00:00:00' AS SmallDateTime), 0.5400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10123, N'VAFFE', 4, N'Vaffeljernet', N'Smagsløget 45', N'Århus', NULL, N'8200', N'Denmark', 3, CAST(N'1991-12-03T00:00:00' AS SmallDateTime), CAST(N'1991-12-31T00:00:00' AS SmallDateTime), CAST(N'1991-12-12T00:00:00' AS SmallDateTime), 66.8900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10124, N'HUNGO', 8, N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', 2, CAST(N'1991-12-04T00:00:00' AS SmallDateTime), CAST(N'1992-01-01T00:00:00' AS SmallDateTime), CAST(N'1991-12-09T00:00:00' AS SmallDateTime), 46.5300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10125, N'REGGC', 1, N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', NULL, N'42100', N'Italy', 1, CAST(N'1991-12-06T00:00:00' AS SmallDateTime), CAST(N'1992-01-03T00:00:00' AS SmallDateTime), CAST(N'1991-12-12T00:00:00' AS SmallDateTime), 11.9100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10126, N'VICTE', 4, N'Victuailles en stock', N'2, rue du Commerce', N'Lyon', NULL, N'69004', N'France', 1, CAST(N'1991-12-09T00:00:00' AS SmallDateTime), CAST(N'1992-01-06T00:00:00' AS SmallDateTime), CAST(N'1991-12-19T00:00:00' AS SmallDateTime), 23.4600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10127, N'WOLZA', 4, N'Wolski Zajazd', N'ul. Filtrowa 68', N'Warszawa', NULL, N'01-012', N'Poland', 2, CAST(N'1991-12-10T00:00:00' AS SmallDateTime), CAST(N'1992-01-07T00:00:00' AS SmallDateTime), CAST(N'1991-12-18T00:00:00' AS SmallDateTime), 15.5700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10128, N'BLONP', 3, N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', NULL, N'67000', N'France', 2, CAST(N'1991-12-11T00:00:00' AS SmallDateTime), CAST(N'1991-12-25T00:00:00' AS SmallDateTime), CAST(N'1991-12-20T00:00:00' AS SmallDateTime), 51.1400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10129, N'REGGC', 8, N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', NULL, N'42100', N'Italy', 1, CAST(N'1991-12-12T00:00:00' AS SmallDateTime), CAST(N'1992-01-09T00:00:00' AS SmallDateTime), CAST(N'1991-12-13T00:00:00' AS SmallDateTime), 27.4400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10130, N'HUNGO', 7, N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', 1, CAST(N'1991-12-16T00:00:00' AS SmallDateTime), CAST(N'1992-01-13T00:00:00' AS SmallDateTime), CAST(N'1991-12-20T00:00:00' AS SmallDateTime), 88.0500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10131, N'MEREP', 3, N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', 1, CAST(N'1991-12-17T00:00:00' AS SmallDateTime), CAST(N'1992-01-14T00:00:00' AS SmallDateTime), CAST(N'1991-12-20T00:00:00' AS SmallDateTime), 214.9200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10132, N'LETSS', 2, N'Let''s Stop N Shop', N'87 Polk St. Suite 5', N'San Francisco', N'CA', N'94117', N'USA', 2, CAST(N'1991-12-18T00:00:00' AS SmallDateTime), CAST(N'1992-01-15T00:00:00' AS SmallDateTime), CAST(N'1992-01-08T00:00:00' AS SmallDateTime), 112.3300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10133, N'REGGC', 5, N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', NULL, N'42100', N'Italy', 2, CAST(N'1991-12-19T00:00:00' AS SmallDateTime), CAST(N'1992-01-16T00:00:00' AS SmallDateTime), CAST(N'1991-12-23T00:00:00' AS SmallDateTime), 7.4800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10134, N'WARTH', 3, N'Wartian Herkku', N'Torikatu 38', N'Oulu', NULL, N'90110', N'Finland', 1, CAST(N'1991-12-20T00:00:00' AS SmallDateTime), CAST(N'1992-01-17T00:00:00' AS SmallDateTime), CAST(N'1991-12-27T00:00:00' AS SmallDateTime), 7.9300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10135, N'GROSR', 3, N'GROSELLA-Restaurante', N'5ª Ave. Los Palos Grandes', N'Caracas', N'DF', N'1081', N'Venezuela', 1, CAST(N'1991-12-24T00:00:00' AS SmallDateTime), CAST(N'1992-01-21T00:00:00' AS SmallDateTime), CAST(N'1992-01-03T00:00:00' AS SmallDateTime), 6.0100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10136, N'HUNGO', 7, N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', 1, CAST(N'1991-12-25T00:00:00' AS SmallDateTime), CAST(N'1992-01-22T00:00:00' AS SmallDateTime), CAST(N'1991-12-30T00:00:00' AS SmallDateTime), 41.4600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10137, N'ANTON', 9, N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', NULL, N'05023', N'Mexico', 1, CAST(N'1991-12-26T00:00:00' AS SmallDateTime), CAST(N'1992-01-23T00:00:00' AS SmallDateTime), CAST(N'1992-01-22T00:00:00' AS SmallDateTime), 51.5000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10138, N'DUMON', 8, N'Du monde entier', N'67, rue des Cinquante Otages', N'Nantes', NULL, N'44000', N'France', 2, CAST(N'1991-12-27T00:00:00' AS SmallDateTime), CAST(N'1992-01-24T00:00:00' AS SmallDateTime), CAST(N'1992-01-03T00:00:00' AS SmallDateTime), 0.0300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10139, N'VAFFE', 9, N'Vaffeljernet', N'Smagsløget 45', N'Århus', NULL, N'8200', N'Denmark', 2, CAST(N'1991-12-30T00:00:00' AS SmallDateTime), CAST(N'1992-01-27T00:00:00' AS SmallDateTime), CAST(N'1992-01-09T00:00:00' AS SmallDateTime), 19.8700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10140, N'LEHMS', 2, N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', NULL, N'60528', N'Germany', 3, CAST(N'1992-01-01T00:00:00' AS SmallDateTime), CAST(N'1992-01-29T00:00:00' AS SmallDateTime), CAST(N'1992-01-03T00:00:00' AS SmallDateTime), 27.4800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10141, N'FRANK', 2, N'Frankenversand', N'Berliner Platz 43', N'München', NULL, N'80805', N'Germany', 3, CAST(N'1992-01-02T00:00:00' AS SmallDateTime), CAST(N'1992-01-30T00:00:00' AS SmallDateTime), CAST(N'1992-01-09T00:00:00' AS SmallDateTime), 165.5400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10142, N'ANTON', 5, N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', NULL, N'05023', N'Mexico', 3, CAST(N'1992-01-03T00:00:00' AS SmallDateTime), CAST(N'1992-01-31T00:00:00' AS SmallDateTime), CAST(N'1992-01-08T00:00:00' AS SmallDateTime), 7.9700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10143, N'OTTIK', 4, N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', NULL, N'50739', N'Germany', 3, CAST(N'1992-01-06T00:00:00' AS SmallDateTime), CAST(N'1992-02-03T00:00:00' AS SmallDateTime), CAST(N'1992-01-14T00:00:00' AS SmallDateTime), 14.3400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10144, N'AROUT', 7, N'Around the Horn', N'Brook Farm Stratford St. Mary', N'Colchester', N'Essex', N'CO7 6JX', N'UK', 2, CAST(N'1992-01-07T00:00:00' AS SmallDateTime), CAST(N'1992-02-04T00:00:00' AS SmallDateTime), CAST(N'1992-01-13T00:00:00' AS SmallDateTime), 31.3700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10145, N'GOURL', 9, N'Gourmet Lanchonetes', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil', 2, CAST(N'1992-01-09T00:00:00' AS SmallDateTime), CAST(N'1992-02-06T00:00:00' AS SmallDateTime), CAST(N'1992-01-16T00:00:00' AS SmallDateTime), 15.3300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10146, N'FISSA', 3, N'FISSA Fabrica Inter. Salchichas S.A.', N'C/ Moralzarzal, 86', N'Madrid', NULL, N'28034', N'Spain', 2, CAST(N'1992-01-10T00:00:00' AS SmallDateTime), CAST(N'1992-02-07T00:00:00' AS SmallDateTime), CAST(N'1992-01-14T00:00:00' AS SmallDateTime), 0.7300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10147, N'FRANS', 2, N'Franchi S.p.A.', N'Via Monte Bianco 34', N'Torino', NULL, N'10100', N'Italy', 2, CAST(N'1992-01-13T00:00:00' AS SmallDateTime), CAST(N'1992-02-10T00:00:00' AS SmallDateTime), CAST(N'1992-01-21T00:00:00' AS SmallDateTime), 63.6900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10148, N'VAFFE', 1, N'Vaffeljernet', N'Smagsløget 45', N'Århus', NULL, N'8200', N'Denmark', 2, CAST(N'1992-01-14T00:00:00' AS SmallDateTime), CAST(N'1992-02-11T00:00:00' AS SmallDateTime), CAST(N'1992-01-29T00:00:00' AS SmallDateTime), 60.4900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10149, N'OLDWO', 1, N'Old World Delicatessen', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA', 3, CAST(N'1992-01-15T00:00:00' AS SmallDateTime), CAST(N'1992-02-12T00:00:00' AS SmallDateTime), CAST(N'1992-01-23T00:00:00' AS SmallDateTime), 63.6300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10150, N'SIMOB', 4, N'Simons bistro', N'Vinbæltet 34', N'København', NULL, N'1734', N'Denmark', 2, CAST(N'1992-01-17T00:00:00' AS SmallDateTime), CAST(N'1992-02-28T00:00:00' AS SmallDateTime), CAST(N'1992-01-24T00:00:00' AS SmallDateTime), 32.1600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10151, N'FAMIA', 2, N'Familia Arquibaldo', N'Rua Orós, 92', N'São Paulo', N'SP', N'05442-030', N'Brazil', 1, CAST(N'1992-01-20T00:00:00' AS SmallDateTime), CAST(N'1992-02-17T00:00:00' AS SmallDateTime), CAST(N'1992-01-24T00:00:00' AS SmallDateTime), 0.8200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10152, N'LEHMS', 2, N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', NULL, N'60528', N'Germany', 1, CAST(N'1992-01-21T00:00:00' AS SmallDateTime), CAST(N'1992-02-18T00:00:00' AS SmallDateTime), CAST(N'1992-01-24T00:00:00' AS SmallDateTime), 11.1200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10153, N'VICTE', 7, N'Victuailles en stock', N'2, rue du Commerce', N'Lyon', NULL, N'69004', N'France', 2, CAST(N'1992-01-22T00:00:00' AS SmallDateTime), CAST(N'1992-02-19T00:00:00' AS SmallDateTime), CAST(N'1992-01-27T00:00:00' AS SmallDateTime), 25.9500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10154, N'NORTS', 1, N'North/South', N'South House 300 Queensbridge', N'London', NULL, N'SW7 1RZ', N'UK', 3, CAST(N'1992-01-23T00:00:00' AS SmallDateTime), CAST(N'1992-02-20T00:00:00' AS SmallDateTime), CAST(N'1992-01-27T00:00:00' AS SmallDateTime), 21.4100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10155, N'CHOPS', 4, N'Chop-suey Chinese', N'Hauptstr. 31', N'Bern', NULL, N'3012', N'Switzerland', 2, CAST(N'1992-01-27T00:00:00' AS SmallDateTime), CAST(N'1992-02-24T00:00:00' AS SmallDateTime), CAST(N'1992-02-28T00:00:00' AS SmallDateTime), 146.7700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10156, N'RICSU', 4, N'Richter Supermarkt', N'Starenweg 5', N'Genève', NULL, N'1204', N'Switzerland', 3, CAST(N'1992-01-28T00:00:00' AS SmallDateTime), CAST(N'1992-02-25T00:00:00' AS SmallDateTime), CAST(N'1992-02-06T00:00:00' AS SmallDateTime), 67.7800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10157, N'HILAA', 4, N'HILARIÓN-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela', 2, CAST(N'1992-01-29T00:00:00' AS SmallDateTime), CAST(N'1992-02-26T00:00:00' AS SmallDateTime), CAST(N'1992-02-04T00:00:00' AS SmallDateTime), 10.2900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10158, N'BERGS', 6, N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', NULL, N'S-958 22', N'Sweden', 3, CAST(N'1992-01-30T00:00:00' AS SmallDateTime), CAST(N'1992-02-27T00:00:00' AS SmallDateTime), CAST(N'1992-02-04T00:00:00' AS SmallDateTime), 19.3500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10159, N'MAISD', 4, N'Maison Dewey', N'Rue Joseph-Bens 532', N'Bruxelles', NULL, N'B-1180', N'Belgium', 1, CAST(N'1992-01-31T00:00:00' AS SmallDateTime), CAST(N'1992-02-28T00:00:00' AS SmallDateTime), CAST(N'1992-02-04T00:00:00' AS SmallDateTime), 26.3300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10160, N'GODOS', 7, N'Godos Cocina Típica', N'C/ Romero, 33', N'Sevilla', NULL, N'41101', N'Spain', 3, CAST(N'1992-02-04T00:00:00' AS SmallDateTime), CAST(N'1992-03-03T00:00:00' AS SmallDateTime), CAST(N'1992-02-11T00:00:00' AS SmallDateTime), 4.8100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10161, N'KOENE', 3, N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', NULL, N'14776', N'Germany', 1, CAST(N'1992-02-05T00:00:00' AS SmallDateTime), CAST(N'1992-03-04T00:00:00' AS SmallDateTime), CAST(N'1992-02-14T00:00:00' AS SmallDateTime), 38.7400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10162, N'CHOPS', 6, N'Chop-suey Chinese', N'Hauptstr. 31', N'Bern', NULL, N'3012', N'Switzerland', 2, CAST(N'1992-02-06T00:00:00' AS SmallDateTime), CAST(N'1992-03-05T00:00:00' AS SmallDateTime), CAST(N'1992-02-12T00:00:00' AS SmallDateTime), 13.4000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10163, N'FRANK', 4, N'Frankenversand', N'Berliner Platz 43', N'München', NULL, N'80805', N'Germany', 2, CAST(N'1992-02-07T00:00:00' AS SmallDateTime), CAST(N'1992-03-06T00:00:00' AS SmallDateTime), CAST(N'1992-02-11T00:00:00' AS SmallDateTime), 115.7700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10164, N'GROSR', 3, N'GROSELLA-Restaurante', N'5ª Ave. Los Palos Grandes', N'Caracas', N'DF', N'1081', N'Venezuela', 3, CAST(N'1992-02-10T00:00:00' AS SmallDateTime), CAST(N'1992-03-09T00:00:00' AS SmallDateTime), CAST(N'1992-02-20T00:00:00' AS SmallDateTime), 3.3300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10165, N'LINOD', 4, N'LINO-Delicateses', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela', 1, CAST(N'1992-02-12T00:00:00' AS SmallDateTime), CAST(N'1992-03-11T00:00:00' AS SmallDateTime), CAST(N'1992-02-14T00:00:00' AS SmallDateTime), 84.4000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10166, N'ISLAT', 8, N'Island Trading', N'Garden House Crowther Way', N'Hedge End', N'Lancashire', N'LA9 PX8', N'UK', 1, CAST(N'1992-02-13T00:00:00' AS SmallDateTime), CAST(N'1992-03-12T00:00:00' AS SmallDateTime), CAST(N'1992-02-17T00:00:00' AS SmallDateTime), 54.8900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10167, N'SAVEA', 3, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 3, CAST(N'1992-02-14T00:00:00' AS SmallDateTime), CAST(N'1992-03-13T00:00:00' AS SmallDateTime), CAST(N'1992-02-18T00:00:00' AS SmallDateTime), 212.4000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10168, N'SAVEA', 6, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 2, CAST(N'1992-02-17T00:00:00' AS SmallDateTime), CAST(N'1992-03-16T00:00:00' AS SmallDateTime), CAST(N'1992-02-19T00:00:00' AS SmallDateTime), 118.2500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10169, N'RATTC', 8, N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA', 3, CAST(N'1992-02-18T00:00:00' AS SmallDateTime), CAST(N'1992-03-17T00:00:00' AS SmallDateTime), CAST(N'1992-02-21T00:00:00' AS SmallDateTime), 111.0600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10170, N'REGGC', 1, N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', NULL, N'42100', N'Italy', 2, CAST(N'1992-02-20T00:00:00' AS SmallDateTime), CAST(N'1992-03-19T00:00:00' AS SmallDateTime), CAST(N'1992-03-06T00:00:00' AS SmallDateTime), 1.0900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10171, N'BERGS', 6, N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', NULL, N'S-958 22', N'Sweden', 3, CAST(N'1992-02-20T00:00:00' AS SmallDateTime), CAST(N'1992-03-19T00:00:00' AS SmallDateTime), CAST(N'1992-02-28T00:00:00' AS SmallDateTime), 19.7500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10172, N'ISLAT', 1, N'Island Trading', N'Garden House Crowther Way', N'Hedge End', N'Lancashire', N'LA9 PX8', N'UK', 1, CAST(N'1992-02-21T00:00:00' AS SmallDateTime), CAST(N'1992-03-20T00:00:00' AS SmallDateTime), CAST(N'1992-02-25T00:00:00' AS SmallDateTime), 8.2100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10173, N'FOLIG', 4, N'Folies gourmandes', N'184, chaussée de Tournai', N'Lille', NULL, N'59000', N'France', 3, CAST(N'1992-02-24T00:00:00' AS SmallDateTime), CAST(N'1992-03-23T00:00:00' AS SmallDateTime), CAST(N'1992-03-02T00:00:00' AS SmallDateTime), 37.3600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10174, N'MEREP', 1, N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', 1, CAST(N'1992-02-25T00:00:00' AS SmallDateTime), CAST(N'1992-03-24T00:00:00' AS SmallDateTime), CAST(N'1992-03-09T00:00:00' AS SmallDateTime), 45.4400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10175, N'SEVES', 8, N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', NULL, N'OX15 4NB', N'UK', 3, CAST(N'1992-02-26T00:00:00' AS SmallDateTime), CAST(N'1992-03-25T00:00:00' AS SmallDateTime), CAST(N'1992-03-06T00:00:00' AS SmallDateTime), 138.4400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10176, N'BOTTM', 7, N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada', 2, CAST(N'1992-02-27T00:00:00' AS SmallDateTime), CAST(N'1992-03-26T00:00:00' AS SmallDateTime), CAST(N'1992-03-06T00:00:00' AS SmallDateTime), 4.9000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10177, N'LEHMS', 2, N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', NULL, N'60528', N'Germany', 1, CAST(N'1992-02-28T00:00:00' AS SmallDateTime), CAST(N'1992-04-10T00:00:00' AS SmallDateTime), CAST(N'1992-03-09T00:00:00' AS SmallDateTime), 3.0000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10178, N'OTTIK', 2, N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', NULL, N'50739', N'Germany', 1, CAST(N'1992-03-02T00:00:00' AS SmallDateTime), CAST(N'1992-03-16T00:00:00' AS SmallDateTime), CAST(N'1992-03-09T00:00:00' AS SmallDateTime), 61.6900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10179, N'FISSA', 6, N'FISSA Fabrica Inter. Salchichas S.A.', N'C/ Moralzarzal, 86', N'Madrid', NULL, N'28034', N'Spain', 2, CAST(N'1992-03-03T00:00:00' AS SmallDateTime), CAST(N'1992-03-31T00:00:00' AS SmallDateTime), CAST(N'1992-03-09T00:00:00' AS SmallDateTime), 31.7700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10180, N'HANAR', 8, N'Hanari Carnes', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil', 3, CAST(N'1992-03-04T00:00:00' AS SmallDateTime), CAST(N'1992-04-01T00:00:00' AS SmallDateTime), CAST(N'1992-03-09T00:00:00' AS SmallDateTime), 18.1900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10181, N'FURIB', 4, N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', NULL, N'1675', N'Portugal', 1, CAST(N'1992-03-04T00:00:00' AS SmallDateTime), CAST(N'1992-04-01T00:00:00' AS SmallDateTime), CAST(N'1992-03-13T00:00:00' AS SmallDateTime), 124.2400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10182, N'DUMON', 1, N'Du monde entier', N'67, rue des Cinquante Otages', N'Nantes', NULL, N'44000', N'France', 1, CAST(N'1992-03-05T00:00:00' AS SmallDateTime), CAST(N'1992-04-16T00:00:00' AS SmallDateTime), CAST(N'1992-03-09T00:00:00' AS SmallDateTime), 20.0600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10183, N'BOTTM', 2, N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada', 2, CAST(N'1992-03-06T00:00:00' AS SmallDateTime), CAST(N'1992-04-03T00:00:00' AS SmallDateTime), CAST(N'1992-03-17T00:00:00' AS SmallDateTime), 16.1600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10184, N'FISSA', 4, N'FISSA Fabrica Inter. Salchichas S.A.', N'C/ Moralzarzal, 86', N'Madrid', NULL, N'28034', N'Spain', 3, CAST(N'1992-03-09T00:00:00' AS SmallDateTime), CAST(N'1992-04-06T00:00:00' AS SmallDateTime), CAST(N'1992-03-26T00:00:00' AS SmallDateTime), 31.7400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10185, N'FAMIA', 3, N'Familia Arquibaldo', N'Rua Orós, 92', N'São Paulo', N'SP', N'05442-030', N'Brazil', 1, CAST(N'1992-03-10T00:00:00' AS SmallDateTime), CAST(N'1992-04-07T00:00:00' AS SmallDateTime), CAST(N'1992-04-10T00:00:00' AS SmallDateTime), 34.4500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10186, N'GODOS', 4, N'Godos Cocina Típica', N'C/ Romero, 33', N'Sevilla', NULL, N'41101', N'Spain', 1, CAST(N'1992-03-11T00:00:00' AS SmallDateTime), CAST(N'1992-04-08T00:00:00' AS SmallDateTime), CAST(N'1992-03-13T00:00:00' AS SmallDateTime), 20.2000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10187, N'VAFFE', 2, N'Vaffeljernet', N'Smagsløget 45', N'Århus', NULL, N'8200', N'Denmark', 1, CAST(N'1992-03-12T00:00:00' AS SmallDateTime), CAST(N'1992-04-09T00:00:00' AS SmallDateTime), CAST(N'1992-03-17T00:00:00' AS SmallDateTime), 52.3400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10188, N'WARTH', 1, N'Wartian Herkku', N'Torikatu 38', N'Oulu', NULL, N'90110', N'Finland', 3, CAST(N'1992-03-13T00:00:00' AS SmallDateTime), CAST(N'1992-04-10T00:00:00' AS SmallDateTime), CAST(N'1992-03-19T00:00:00' AS SmallDateTime), 0.5000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10189, N'HILAA', 2, N'HILARIÓN-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela', 2, CAST(N'1992-03-16T00:00:00' AS SmallDateTime), CAST(N'1992-04-13T00:00:00' AS SmallDateTime), CAST(N'1992-03-20T00:00:00' AS SmallDateTime), 11.2600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10190, N'BONAP', 8, N'Bon app''', N'12, rue des Bouchers', N'Marseille', NULL, N'13008', N'France', 1, CAST(N'1992-03-17T00:00:00' AS SmallDateTime), CAST(N'1992-04-14T00:00:00' AS SmallDateTime), CAST(N'1992-03-20T00:00:00' AS SmallDateTime), 1.0000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10191, N'MAGAA', 4, N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', NULL, N'24100', N'Italy', 2, CAST(N'1992-03-17T00:00:00' AS SmallDateTime), CAST(N'1992-04-14T00:00:00' AS SmallDateTime), CAST(N'1992-03-19T00:00:00' AS SmallDateTime), 17.9700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10192, N'DRACD', 7, N'Drachenblut Delikatessen', N'Walserweg 21', N'Aachen', NULL, N'52066', N'Germany', 2, CAST(N'1992-03-18T00:00:00' AS SmallDateTime), CAST(N'1992-04-15T00:00:00' AS SmallDateTime), CAST(N'1992-04-03T00:00:00' AS SmallDateTime), 26.6900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10193, N'SAVEA', 1, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 2, CAST(N'1992-03-19T00:00:00' AS SmallDateTime), CAST(N'1992-04-16T00:00:00' AS SmallDateTime), CAST(N'1992-04-07T00:00:00' AS SmallDateTime), 6.1300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10194, N'PICCO', 2, N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', NULL, N'5020', N'Austria', 2, CAST(N'1992-03-20T00:00:00' AS SmallDateTime), CAST(N'1992-04-03T00:00:00' AS SmallDateTime), CAST(N'1992-03-23T00:00:00' AS SmallDateTime), 37.4600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10195, N'QUEDE', 4, N'Que Delícia', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil', 3, CAST(N'1992-03-23T00:00:00' AS SmallDateTime), CAST(N'1992-04-20T00:00:00' AS SmallDateTime), CAST(N'1992-03-27T00:00:00' AS SmallDateTime), 78.3600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10196, N'LILAS', 2, N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela', 1, CAST(N'1992-03-24T00:00:00' AS SmallDateTime), CAST(N'1992-04-21T00:00:00' AS SmallDateTime), CAST(N'1992-04-22T00:00:00' AS SmallDateTime), 411.0600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10197, N'LEHMS', 5, N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', NULL, N'60528', N'Germany', 3, CAST(N'1992-03-25T00:00:00' AS SmallDateTime), CAST(N'1992-04-22T00:00:00' AS SmallDateTime), CAST(N'1992-03-27T00:00:00' AS SmallDateTime), 36.7500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10198, N'OCEAN', 7, N'Océano Atlántico Ltda.', N'Ing. Gustavo Moncada 8585 Piso 20-A', N'Buenos Aires', NULL, N'1010', N'Argentina', 2, CAST(N'1992-03-26T00:00:00' AS SmallDateTime), CAST(N'1992-04-23T00:00:00' AS SmallDateTime), CAST(N'1992-03-30T00:00:00' AS SmallDateTime), 31.1400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10199, N'SAVEA', 1, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 3, CAST(N'1992-03-27T00:00:00' AS SmallDateTime), CAST(N'1992-04-10T00:00:00' AS SmallDateTime), CAST(N'1992-03-30T00:00:00' AS SmallDateTime), 50.1900) GO INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10200, N'BOLID', 8, N'Bólido Comidas preparadas', N'C/ Araquil, 67', N'Madrid', NULL, N'28023', N'Spain', 3, CAST(N'1992-03-30T00:00:00' AS SmallDateTime), CAST(N'1992-04-27T00:00:00' AS SmallDateTime), CAST(N'1992-04-29T00:00:00' AS SmallDateTime), 25.0800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10201, N'SIMOB', 3, N'Simons bistro', N'Vinbæltet 34', N'København', NULL, N'1734', N'Denmark', 3, CAST(N'1992-03-30T00:00:00' AS SmallDateTime), CAST(N'1992-05-11T00:00:00' AS SmallDateTime), CAST(N'1992-04-02T00:00:00' AS SmallDateTime), 11.7000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10202, N'FRANK', 4, N'Frankenversand', N'Berliner Platz 43', N'München', NULL, N'80805', N'Germany', 3, CAST(N'1992-03-31T00:00:00' AS SmallDateTime), CAST(N'1992-04-28T00:00:00' AS SmallDateTime), CAST(N'1992-04-17T00:00:00' AS SmallDateTime), 173.0700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10203, N'DUMON', 8, N'Du monde entier', N'67, rue des Cinquante Otages', N'Nantes', NULL, N'44000', N'France', 2, CAST(N'1992-04-01T00:00:00' AS SmallDateTime), CAST(N'1992-05-13T00:00:00' AS SmallDateTime), CAST(N'1992-04-03T00:00:00' AS SmallDateTime), 38.0600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10204, N'SUPRD', 4, N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', NULL, N'B-6000', N'Belgium', 1, CAST(N'1992-04-02T00:00:00' AS SmallDateTime), CAST(N'1992-04-30T00:00:00' AS SmallDateTime), CAST(N'1992-04-06T00:00:00' AS SmallDateTime), 0.0500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10205, N'HUNGO', 9, N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', 2, CAST(N'1992-04-03T00:00:00' AS SmallDateTime), CAST(N'1992-05-01T00:00:00' AS SmallDateTime), CAST(N'1992-04-14T00:00:00' AS SmallDateTime), 160.2500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10206, N'SAVEA', 8, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 2, CAST(N'1992-04-06T00:00:00' AS SmallDateTime), CAST(N'1992-05-04T00:00:00' AS SmallDateTime), CAST(N'1992-04-09T00:00:00' AS SmallDateTime), 40.0800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10207, N'TOMSP', 3, N'Toms Spezialitäten', N'Luisenstr. 48', N'Münster', NULL, N'44087', N'Germany', 2, CAST(N'1992-04-07T00:00:00' AS SmallDateTime), CAST(N'1992-05-05T00:00:00' AS SmallDateTime), CAST(N'1992-04-16T00:00:00' AS SmallDateTime), 20.8200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10208, N'RICSU', 8, N'Richter Supermarkt', N'Starenweg 5', N'Genève', NULL, N'1204', N'Switzerland', 2, CAST(N'1992-04-08T00:00:00' AS SmallDateTime), CAST(N'1992-05-06T00:00:00' AS SmallDateTime), CAST(N'1992-04-22T00:00:00' AS SmallDateTime), 26.2000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10209, N'REGGC', 5, N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', NULL, N'42100', N'Italy', 2, CAST(N'1992-04-09T00:00:00' AS SmallDateTime), CAST(N'1992-05-07T00:00:00' AS SmallDateTime), CAST(N'1992-05-06T00:00:00' AS SmallDateTime), 17.7700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10210, N'FOLKO', 1, N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', NULL, N'S-844 67', N'Sweden', 2, CAST(N'1992-04-10T00:00:00' AS SmallDateTime), CAST(N'1992-05-08T00:00:00' AS SmallDateTime), CAST(N'1992-04-20T00:00:00' AS SmallDateTime), 9.4900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10211, N'MAISD', 8, N'Maison Dewey', N'Rue Joseph-Bens 532', N'Bruxelles', NULL, N'B-1180', N'Belgium', 3, CAST(N'1992-04-10T00:00:00' AS SmallDateTime), CAST(N'1992-05-08T00:00:00' AS SmallDateTime), CAST(N'1992-04-15T00:00:00' AS SmallDateTime), 31.3500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10212, N'BONAP', 2, N'Bon app''', N'12, rue des Bouchers', N'Marseille', NULL, N'13008', N'France', 2, CAST(N'1992-04-13T00:00:00' AS SmallDateTime), CAST(N'1992-05-11T00:00:00' AS SmallDateTime), CAST(N'1992-04-22T00:00:00' AS SmallDateTime), 9.9100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10213, N'BERGS', 7, N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', NULL, N'S-958 22', N'Sweden', 3, CAST(N'1992-04-14T00:00:00' AS SmallDateTime), CAST(N'1992-05-12T00:00:00' AS SmallDateTime), CAST(N'1992-04-22T00:00:00' AS SmallDateTime), 3.7600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10214, N'MEREP', 8, N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', 2, CAST(N'1992-04-15T00:00:00' AS SmallDateTime), CAST(N'1992-05-13T00:00:00' AS SmallDateTime), CAST(N'1992-04-17T00:00:00' AS SmallDateTime), 78.7700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10215, N'WANDK', 8, N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', NULL, N'70563', N'Germany', 1, CAST(N'1992-04-16T00:00:00' AS SmallDateTime), CAST(N'1992-05-14T00:00:00' AS SmallDateTime), CAST(N'1992-05-11T00:00:00' AS SmallDateTime), 13.2200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10216, N'RATTC', 8, N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA', 3, CAST(N'1992-04-17T00:00:00' AS SmallDateTime), CAST(N'1992-05-15T00:00:00' AS SmallDateTime), CAST(N'1992-04-23T00:00:00' AS SmallDateTime), 28.8300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10217, N'MAISD', 1, N'Maison Dewey', N'Rue Joseph-Bens 532', N'Bruxelles', NULL, N'B-1180', N'Belgium', 3, CAST(N'1992-04-20T00:00:00' AS SmallDateTime), CAST(N'1992-06-01T00:00:00' AS SmallDateTime), CAST(N'1992-05-08T00:00:00' AS SmallDateTime), 0.6200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10218, N'ANTON', 8, N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', NULL, N'05023', N'Mexico', 1, CAST(N'1992-04-21T00:00:00' AS SmallDateTime), CAST(N'1992-05-19T00:00:00' AS SmallDateTime), CAST(N'1992-05-25T00:00:00' AS SmallDateTime), 77.5500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10219, N'SEVES', 3, N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', NULL, N'OX15 4NB', N'UK', 2, CAST(N'1992-04-22T00:00:00' AS SmallDateTime), CAST(N'1992-06-03T00:00:00' AS SmallDateTime), CAST(N'1992-04-24T00:00:00' AS SmallDateTime), 72.0300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10220, N'EASTC', 4, N'Eastern Connection', N'35 King George', N'London', NULL, N'WX3 6FW', N'UK', 2, CAST(N'1992-04-23T00:00:00' AS SmallDateTime), CAST(N'1992-05-21T00:00:00' AS SmallDateTime), CAST(N'1992-04-30T00:00:00' AS SmallDateTime), 33.1900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10221, N'MAGAA', 3, N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', NULL, N'24100', N'Italy', 1, CAST(N'1992-04-23T00:00:00' AS SmallDateTime), CAST(N'1992-05-21T00:00:00' AS SmallDateTime), CAST(N'1992-05-01T00:00:00' AS SmallDateTime), 8.0100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10222, N'FRANK', 4, N'Frankenversand', N'Berliner Platz 43', N'München', NULL, N'80805', N'Germany', 3, CAST(N'1992-04-24T00:00:00' AS SmallDateTime), CAST(N'1992-05-22T00:00:00' AS SmallDateTime), CAST(N'1992-05-01T00:00:00' AS SmallDateTime), 137.1300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10223, N'SPECD', 4, N'Spécialités du monde', N'25, rue Lauriston', N'Paris', NULL, N'75016', N'France', 3, CAST(N'1992-04-27T00:00:00' AS SmallDateTime), CAST(N'1992-05-25T00:00:00' AS SmallDateTime), CAST(N'1992-05-01T00:00:00' AS SmallDateTime), 16.6200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10224, N'RICAR', 1, N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil', 2, CAST(N'1992-04-28T00:00:00' AS SmallDateTime), CAST(N'1992-05-26T00:00:00' AS SmallDateTime), CAST(N'1992-05-07T00:00:00' AS SmallDateTime), 24.5800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10225, N'SAVEA', 3, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 3, CAST(N'1992-04-29T00:00:00' AS SmallDateTime), CAST(N'1992-05-27T00:00:00' AS SmallDateTime), CAST(N'1992-05-04T00:00:00' AS SmallDateTime), 147.7300) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10226, N'SAVEA', 3, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 3, CAST(N'1992-04-30T00:00:00' AS SmallDateTime), CAST(N'1992-05-28T00:00:00' AS SmallDateTime), CAST(N'1992-05-11T00:00:00' AS SmallDateTime), 358.7500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10227, N'TRADH', 6, N'Tradição Hipermercados', N'Av. Inês de Castro, 414', N'São Paulo', N'SP', N'05634-030', N'Brazil', 2, CAST(N'1992-05-01T00:00:00' AS SmallDateTime), CAST(N'1992-06-12T00:00:00' AS SmallDateTime), CAST(N'1992-06-04T00:00:00' AS SmallDateTime), 2.1500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10228, N'CENTC', 2, N'Centro comercial Moctezuma', N'Sierras de Granada 9993', N'México D.F.', NULL, N'05022', N'Mexico', 2, CAST(N'1992-05-04T00:00:00' AS SmallDateTime), CAST(N'1992-06-01T00:00:00' AS SmallDateTime), CAST(N'1992-05-07T00:00:00' AS SmallDateTime), 36.1600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10229, N'LAZYK', 7, N'Lazy K Kountry Store', N'12 Orchestra Terrace', N'Walla Walla', N'WA', N'99362', N'USA', 1, CAST(N'1992-05-05T00:00:00' AS SmallDateTime), CAST(N'1992-06-02T00:00:00' AS SmallDateTime), CAST(N'1992-05-07T00:00:00' AS SmallDateTime), 8.8100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10230, N'BOTTM', 2, N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada', 2, CAST(N'1992-05-06T00:00:00' AS SmallDateTime), CAST(N'1992-06-03T00:00:00' AS SmallDateTime), CAST(N'1992-05-14T00:00:00' AS SmallDateTime), 151.1400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10231, N'BOTTM', 6, N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada', 3, CAST(N'1992-05-06T00:00:00' AS SmallDateTime), CAST(N'1992-06-03T00:00:00' AS SmallDateTime), CAST(N'1992-05-13T00:00:00' AS SmallDateTime), 21.3000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10232, N'DRACD', 4, N'Drachenblut Delikatessen', N'Walserweg 21', N'Aachen', NULL, N'52066', N'Germany', 2, CAST(N'1992-05-07T00:00:00' AS SmallDateTime), CAST(N'1992-06-04T00:00:00' AS SmallDateTime), CAST(N'1992-05-12T00:00:00' AS SmallDateTime), 12.4800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10233, N'BERGS', 1, N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', NULL, N'S-958 22', N'Sweden', 3, CAST(N'1992-05-08T00:00:00' AS SmallDateTime), CAST(N'1992-06-05T00:00:00' AS SmallDateTime), CAST(N'1992-05-15T00:00:00' AS SmallDateTime), 39.4700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10234, N'GROSR', 4, N'GROSELLA-Restaurante', N'5ª Ave. Los Palos Grandes', N'Caracas', N'DF', N'1081', N'Venezuela', 2, CAST(N'1992-05-11T00:00:00' AS SmallDateTime), CAST(N'1992-06-08T00:00:00' AS SmallDateTime), CAST(N'1992-05-21T00:00:00' AS SmallDateTime), 30.3400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10235, N'VICTE', 7, N'Victuailles en stock', N'2, rue du Commerce', N'Lyon', NULL, N'69004', N'France', 1, CAST(N'1992-05-12T00:00:00' AS SmallDateTime), CAST(N'1992-06-09T00:00:00' AS SmallDateTime), CAST(N'1992-05-20T00:00:00' AS SmallDateTime), 7.5800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10236, N'SEVES', 6, N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', NULL, N'OX15 4NB', N'UK', 3, CAST(N'1992-05-13T00:00:00' AS SmallDateTime), CAST(N'1992-06-10T00:00:00' AS SmallDateTime), CAST(N'1992-05-22T00:00:00' AS SmallDateTime), 54.2500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10237, N'WANDK', 7, N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', NULL, N'70563', N'Germany', 1, CAST(N'1992-05-14T00:00:00' AS SmallDateTime), CAST(N'1992-05-28T00:00:00' AS SmallDateTime), CAST(N'1992-05-22T00:00:00' AS SmallDateTime), 47.0900) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10238, N'BSBEV', 1, N'B''s Beverages', N'Fauntleroy Circus', N'London', NULL, N'EC2 5NT', N'UK', 1, CAST(N'1992-05-15T00:00:00' AS SmallDateTime), CAST(N'1992-06-12T00:00:00' AS SmallDateTime), CAST(N'1992-05-20T00:00:00' AS SmallDateTime), 7.2400) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10239, N'FRANS', 3, N'Franchi S.p.A.', N'Via Monte Bianco 34', N'Torino', NULL, N'10100', N'Italy', 1, CAST(N'1992-05-18T00:00:00' AS SmallDateTime), CAST(N'1992-06-15T00:00:00' AS SmallDateTime), CAST(N'1992-05-21T00:00:00' AS SmallDateTime), 45.1700) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10240, N'BOTTM', 3, N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada', 1, CAST(N'1992-05-19T00:00:00' AS SmallDateTime), CAST(N'1992-06-16T00:00:00' AS SmallDateTime), CAST(N'1992-05-22T00:00:00' AS SmallDateTime), 15.1600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10241, N'BOLID', 7, N'Bólido Comidas preparadas', N'C/ Araquil, 67', N'Madrid', NULL, N'28023', N'Spain', 2, CAST(N'1992-05-19T00:00:00' AS SmallDateTime), CAST(N'1992-06-16T00:00:00' AS SmallDateTime), CAST(N'1992-05-27T00:00:00' AS SmallDateTime), 89.1600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10242, N'LILAS', 6, N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela', 1, CAST(N'1992-05-20T00:00:00' AS SmallDateTime), CAST(N'1992-06-17T00:00:00' AS SmallDateTime), CAST(N'1992-05-22T00:00:00' AS SmallDateTime), 55.9500) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10243, N'CONSH', 2, N'Consolidated Holdings', N'Berkeley Gardens 12 Brewery', N'London', NULL, N'WX1 6LT', N'UK', 1, CAST(N'1992-05-21T00:00:00' AS SmallDateTime), CAST(N'1992-06-18T00:00:00' AS SmallDateTime), CAST(N'1992-05-29T00:00:00' AS SmallDateTime), 11.4600) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10244, N'RICAR', 2, N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil', 2, CAST(N'1992-05-22T00:00:00' AS SmallDateTime), CAST(N'1992-06-05T00:00:00' AS SmallDateTime), CAST(N'1992-05-28T00:00:00' AS SmallDateTime), 14.7800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10245, N'HUNGO', 8, N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', NULL, N'Ireland', 2, CAST(N'1992-05-25T00:00:00' AS SmallDateTime), CAST(N'1992-06-22T00:00:00' AS SmallDateTime), CAST(N'1992-06-03T00:00:00' AS SmallDateTime), 46.1800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10246, N'GOURL', 7, N'Gourmet Lanchonetes', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil', 1, CAST(N'1992-05-26T00:00:00' AS SmallDateTime), CAST(N'1992-06-23T00:00:00' AS SmallDateTime), CAST(N'1992-06-03T00:00:00' AS SmallDateTime), 13.8000) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10247, N'SAVEA', 4, N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', 1, CAST(N'1992-05-27T00:00:00' AS SmallDateTime), CAST(N'1992-06-24T00:00:00' AS SmallDateTime), CAST(N'1992-06-02T00:00:00' AS SmallDateTime), 109.2200) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10248, N'VINET', 5, N'Vins et alcools Chevalier', N'59 rue de l''Abbaye', N'Reims', NULL, N'51100', N'France', 3, CAST(N'1992-05-28T00:00:00' AS SmallDateTime), CAST(N'1992-06-25T00:00:00' AS SmallDateTime), CAST(N'1992-06-09T00:00:00' AS SmallDateTime), 32.3800) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10249, N'TOMSP', 6, N'Toms Spezialitäten', N'Luisenstr. 48', N'Münster', NULL, N'44087', N'Germany', 1, CAST(N'1992-05-29T00:00:00' AS SmallDateTime), CAST(N'1992-07-10T00:00:00' AS SmallDateTime), CAST(N'1992-06-03T00:00:00' AS SmallDateTime), 11.6100) INSERT [dbo].[tblOrders] ([OrderID], [CustomerID], [EmployeeID], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry], [ShipVia], [OrderDate], [RequiredDate], [ShippedDate], [Freight]) VALUES (10250, N'HANAR', 4, N'Hanari Carnes', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil', 2, CAST(N'1992-06-01T00:00:00' AS SmallDateTime), CAST(N'1992-06-29T00:00:00' AS SmallDateTime), CAST(N'1992-06-05T00:00:00' AS SmallDateTime), 65.8300) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (1, 1, 1, N'Chai', N'Dharamsala Tea', N'10 boxes x 20 bags', 18.0000, 39, 0, 10, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (2, 1, 1, N'Chang', N'Tibetan Barley Beer', N'24 - 12 oz bottles', 19.0000, 17, 40, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (3, 1, 2, N'Aniseed Syrup', N'Licorice Syrup', N'12 - 550 ml bottles', 10.0000, 13, 70, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (4, 2, 2, N'Chef Anton''s Cajun Seasoning', N'Chef Anton''s Cajun Seasoning', N'48 - 6 oz jars', 22.0000, 53, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (5, 2, 2, N'Chef Anton''s Gumbo Mix', N'Chef Anton''s Gumbo Mix', N'36 boxes', 21.3500, 0, 0, 0, 1) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (6, 3, 2, N'Grandma''s Boysenberry Spread', N'Grandma''s Boysenberry Spread', N'12 - 8 oz jars', 25.0000, 120, 0, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (7, 3, 7, N'Uncle Bob''s Organic Dried Pears', N'Uncle Bob''s Organic Dried Pears', N'12 - 1 lb pkgs.', 30.0000, 15, 0, 10, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (8, 3, 2, N'Northwoods Cranberry Sauce', N'Northwoods Cranberry Sauce', N'12 - 12 oz jars', 40.0000, 6, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (9, 4, 6, N'Mishi Kobe Niku', N'Mishi Kobe Beef', N'18 - 500 g pkgs.', 97.0000, 29, 0, 0, 1) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (10, 4, 8, N'Ikura', N'Fish Roe', N'12 - 200 ml jars', 31.0000, 31, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (11, 5, 4, N'Queso Cabrales', N'Cabrales Cheese', N'1 kg pkg.', 21.0000, 22, 30, 30, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (12, 5, 4, N'Queso Manchego La Pastora', N'Manchego La Pastora Cheese', N'10 - 500 g pkgs.', 38.0000, 86, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (13, 6, 8, N'Konbu', N'Kelp Seaweed', N'2 kg box', 6.0000, 24, 0, 5, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (14, 6, 7, N'Tofu', N'Bean Curd', N'40 - 100 g pkgs.', 23.2500, 35, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (15, 6, 2, N'Genen Shouyu', N'Lite Sodium Soy Sauce', N'24 - 250 ml bottles', 15.5000, 39, 0, 5, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (16, 7, 3, N'Pavlova', N'Pavlova Meringue Dessert', N'32 - 500 g boxes', 17.4500, 29, 0, 10, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (17, 7, 6, N'Alice Mutton', N'Alice Springs Lamb', N'20 - 1 kg tins', 39.0000, 0, 0, 0, 1) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (18, 7, 8, N'Carnarvon Tigers', N'Carnarvon Tiger Prawns', N'16 kg pkg.', 62.5000, 42, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (19, 8, 3, N'Teatime Chocolate Biscuits', N'Teatime Chocolate Biscuits', N'10 boxes x 12 pieces', 9.2000, 25, 0, 5, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (20, 8, 3, N'Sir Rodney''s Marmalade', N'Sir Rodney''s Marmalade', N'30 gift boxes', 81.0000, 40, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (21, 8, 3, N'Sir Rodney''s Scones', N'Sir Rodney''s Scones', N'24 pkgs. x 4 pieces', 10.0000, 3, 40, 5, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (22, 9, 5, N'Gustaf''s Knäckebröd', N'Gustaf''s Rye Crisp Bread', N'24 - 500 g pkgs.', 21.0000, 104, 0, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (23, 9, 5, N'Tunnbröd', N'Thin Bread', N'12 - 250 g pkgs.', 9.0000, 61, 0, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (24, 10, 1, N'Guaraná Fantástica', N'Guaraná Fantástica Soft Drink', N'12 - 355 ml cans', 4.5000, 20, 0, 0, 1) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (25, 11, 3, N'NuNuCa Nuß-Nougat-Creme', N'NuNuCa Chocolate-Nut Spread', N'20 - 450 g glasses', 14.0000, 76, 0, 30, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (26, 11, 3, N'Gumbär Gummibärchen', N'Gumbär Gummy Bears', N'100 - 250 g bags', 31.2300, 15, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (27, 11, 3, N'Schoggi Schokolade', N'Schoggi Chocolate', N'100 - 100 g pieces', 43.9000, 49, 0, 30, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (28, 12, 7, N'Rössle Sauerkraut', N'Rössle Sauerkraut', N'25 - 825 g cans', 45.6000, 26, 0, 0, 1) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (29, 12, 6, N'Thüringer Rostbratwurst', N'Thüringer Sausage', N'50 bags x 30 sausgs.', 123.7900, 0, 0, 0, 1) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (30, 13, 8, N'Nord-Ost Matjeshering', N'Nord-Ost White Herring', N'10 - 200 g glasses', 25.8900, 10, 0, 15, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (31, 14, 4, N'Gorgonzola Telino', N'Gorgonzola Telino', N'12 - 100 g pkgs', 12.5000, 0, 70, 20, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (32, 14, 4, N'Mascarpone Fabioli', N'Mascarpone Fabioli', N'24 - 200 g pkgs.', 32.0000, 9, 40, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (33, 15, 4, N'Geitost', N'Goat Cheese', N'500 g', 2.5000, 112, 0, 20, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (34, 15, 1, N'Sasquatch Ale', N'Sasquatch Ale', N'24 - 12 oz bottles', 14.0000, 111, 0, 15, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (35, 6, 1, N'Steeleye Stout', N'Steeleye Stout', N'24 - 12 oz bottles', 18.0000, 20, 0, 15, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (36, 7, 8, N'Inlagd Sill', N'Pickled Herring', N'24 - 250 g jars', 19.0000, 112, 0, 20, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (37, 7, 8, N'Gravad lax', N'Gravad Lox', N'12 - 500 g pkgs.', 26.0000, 11, 50, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (38, 8, 1, N'Côte de Blaye', N'Côte de Blaye (Red Bordeaux wine)', N'12 - 75 cl bottles', 263.5000, 17, 0, 15, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (39, 8, 1, N'Chartreuse verte', N'Green Chartreuse (Liqueur)', N'750 cc per bottle', 18.0000, 69, 0, 5, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (40, 9, 8, N'Boston Crab Meat', N'Boston Crab Meat', N'24 - 4 oz tins', 18.4000, 123, 0, 30, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (41, 9, 8, N'Jack''s New England Clam Chowder', N'Jack''s New England Clam Chowder', N'12 - 12 oz cans', 9.6500, 85, 0, 10, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (42, 10, 5, N'Singaporean Hokkien Fried Mee', N'Singapore Noodles', N'32 - 1 kg pkgs.', 14.0000, 26, 0, 0, 1) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (43, 10, 1, N'Ipoh Coffee', N'Malaysian Coffee', N'16 - 500 g tins', 46.0000, 17, 10, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (44, 10, 2, N'Gula Malacca', N'Malacca Dark Brown Sugar', N'20 - 2 kg bags', 19.4500, 27, 0, 15, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (45, 10, 8, N'Røgede sild', N'Smoked Herring', N'1k pkg.', 9.5000, 5, 70, 15, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (46, 11, 8, N'Spegesild', N'Salt Herring', N'4 - 450 g glasses', 12.0000, 95, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (47, 11, 3, N'Zaanse koeken', N'Zaanse Cookies', N'10 - 4 oz boxes', 9.5000, 36, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (48, 11, 3, N'Chocolade', N'Dutch Chocolate', N'10 pkgs.', 12.7500, 15, 70, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (49, 12, 3, N'Maxilaku', N'Licorice', N'24 - 50 g pkgs.', 20.0000, 10, 60, 15, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (50, 12, 3, N'Valkoinen suklaa', N'White Chocolate', N'12 - 100 g bars', 16.2500, 65, 0, 30, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (51, 14, 7, N'Manjimup Dried Apples', N'Manjimup Dried Apples', N'50 - 300 g pkgs.', 53.0000, 20, 0, 10, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (52, 14, 5, N'Filo Mix', N'Mix for Greek Filo Dough', N'16 - 2 kg boxes', 7.0000, 38, 0, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (53, 14, 6, N'Perth Pasties', N'Perth Meat Pies', N'48 pieces', 32.8000, 0, 0, 0, 1) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (54, 15, 6, N'Tourtière', N'Pork Pie', N'16 pies', 7.4500, 21, 0, 10, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (55, 15, 6, N'Pâté chinois', N'Shepard''s Pie', N'24 boxes x 2 pies', 24.0000, 115, 0, 20, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (56, 15, 5, N'Gnocchi di nonna Alice', N'Gramma Alice''s Dumplings', N'24 - 250 g pkgs.', 38.0000, 21, 10, 30, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (57, 6, 5, N'Ravioli Angelo', N'Angelo Ravioli', N'24 - 250 g pkgs.', 19.5000, 36, 0, 20, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (58, 7, 8, N'Escargots de Bourgogne', N'Escargots from Burgundy', N'24 pieces', 13.2500, 62, 0, 20, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (59, 8, 4, N'Raclette Courdavault', N'Courdavault Raclette Cheese', N'5 kg pkg.', 55.0000, 79, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (60, 8, 4, N'Camembert Pierrot', N'Pierrot Camembert', N'15 - 300 g rounds', 34.0000, 19, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (61, 9, 2, N'Sirop d''érable', N'Maple Syrup', N'24 - 500 ml bottles', 28.5000, 113, 0, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (62, 9, 3, N'Tarte au sucre', N'Sugar Pie', N'48 pies', 49.3000, 17, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (63, 7, 2, N'Vegie-spread', N'Vegetable Sandwich Spread', N'15 - 625 g jars', 43.9000, 24, 0, 5, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (64, 12, 5, N'Wimmers gute Semmelknödel', N'Wimmer''s Delicious Bread Dumplings', N'20 bags x 4 pieces', 33.2500, 22, 80, 30, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (65, 2, 2, N'Louisiana Fiery Hot Pepper Sauce', N'Louisiana Fiery Hot Pepper Sauce', N'32 - 8 oz bottles', 21.0500, 76, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (66, 2, 2, N'Louisiana Hot Spiced Okra', N'Louisiana Hot Spiced Okra', N'24 - 8 oz jars', 17.0000, 4, 100, 20, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (67, 6, 1, N'Laughing Lumberjack Lager', N'Laughing Lumberjack Lager', N'24 - 12 oz bottles', 14.0000, 52, 0, 10, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (68, 8, 3, N'Scottish Longbreads', N'Scottish Longbreads', N'10 boxes x 8 pieces', 12.5000, 6, 10, 15, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (69, 15, 4, N'Gudbrandsdalsost', N'Gudbrandsdals Cheese', N'10 kg pkg.', 36.0000, 26, 0, 15, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (70, 7, 1, N'Outback Lager', N'Outback Lager', N'24 - 355 ml bottles', 15.0000, 15, 10, 30, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (71, 15, 4, N'Fløtemysost', N'Fløtemys Cream Cheese', N'10 - 500 g pkgs.', 21.5000, 26, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (72, 14, 4, N'Mozzarella di Giovanni', N'Giovanni''s Mozzarella', N'24 - 200 g pkgs.', 34.8000, 14, 0, 0, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (73, 7, 8, N'Röd Kaviar', N'Red Caviar', N'24 - 150 g jars', 15.0000, 101, 0, 5, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (74, 4, 7, N'Longlife Tofu', N'Longlife Bean Curd', N'5 kg pkg.', 10.0000, 4, 20, 5, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (75, 12, 1, N'Rhönbräu Klosterbier', N'Rhönbräu Beer', N'24 - 0.5 l bottles', 7.7500, 125, 0, 25, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (76, 12, 1, N'Lakkalikööri', N'Cloudberry Liqueur', N'500 ml', 18.0000, 57, 0, 20, 0) INSERT [dbo].[tblProducts] ([ProductID], [SupplierID], [CategoryID], [ProductName], [EnglishName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (77, 12, 2, N'Original Frankfurter grüne Soße', N'Original Frankfurter Green Sauce', N'12 boxes', 13.0000, 32, 0, 15, 0) INSERT [dbo].[tblShippers] ([ShipperID], [CompanyName]) VALUES (1, N'Speedy Express') INSERT [dbo].[tblShippers] ([ShipperID], [CompanyName]) VALUES (2, N'United Package') INSERT [dbo].[tblShippers] ([ShipperID], [CompanyName]) VALUES (3, N'Federal Shipping') INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (1, N'Supplier A', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (2, N'Supplier B', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (3, N'Supplier C', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (4, N'Supplier D', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (5, N'Supplier', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (6, N'Supplier F', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (7, N'Supplier G', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (8, N'Supplier H', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (9, N'Supplier I', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (10, N'Supplier J', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (11, N'Supplier K', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (12, N'Supplier L', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (13, N'Supplier M', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (14, N'Supplier N', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (15, N'Supplier O', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (21, N'Supplier A', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (22, N'Supplier B', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (23, N'Supplier C', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (24, N'Supplier D', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (25, N'Supplier', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (26, N'Supplier F', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (27, N'Supplier G', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (28, N'Supplier H', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (29, N'Supplier I', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (30, N'Supplier J', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (31, N'Supplier K', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (32, N'Supplier L', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (33, N'Supplier M', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (34, N'Supplier N', NULL, NULL, NULL) INSERT [dbo].[tblSupplier] ([SupplierID], [Name], [Address], [City], [Province]) VALUES (35, N'Supplier O', NULL, NULL, NULL) /* ============================================================ Write your SQL statements below Tables: tblProducts, tblShippers, tblSupplier, tblCustomers, tblOrderDetails tblOrders =============================================================*/ Select * from tblCustomers
run
|
edit
|
history
|
help
0
MyWall
SQL Directives Order of Execution
Recursos_Humanos
Find users who have been watching kid's programmes for 13 weeks
03_A_Group_by_having
Employee database
exp8
Libros
Changing URLs in a SQL table
How to add namespace to sql generated XML output