Skip to content

Instantly share code, notes, and snippets.

@jonosue
Last active December 23, 2015 06:38
Show Gist options
  • Save jonosue/c6355c087afbd0d3b511 to your computer and use it in GitHub Desktop.
Save jonosue/c6355c087afbd0d3b511 to your computer and use it in GitHub Desktop.
I wanted to create a function with the LAST_VALUE clause, because I haven't seen it used too often. When you call this function with a Customer ID value, it will return their last payment date, check/invoice number, and last payment amount (if they've made at least one payment before). I've also provided the script for the SalesDB database.
USE SalesDB
GO
IF OBJECT_ID (N'dbo.LastPaymentFxn') IS NOT NULL
DROP FUNCTION dbo.LastPaymentFxn
GO
CREATE FUNCTION dbo.LastPaymentFxn
(
@CustomerID int
)
RETURNS TABLE
AS RETURN
(
SELECT DISTINCT
p.customerID AS 'CustomerID',
c.customerName AS 'CustomerName',
LAST_VALUE(p.paymentDate) OVER (PARTITION BY p.customerID ORDER BY p.CustomerID) AS 'LastPaymentDate',
LAST_VALUE(p.CheckNumber) OVER (PARTITION BY p.customerID ORDER BY p.CustomerID) AS 'LastCheckNumber',
LAST_VALUE(p.amount) OVER (PARTITION BY p.customerID ORDER BY p.CustomerID) AS 'LastPaymentAmount'
FROM
Customer c
INNER JOIN Payment p
ON c.customerID = p.customerID
WHERE
p.customerID = @CustomerID
)
GO
-- Perform a test invocation using Customer ID "103"
SELECT
*
FROM
dbo.LastPaymentFxn(103)
USE [master]
GO
/****** Object: Database [SalesDB] Script Date: 12/22/15 8:07:29 PM ******/
CREATE DATABASE [SalesDB]
GO
ALTER DATABASE [SalesDB] SET COMPATIBILITY_LEVEL = 100
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [SalesDB].[dbo].[sp_fulltext_database] @action = 'enable'
end
GO
ALTER DATABASE [SalesDB] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [SalesDB] SET ANSI_NULLS OFF
GO
ALTER DATABASE [SalesDB] SET ANSI_PADDING OFF
GO
ALTER DATABASE [SalesDB] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [SalesDB] SET ARITHABORT OFF
GO
ALTER DATABASE [SalesDB] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [SalesDB] SET AUTO_CREATE_STATISTICS ON
GO
ALTER DATABASE [SalesDB] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [SalesDB] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [SalesDB] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [SalesDB] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [SalesDB] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [SalesDB] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [SalesDB] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [SalesDB] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [SalesDB] SET DISABLE_BROKER
GO
ALTER DATABASE [SalesDB] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [SalesDB] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [SalesDB] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [SalesDB] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [SalesDB] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [SalesDB] SET READ_COMMITTED_SNAPSHOT OFF
GO
ALTER DATABASE [SalesDB] SET HONOR_BROKER_PRIORITY OFF
GO
ALTER DATABASE [SalesDB] SET RECOVERY FULL
GO
ALTER DATABASE [SalesDB] SET MULTI_USER
GO
ALTER DATABASE [SalesDB] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [SalesDB] SET DB_CHAINING OFF
GO
ALTER DATABASE [SalesDB] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF )
GO
ALTER DATABASE [SalesDB] SET TARGET_RECOVERY_TIME = 0 SECONDS
GO
USE [SalesDB]
GO
/****** Object: Table [dbo].[Customer] Script Date: 12/22/15 8:07:29 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Customer](
[customerID] [int] NOT NULL,
[customerName] [nvarchar](50) NULL,
[contactLastName] [nvarchar](50) NULL,
[contactFirstName] [nvarchar](50) NULL,
[phone] [nvarchar](50) NULL,
[addressLine1] [nvarchar](50) NULL,
[addressLine2] [nvarchar](50) NULL,
[city] [nvarchar](50) NULL,
[state] [nvarchar](15) NULL,
[postalCode] [nvarchar](15) NULL,
[country] [nvarchar](50) NULL,
[salesRepemployeeID] [int] NULL,
[creditLimit] [float] NULL,
PRIMARY KEY CLUSTERED
(
[customerID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Employee] Script Date: 12/22/15 8:07:29 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Employee](
[employeeID] [int] NOT NULL,
[lastName] [nvarchar](50) NULL,
[firstName] [nvarchar](50) NULL,
[extension] [nvarchar](10) NULL,
[email] [nvarchar](100) NULL,
[officeID] [int] NULL,
[reportsTo] [int] NULL,
[jobTitle] [nvarchar](50) NULL,
[birthDate] [datetime] NULL,
[hireDate] [datetime] NULL,
[addressLine] [varchar](100) NULL,
[city] [varchar](100) NULL,
[stateOrProvince] [varchar](100) NULL,
[country] [varchar](100) NULL,
[postalCode] [varchar](20) NULL,
PRIMARY KEY CLUSTERED
(
[employeeID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
/****** Object: Table [dbo].[Office] Script Date: 12/22/15 8:07:29 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Office](
[officeID] [int] NOT NULL,
[city] [nvarchar](50) NULL,
[phone] [nvarchar](50) NULL,
[addressLine1] [nvarchar](50) NULL,
[addressLine2] [nvarchar](50) NULL,
[state] [nvarchar](50) NULL,
[country] [nvarchar](50) NULL,
[postalCode] [nvarchar](15) NULL,
[territory] [nvarchar](10) NULL,
PRIMARY KEY CLUSTERED
(
[officeID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Payment] Script Date: 12/22/15 8:07:29 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Payment](
[customerID] [int] NOT NULL,
[checkNumber] [nvarchar](50) NULL,
[paymentDate] [datetime] NOT NULL,
[amount] [float] NULL,
PRIMARY KEY CLUSTERED
(
[customerID] ASC,
[paymentDate] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Product] Script Date: 12/22/15 8:07:29 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Product](
[productID] [nvarchar](15) NOT NULL,
[productName] [nvarchar](70) NULL,
[productLineID] [int] NULL,
[productScale] [nvarchar](10) NULL,
[productVendorCode] [int] NULL,
[productDescription] [nvarchar](max) NULL,
[currQuantityInStock] [smallint] NULL,
[currBuyPrice] [float] NULL,
[currMSRP] [float] NULL,
PRIMARY KEY CLUSTERED
(
[productID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
/****** Object: Table [dbo].[ProductLine] Script Date: 12/22/15 8:07:29 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[ProductLine](
[productLineID] [int] IDENTITY(1,1) NOT NULL,
[productLine] [nvarchar](50) NULL,
[textDescription] [nvarchar](max) NULL,
PRIMARY KEY CLUSTERED
(
[productLineID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
/****** Object: Table [dbo].[ProductVendor] Script Date: 12/22/15 8:07:29 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[ProductVendor](
[productVendorID] [int] IDENTITY(1,1) NOT NULL,
[productVendor] [nvarchar](50) NULL,
PRIMARY KEY CLUSTERED
(
[productVendorID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[SalesOrderHeader] Script Date: 12/22/15 8:07:29 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[SalesOrderHeader](
[orderID] [int] NOT NULL,
[orderDate] [datetime] NULL,
[requiredDate] [datetime] NULL,
[shippedDate] [datetime] NULL,
[status] [nvarchar](15) NULL,
[comments] [nvarchar](max) NULL,
[customerID] [int] NULL,
PRIMARY KEY CLUSTERED
(
[orderID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
/****** Object: Table [dbo].[SalesOrderLine] Script Date: 12/22/15 8:07:29 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[SalesOrderLine](
[orderID] [int] NOT NULL,
[productID] [nvarchar](15) NULL,
[quantity] [smallint] NULL,
[unitPrice] [float] NULL,
[orderLineNumber] [int] NOT NULL,
PRIMARY KEY CLUSTERED
(
[orderID] ASC,
[orderLineNumber] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (103, N'Atelier graphique', N'Schmitt', N'Carine ', N'40.32.2555', N'54, rue Royale', NULL, N'Nantes', NULL, N'44000', N'France', 1370, 21000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (112, N'Signal Gift Stores', N'King', N'Jean', N'7025551838', N'8489 Strong St.', NULL, N'Las Vegas', N'NV', N'83030', N'USA', 1166, 71800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (114, N'Australian Collectors, Co.', N'Ferguson', N'Peter', N'03 9520 4555', N'636 St Kilda Road', N'Level 3', N'Melbourne', N'Victoria', N'3004', N'Australia', 1611, 117300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (119, N'La Rochelle Gifts', N'Labrune', N'Janine ', N'40.67.8555', N'67, rue des Cinquante Otages', NULL, N'Nantes', NULL, N'44000', N'France', 1370, 118200)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (121, N'Baane Mini Imports', N'Bergulfsen', N'Jonas ', N'07-98 9555', N'Erling Skakkes gate 78', NULL, N'Stavern', NULL, N'4110', N'Norway', 1504, 81700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (124, N'Mini Gifts Distributors Ltd.', N'Nelson', N'Susan', N'4155551450', N'5677 Strong St.', NULL, N'San Rafael', N'CA', N'97562', N'USA', 1165, 210500)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (125, N'Havel & Zbyszek Co', N'Piestrzeniewicz', N'Zbyszek ', N'(26) 642-7555', N'ul. Filtrowa 68', NULL, N'Warszawa', NULL, N'01-012', N'Poland', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (128, N'Blauer See Auto, Co.', N'Keitel', N'Roland', N'+49 69 66 90 2555', N'Lyonerstr. 34', NULL, N'Frankfurt', NULL, N'60528', N'Germany', 1504, 59700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (129, N'Mini Wheels Co.', N'Murphy', N'Julie', N'6505555787', N'5557 North Pendale Street', NULL, N'San Francisco', N'CA', N'94217', N'USA', 1165, 64600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (131, N'Land of Toys Inc.', N'Lee', N'Kwai', N'2125557818', N'897 Long Airport Avenue', NULL, N'NYC', N'NY', N'10022', N'USA', 1323, 114900)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (141, N'Euro+ Shopping Channel', N'Freyre', N'Diego ', N'(91) 555 94 44', N'C/ Moralzarzal, 86', NULL, N'Madrid', NULL, N'28034', N'Spain', 1370, 227600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (144, N'Volvo Model Replicas, Co', N'Berglund', N'Christina ', N'0921-12 3555', N'Berguvsvägen 8', NULL, N'Luleå', NULL, N'S-958 22', N'Sweden', 1504, 53100)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (145, N'Danish Wholesale Imports', N'Petersen', N'Jytte ', N'31 12 3555', N'Vinbæltet 34', NULL, N'Kobenhavn', NULL, N'1734', N'Denmark', 1401, 83400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (146, N'Saveley & Henriot, Co.', N'Saveley', N'Mary ', N'78.32.5555', N'2, rue du Commerce', NULL, N'Lyon', NULL, N'69004', N'France', 1337, 123900)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (148, N'Dragon Souveniers, Ltd.', N'Natividad', N'Eric', N'+65 221 7555', N'Bronz Sok.', N'Bronz Apt. 3/6 Tesvikiye', N'Singapore', NULL, N'079903', N'Singapore', 1621, 103800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (151, N'Muscle Machine Inc', N'Young', N'Jeff', N'2125557413', N'4092 Furth Circle', N'Suite 400', N'NYC', N'NY', N'10022', N'USA', 1286, 138500)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (157, N'Diecast Classics Inc.', N'Leong', N'Kelvin', N'2155551555', N'7586 Pompton St.', NULL, N'Allentown', N'PA', N'70267', N'USA', 1216, 100600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (161, N'Technics Stores Inc.', N'Hashimoto', N'Juri', N'6505556809', N'9408 Furth Circle', NULL, N'Burlingame', N'CA', N'94217', N'USA', 1165, 84600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (166, N'Handji Gifts& Co', N'Victorino', N'Wendy', N'+65 224 1555', N'106 Linden Road Sandown', N'2nd Floor', N'Singapore', NULL, N'069045', N'Singapore', 1612, 97900)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (167, N'Herkku Gifts', N'Oeztan', N'Veysel', N'+47 2267 3215', N'Brehmen St. 121', N'PR 334 Sentrum', N'Bergen', NULL, N'N 5804', N'Norway ', 1504, 96800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (168, N'American Souvenirs Inc', N'Franco', N'Keith', N'2035557845', N'149 Spinnaker Dr.', N'Suite 101', N'New Haven', N'CT', N'97823', N'USA', 1286, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (169, N'Porto Imports Co.', N'de Castro', N'Isabel ', N'(1) 356-5555', N'Estrada da saúde n. 58', NULL, N'Lisboa', NULL, N'1756', N'Portugal', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (171, N'Daedalus Designs Imports', N'Rancé', N'Martine ', N'20.16.1555', N'184, chaussée de Tournai', NULL, N'Lille', NULL, N'59000', N'France', 1370, 82900)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (172, N'La Corne D''abondance, Co.', N'Bertrand', N'Marie', N'(1) 42.34.2555', N'265, boulevard Charonne', NULL, N'Paris', NULL, N'75012', N'France', 1337, 84300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (173, N'Cambridge Collectables Co.', N'Tseng', N'Jerry', N'6175555555', N'4658 Baden Av.', NULL, N'Cambridge', N'MA', N'51247', N'USA', 1188, 43400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (175, N'Gift Depot Inc.', N'King', N'Julie', N'2035552570', N'25593 South Bay Ln.', NULL, N'Bridgewater', N'CT', N'97562', N'USA', 1323, 84300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (177, N'Osaka Souveniers Co.', N'Kentary', N'Mory', N'+81 06 6342 5555', N'1-6-20 Dojima', NULL, N'Kita-ku', N'Osaka', N' 530-0003', N'Japan', 1621, 81200)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (181, N'Vitachrome Inc.', N'Frick', N'Michael', N'2125551500', N'2678 Kingston Rd.', N'Suite 101', N'NYC', N'NY', N'10022', N'USA', 1286, 76400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (186, N'Toys of Finland, Co.', N'Karttunen', N'Matti', N'90-224 8555', N'Keskuskatu 45', NULL, N'Helsinki', NULL, N'21240', N'Finland', 1501, 96500)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (187, N'AV Stores, Co.', N'Ashworth', N'Rachel', N'(171) 555-1555', N'Fauntleroy Circus', NULL, N'Manchester', NULL, N'EC2 5NT', N'UK', 1501, 136800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (189, N'Clover Collections, Co.', N'Cassidy', N'Dean', N'+353 1862 1555', N'25 Maiden Lane', N'Floor No. 4', N'Dublin', NULL, N'2', N'Ireland', 1504, 69400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (198, N'Auto-Moto Classics Inc.', N'Taylor', N'Leslie', N'6175558428', N'16780 Pompton St.', NULL, N'Brickhaven', N'MA', N'58339', N'USA', 1216, 23000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (201, N'UK Collectables, Ltd.', N'Devon', N'Elizabeth', N'(171) 555-2282', N'12, Berkeley Gardens Blvd', NULL, N'Liverpool', NULL, N'WX1 6LT', N'UK', 1501, 92700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (202, N'Canadian Gift Exchange Network', N'Tamuri', N'Yoshi ', N'(604) 555-3392', N'1900 Oak St.', NULL, N'Vancouver', N'BC', N'V3F 2K1', N'Canada', 1323, 90300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (204, N'Online Mini Collectables', N'Barajas', N'Miguel', N'6175557555', N'7635 Spinnaker Dr.', NULL, N'Brickhaven', N'MA', N'58339', N'USA', 1188, 68700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (205, N'Toys4GrownUps.com', N'Young', N'Julie', N'6265557265', N'78934 Hillside Dr.', NULL, N'Pasadena', N'CA', N'90003', N'USA', 1166, 90700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (206, N'Asian Shopping Network, Co', N'Walker', N'Brydey', N'+612 9411 1555', N'Suntec Tower Three', N'8 Temasek', N'Singapore', NULL, N'038988', N'Singapore', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (209, N'Mini Caravy', N'Citeaux', N'Frédérique ', N'88.60.1555', N'24, place Kléber', NULL, N'Strasbourg', NULL, N'67000', N'France', 1370, 53800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (211, N'King Kong Collectables, Co.', N'Gao', N'Mike', N'+852 2251 1555', N'Bank of China Tower', N'1 Garden Road', N'Central Hong Kong', NULL, NULL, N'Hong Kong', 1621, 58600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (216, N'Enaco Distributors', N'Saavedra', N'Eduardo ', N'(93) 203 4555', N'Rambla de Cataluña, 23', NULL, N'Barcelona', NULL, N'08022', N'Spain', 1702, 60300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (219, N'Boards & Toys Co.', N'Young', N'Mary', N'3105552373', N'4097 Douglas Av.', NULL, N'Glendale', N'CA', N'92561', N'USA', 1166, 11000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (223, N'Natürlich Autos', N'Kloss', N'Horst ', N'0372-555188', N'Taucherstraße 10', NULL, N'Cunewalde', NULL, N'01307', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (227, N'Heintze Collectables', N'Ibsen', N'Palle', N'86 21 3555', N'Smagsloget 45', NULL, N'Århus', NULL, N'8200', N'Denmark', 1401, 120800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (233, N'Québec Home Shopping Network', N'Fresnière', N'Jean ', N'(514) 555-8054', N'43 rue St. Laurent', NULL, N'Montréal', N'Québec', N'H1J 1C3', N'Canada', 1286, 48700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (237, N'ANG Resellers', N'Camino', N'Alejandra ', N'(91) 745 6555', N'Gran Vía, 1', NULL, N'Madrid', NULL, N'28001', N'Spain', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (239, N'Collectable Mini Designs Co.', N'Thompson', N'Valarie', N'7605558146', N'361 Furth Circle', NULL, N'San Diego', N'CA', N'91217', N'USA', 1166, 105000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (240, N'giftsbymail.co.uk', N'Bennett', N'Helen ', N'(198) 555-8888', N'Garden House', N'Crowther Way 23', N'Cowes', N'Isle of Wight', N'PO31 7PJ', N'UK', 1501, 93900)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (242, N'Alpha Cognac', N'Roulet', N'Annette ', N'61.77.6555', N'1 rue Alsace-Lorraine', NULL, N'Toulouse', NULL, N'31000', N'France', 1370, 61100)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (247, N'Messner Shopping Network', N'Messner', N'Renate ', N'069-0555984', N'Magazinweg 7', NULL, N'Frankfurt', NULL, N'60528', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (249, N'Amica Models & Co.', N'Accorti', N'Paolo ', N'011-4988555', N'Via Monte Bianco 34', NULL, N'Torino', NULL, N'10100', N'Italy', 1401, 113000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (250, N'Lyon Souveniers', N'Da Silva', N'Daniel', N'+33 1 46 62 7555', N'27 rue du Colonel Pierre Avia', NULL, N'Paris', NULL, N'75508', N'France', 1337, 68100)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (256, N'Auto Associés & Cie.', N'Tonini', N'Daniel ', N'30.59.8555', N'67, avenue de l''Europe', NULL, N'Versailles', NULL, N'78000', N'France', 1370, 77900)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (259, N'Toms Spezialitäten, Ltd', N'Pfalzheim', N'Henriette ', N'0221-5554327', N'Mehrheimerstr. 369', NULL, N'Köln', NULL, N'50739', N'Germany', 1504, 120400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (260, N'Royal Canadian Collectables, Ltd.', N'Lincoln', N'Elizabeth ', N'(604) 555-4555', N'23 Tsawassen Blvd.', NULL, N'Tsawassen', N'BC', N'T2F 8M4', N'Canada', 1323, 89600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (273, N'Franken Gifts, Co', N'Franken', N'Peter ', N'089-0877555', N'Berliner Platz 43', NULL, N'München', NULL, N'80805', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (276, N'Anna''s Decorations, Ltd', N'O''Hara', N'Anna', N'02 9936 8555', N'201 Miller Street', N'Level 15', N'North Sydney', N'NSW', N'2060', N'Australia', 1611, 107800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (278, N'Rovelli Gifts', N'Rovelli', N'Giovanni ', N'035-640555', N'Via Ludovico il Moro 22', NULL, N'Bergamo', NULL, N'24100', N'Italy', 1401, 119600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (282, N'Souveniers And Things Co.', N'Huxley', N'Adrian', N'+61 2 9495 8555', N'Monitor Money Building', N'815 Pacific Hwy', N'Chatswood', N'NSW', N'2067', N'Australia', 1611, 93300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (286, N'Marta''s Replicas Co.', N'Hernandez', N'Marta', N'6175558555', N'39323 Spinnaker Dr.', NULL, N'Cambridge', N'MA', N'51247', N'USA', 1216, 123700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (293, N'BG&E Collectables', N'Harrison', N'Ed', N'+41 26 425 50 01', N'Rte des Arsenaux 41 ', NULL, N'Fribourg', NULL, N'1700', N'Switzerland', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (298, N'Vida Sport, Ltd', N'Holz', N'Mihael', N'0897-034555', N'Grenzacherweg 237', NULL, N'Genève', NULL, N'1203', N'Switzerland', 1702, 141300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (299, N'Norway Gifts By Mail, Co.', N'Klaeboe', N'Jan', N'+47 2212 1555', N'Drammensveien 126A', N'PB 211 Sentrum', N'Oslo', NULL, N'N 0106', N'Norway ', 1504, 95100)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (303, N'Schuyler Imports', N'Schuyler', N'Bradley', N'+31 20 491 9555', N'Kingsfordweg 151', NULL, N'Amsterdam', NULL, N'1043 GR', N'Netherlands', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (307, N'Der Hund Imports', N'Andersen', N'Mel', N'030-0074555', N'Obere Str. 57', NULL, N'Berlin', NULL, N'12209', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (311, N'Oulu Toy Supplies, Inc.', N'Koskitalo', N'Pirkko', N'981-443655', N'Torikatu 38', NULL, N'Oulu', NULL, N'90110', N'Finland', 1501, 90500)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (314, N'Petit Auto', N'Dewey', N'Catherine ', N'(02) 5554 67', N'Rue Joseph-Bens 532', NULL, N'Bruxelles', NULL, N'B-1180', N'Belgium', 1401, 79900)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (319, N'Mini Classics', N'Frick', N'Steve', N'9145554562', N'3758 North Pendale Street', NULL, N'White Plains', N'NY', N'24067', N'USA', 1323, 102700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (320, N'Mini Creations Ltd.', N'Huang', N'Wing', N'5085559555', N'4575 Hillside Dr.', NULL, N'New Bedford', N'MA', N'50553', N'USA', 1188, 94500)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (321, N'Corporate Gift Ideas Co.', N'Brown', N'Julie', N'6505551386', N'7734 Strong St.', NULL, N'San Francisco', N'CA', N'94217', N'USA', 1165, 105000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (323, N'Down Under Souveniers, Inc', N'Graham', N'Mike', N'+64 9 312 5555', N'162-164 Grafton Road', N'Level 2', N'Auckland ', NULL, NULL, N'New Zealand', 1612, 88000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (324, N'Stylish Desk Decors, Co.', N'Brown', N'Ann ', N'(171) 555-0297', N'35 King George', NULL, N'London', NULL, N'WX3 6FW', N'UK', 1501, 77000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (328, N'Tekni Collectables Inc.', N'Brown', N'William', N'2015559350', N'7476 Moss Rd.', NULL, N'Newark', N'NJ', N'94019', N'USA', 1323, 43000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (333, N'Australian Gift Network, Co', N'Calaghan', N'Ben', N'61-7-3844-6555', N'31 Duncan St. West End', NULL, N'South Brisbane', N'Queensland', N'4101', N'Australia', 1611, 51600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (334, N'Suominen Souveniers', N'Suominen', N'Kalle', N'+358 9 8045 555', N'Software Engineering Center', N'SEC Oy', N'Espoo', NULL, N'FIN-02271', N'Finland', 1501, 98800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (335, N'Cramer Spezialitäten, Ltd', N'Cramer', N'Philip ', N'0555-09555', N'Maubelstr. 90', NULL, N'Brandenburg', NULL, N'14776', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (339, N'Classic Gift Ideas, Inc', N'Cervantes', N'Francisca', N'2155554695', N'782 First Street', NULL, N'Philadelphia', N'PA', N'71270', N'USA', 1188, 81100)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (344, N'CAF Imports', N'Fernandez', N'Jesus', N'+34 913 728 555', N'Merchants House', N'27-30 Merchant''s Quay', N'Madrid', NULL, N'28023', N'Spain', 1702, 59600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (347, N'Men ''R'' US Retailers, Ltd.', N'Chandler', N'Brian', N'2155554369', N'6047 Douglas Av.', NULL, N'Los Angeles', N'CA', N'91003', N'USA', 1166, 57700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (348, N'Asian Treasures, Inc.', N'McKenna', N'Patricia ', N'2967 555', N'8 Johnstown Road', NULL, N'Cork', N'Co. Cork', NULL, N'Ireland', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (350, N'Marseille Mini Autos', N'Lebihan', N'Laurence ', N'91.24.4555', N'12, rue des Bouchers', NULL, N'Marseille', NULL, N'13008', N'France', 1337, 65000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (353, N'Reims Collectables', N'Henriot', N'Paul ', N'26.47.1555', N'59 rue de l''Abbaye', NULL, N'Reims', NULL, N'51100', N'France', 1337, 81100)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (356, N'SAR Distributors, Co', N'Kuger', N'Armand', N'+27 21 550 3555', N'1250 Pretorius Street', NULL, N'Hatfield', N'Pretoria', N'0028', N'South Africa', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (357, N'GiftsForHim.com', N'MacKinlay', N'Wales', N'64-9-3763555', N'199 Great North Road', NULL, N'Auckland', NULL, NULL, N'New Zealand', 1612, 77700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (361, N'Kommission Auto', N'Josephs', N'Karin', N'0251-555259', N'Luisenstr. 48', NULL, N'Münster', NULL, N'44087', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (362, N'Gifts4AllAges.com', N'Yoshido', N'Juri', N'6175559555', N'8616 Spinnaker Dr.', NULL, N'Boston', N'MA', N'51003', N'USA', 1216, 41900)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (363, N'Online Diecast Creations Co.', N'Young', N'Dorothy', N'6035558647', N'2304 Long Airport Avenue', NULL, N'Nashua', N'NH', N'62005', N'USA', 1216, 114200)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (369, N'Lisboa Souveniers, Inc', N'Rodriguez', N'Lino ', N'(1) 354-2555', N'Jardim das rosas n. 32', NULL, N'Lisboa', NULL, N'1675', N'Portugal', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (376, N'Precious Collectables', N'Urs', N'Braun', N'0452-076555', N'Hauptstr. 29', NULL, N'Bern', NULL, N'3012', N'Switzerland', 1702, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (379, N'Collectables For Less Inc.', N'Nelson', N'Allen', N'6175558555', N'7825 Douglas Av.', NULL, N'Brickhaven', N'MA', N'58339', N'USA', 1188, 70700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (381, N'Royale Belge', N'Cartrain', N'Pascale ', N'(071) 23 67 2555', N'Boulevard Tirou, 255', NULL, N'Charleroi', NULL, N'B-6000', N'Belgium', 1401, 23500)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (382, N'Salzburg Collectables', N'Pipps', N'Georg ', N'6562-9555', N'Geislweg 14', NULL, N'Salzburg', NULL, N'5020', N'Austria', 1401, 71700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (385, N'Cruz & Sons Co.', N'Cruz', N'Arnold', N'+63 2 555 3587', N'15 McCallum Street', N'NatWest Center #13-03', N'Makati City', NULL, N'1227 MM', N'Philippines', 1621, 81500)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (386, N'L''ordine Souveniers', N'Moroni', N'Maurizio ', N'0522-556555', N'Strada Provinciale 124', NULL, N'Reggio Emilia', NULL, N'42100', N'Italy', 1401, 121400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (398, N'Tokyo Collectables, Ltd', N'Shimamura', N'Akiko', N'+81 3 3584 0555', N'2-2-8 Roppongi', NULL, N'Minato-ku', N'Tokyo', N'106-0032', N'Japan', 1621, 94400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (406, N'Auto Canal+ Petit', N'Perrier', N'Dominique', N'(1) 47.55.6555', N'25, rue Lauriston', NULL, N'Paris', NULL, N'75016', N'France', 1337, 95000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (409, N'Stuttgart Collectable Exchange', N'Müller', N'Rita ', N'0711-555361', N'Adenauerallee 900', NULL, N'Stuttgart', NULL, N'70563', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (412, N'Extreme Desk Decorations, Ltd', N'McRoy', N'Sarah', N'04 499 9555', N'101 Lambton Quay', N'Level 11', N'Wellington', NULL, NULL, N'New Zealand', 1612, 86800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (415, N'Bavarian Collectables Imports, Co.', N'Donnermeyer', N'Michael', N' +49 89 61 08 9555', N'Hansastr. 15', NULL, N'Munich', NULL, N'80686', N'Germany', 1504, 77000)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (424, N'Classic Legends Inc.', N'Hernandez', N'Maria', N'2125558493', N'5905 Pompton St.', N'Suite 750', N'NYC', N'NY', N'10022', N'USA', 1286, 67500)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (443, N'Feuer Online Stores, Inc', N'Feuer', N'Alexander ', N'0342-555176', N'Heerstr. 22', NULL, N'Leipzig', NULL, N'04179', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (447, N'Gift Ideas Corp.', N'Lewis', N'Dan', N'2035554407', N'2440 Pompton St.', NULL, N'Glendale', N'CT', N'97561', N'USA', 1323, 49700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (448, N'Scandinavian Gift Ideas', N'Larsson', N'Martha', N'0695-34 6555', N'Åkergatan 24', NULL, N'Bräcke', NULL, N'S-844 67', N'Sweden', 1504, 116400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (450, N'The Sharp Gifts Warehouse', N'Frick', N'Sue', N'4085553659', N'3086 Ingle Ln.', NULL, N'San Jose', N'CA', N'94217', N'USA', 1165, 77600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (452, N'Mini Auto Werke', N'Mendel', N'Roland ', N'7675-3555', N'Kirchgasse 6', NULL, N'Graz', NULL, N'8010', N'Austria', 1401, 45300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (455, N'Super Scale Inc.', N'Murphy', N'Leslie', N'2035559545', N'567 North Pendale Street', NULL, N'New Haven', N'CT', N'97823', N'USA', 1286, 95400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (456, N'Microscale Inc.', N'Choi', N'Yu', N'2125551957', N'5290 North Pendale Street', N'Suite 200', N'NYC', N'NY', N'10022', N'USA', 1286, 39800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (458, N'Corrida Auto Replicas, Ltd', N'Sommer', N'Martín ', N'(91) 555 22 82', N'C/ Araquil, 67', NULL, N'Madrid', NULL, N'28023', N'Spain', 1702, 104600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (459, N'Warburg Exchange', N'Ottlieb', N'Sven ', N'0241-039123', N'Walserweg 21', NULL, N'Aachen', NULL, N'52066', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (462, N'FunGiftIdeas.com', N'Benitez', N'Violeta', N'5085552555', N'1785 First Street', NULL, N'New Bedford', N'MA', N'50553', N'USA', 1216, 85800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (465, N'Anton Designs, Ltd.', N'Anton', N'Carmen', N'+34 913 728555', N'c/ Gobelas, 19-1 Urb. La Florida', NULL, N'Madrid', NULL, N'28023', N'Spain', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (471, N'Australian Collectables, Ltd', N'Clenahan', N'Sean', N'61-9-3844-6555', N'7 Allen Street', NULL, N'Glen Waverly', N'Victoria', N'3150', N'Australia', 1611, 60300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (473, N'Frau da Collezione', N'Ricotti', N'Franco', N'+39 022515555', N'20093 Cologno Monzese', N'Alessandro Volta 16', N'Milan', NULL, NULL, N'Italy', 1401, 34800)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (475, N'West Coast Collectables Co.', N'Thompson', N'Steve', N'3105553722', N'3675 Furth Circle', NULL, N'Burbank', N'CA', N'94019', N'USA', 1166, 55400)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (477, N'Mit Vergnügen & Co.', N'Moos', N'Hanna ', N'0621-08555', N'Forsterstr. 57', NULL, N'Mannheim', NULL, N'68306', N'Germany', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (480, N'Kremlin Collectables, Co.', N'Semenov', N'Alexander ', N'+7 812 293 0521', N'2 Pobedy Square', NULL, N'Saint Petersburg', NULL, N'196143', N'Russia', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (481, N'Raanan Stores, Inc', N'Altagar,G M', N'Raanan', N'+ 972 9 959 8555', N'3 Hagalim Blv.', NULL, N'Herzlia', NULL, N'47625', N'Israel', NULL, 0)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (484, N'Iberia Gift Imports, Corp.', N'Roel', N'José Pedro ', N'(95) 555 82 82', N'C/ Romero, 33', NULL, N'Sevilla', NULL, N'41101', N'Spain', 1702, 65700)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (486, N'Motor Mint Distributors Inc.', N'Salazar', N'Rosa', N'2155559857', N'11328 Douglas Av.', NULL, N'Philadelphia', N'PA', N'71270', N'USA', 1323, 72600)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (487, N'Signal Collectibles Ltd.', N'Taylor', N'Sue', N'4155554312', N'2793 Furth Circle', NULL, N'Brisbane', N'CA', N'94217', N'USA', 1165, 60300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (489, N'Double Decker Gift Stores, Ltd', N'Smith', N'Thomas ', N'(171) 555-7555', N'120 Hanover Sq.', NULL, N'London', NULL, N'WA1 1DP', N'UK', 1501, 43300)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (495, N'Diecast Collectables', N'Franco', N'Valarie', N'6175552555', N'6251 Ingle Ln.', NULL, N'Boston', N'MA', N'51003', N'USA', 1188, 85100)
GO
INSERT [dbo].[Customer] ([customerID], [customerName], [contactLastName], [contactFirstName], [phone], [addressLine1], [addressLine2], [city], [state], [postalCode], [country], [salesRepemployeeID], [creditLimit]) VALUES (496, N'Kelly''s Gift Shop', N'Snowden', N'Tony', N'+64 9 5555500', N'Arenales 1938 3''A''', NULL, N'Auckland ', NULL, NULL, N'New Zealand', 1612, 110000)
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1002, N'Murphy', N'Diane', N'x5800', N'dmurphy@classicmodelcars.com', 1, NULL, N'President', CAST(0x000054AB00000000 AS DateTime), CAST(0x000093A100000000 AS DateTime), N'123 Kingsway', N'Burnaby', N'BC', N'Canada', N'V8Z 1D2')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1056, N'Patterson', N'Mary', N'x4611', N'mpatterso@classicmodelcars.com', 1, 1002, N'VP Sales', CAST(0x0000597F00000000 AS DateTime), CAST(0x000093E600000000 AS DateTime), N'11120 Jasper Ave NW', N'Edmonton', N'AB', N'Canada', N'T5K 2N1')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1076, N'Firrelli', N'Jeff', N'x9273', N'jfirrelli@classicmodelcars.com', 1, 1002, N'VP Marketing', CAST(0x0000451400000000 AS DateTime), CAST(0x000093CE00000000 AS DateTime), N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1088, N'Patterson', N'William', N'x4871', N'wpatterson@classicmodelcars.com', 6, 1056, N'Sales Manager (APAC)', CAST(0x00005A2500000000 AS DateTime), CAST(0x000092BD00000000 AS DateTime), N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1102, N'Bondur', N'Gerard', N'x5408', N'gbondur@classicmodelcars.com', 4, 1056, N'Sale Manager (EMEA)', CAST(0x00005DEC00000000 AS DateTime), CAST(0x0000951300000000 AS DateTime), N'900 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 2G9')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1143, N'Bow', N'Anthony', N'x5428', N'abow@classicmodelcars.com', 1, 1056, N'Sales Manager (NA)', CAST(0x0000552500000000 AS DateTime), CAST(0x0000932D00000000 AS DateTime), N'90 Inverness', N'Burnaby', N'BC', N'Canada', N'V0Z 8W1')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1165, N'Jennings', N'Leslie', N'x3291', N'ljennings@classicmodelcars.com', 1, 1143, N'Sales Rep', CAST(0x0000692400000000 AS DateTime), CAST(0x0000935600000000 AS DateTime), N'1120 6 Ave SW', N'Calgary', N'AB', N'Canada', N'T2P 5M5')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1166, N'Thompson', N'Leslie', N'x4065', N'lthompson@classicmodelcars.com', 1, 1143, N'Sales Rep', CAST(0x0000623200000000 AS DateTime), CAST(0x0000962500000000 AS DateTime), N'993 Robson', N'Vancouver', N'BC', N'Canada', N'V9A 9A9')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1188, N'Firrelli', N'Julie', N'x2173', N'jfirrelli@classicmodelcars.com', 2, 1143, N'Sales Rep', CAST(0x0000696200000000 AS DateTime), CAST(0x0000944000000000 AS DateTime), N'230 Elgin Street', N'Toronto', N'ON', N'Canada', N'M6J 1V1')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1216, N'Patterson', N'Steve', N'x4334', N'spatterson@classicmodelcars.com', 2, 1143, N'Sales Rep', CAST(0x000062EB00000000 AS DateTime), CAST(0x0000955C00000000 AS DateTime), N'923 7 ST NW', N'Lethbridge', N'AB', N'Canada', N'T1H 1Y8')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1286, N'Tseng', N'Foon Yue', N'x2248', N'ftseng@classicmodelcars.com', 3, 1143, N'Sales Rep', CAST(0x00006A8200000000 AS DateTime), CAST(0x0000932000000000 AS DateTime), N'1111 6 Ave SW', N'Calgary', N'AB', N'Canada', N'T2P 5M5')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1323, N'Vanauf', N'George', N'x4102', N'gvanauf@classicmodelcars.com', 3, 1143, N'Sales Rep', CAST(0x00006ACA00000000 AS DateTime), CAST(0x0000927700000000 AS DateTime), N'732 Broadway', N'Vancouver', N'BC', N'Canada', N'V1Q 9A9')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1337, N'Bondur', N'Loui', N'x6493', N'lbondur@classicmodelcars.com', 4, 1102, N'Sales Rep', CAST(0x00006AD500000000 AS DateTime), CAST(0x000091EA00000000 AS DateTime), N'456 Bridgeport', N'Richmond', N'BC', N'Canada', N'V8Z 7F1')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1370, N'Hernandez', N'Gerard', N'x2028', N'ghernande@classicmodelcars.com', 4, 1102, N'Sales Rep', CAST(0x0000546E00000000 AS DateTime), CAST(0x0000920800000000 AS DateTime), N'925 8 Ave SW', N'Calgary', N'AB', N'Canada', N'T2P 2T3')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1401, N'Castillo', N'Pamela', N'x2759', N'pcastillo@classicmodelcars.com', 4, 1102, N'Sales Rep', CAST(0x000059E800000000 AS DateTime), CAST(0x0000934900000000 AS DateTime), N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1501, N'Bott', N'Larry', N'x2311', N'lbott@classicmodelcars.com', 7, 1102, N'Sales Rep', CAST(0x00006A3F00000000 AS DateTime), CAST(0x0000953500000000 AS DateTime), N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1504, N'Jones', N'Barry', N'x102', N'bjones@classicmodelcars.com', 7, 1102, N'Sales Rep', CAST(0x0000454200000000 AS DateTime), CAST(0x000093A600000000 AS DateTime), N'683 10 Street SW', N'Calgary', N'AB', N'Canada', N'T2P 5G3')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1611, N'Fixter', N'Andy', N'x101', N'afixter@classicmodelcars.com', 6, 1088, N'Sales Rep', CAST(0x000065FC00000000 AS DateTime), CAST(0x0000952100000000 AS DateTime), N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1612, N'Marsh', N'Peter', N'x102', N'pmarsh@classicmodelcars.com', 6, 1088, N'Sales Rep', CAST(0x000069AE00000000 AS DateTime), CAST(0x0000947300000000 AS DateTime), N'234 120 St', N'Surrey', N'BC', N'Canada', N'V1S 4L7')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1619, N'King', N'Tom', N'x103', N'tking@classicmodelcars.com', 6, 1088, N'Sales Rep', CAST(0x000064FD00000000 AS DateTime), CAST(0x0000958D00000000 AS DateTime), N'590 Columbia Boulevard West', N'Lethbridge', N'AB', N'Canada', N'T1K 5N8')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1621, N'Nishi', N'Mami', N'x101', N'mnishi@classicmodelcars.com', 5, 1056, N'Sales Rep', CAST(0x00005E2200000000 AS DateTime), CAST(0x0000949A00000000 AS DateTime), N'7727B 41 Ave', N'Calgary', N'AB', N'Canada', N'T3B 1Y7')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1625, N'Kato', N'Yoshimi', N'x102', N'ykato@classicmodelcars.com', 5, 1621, N'Sales Rep', CAST(0x0000548100000000 AS DateTime), CAST(0x0000936500000000 AS DateTime), N'825 8 Ave SW', N'Calgary', N'AB', N'Canada', N'T2P 2T3')
GO
INSERT [dbo].[Employee] ([employeeID], [lastName], [firstName], [extension], [email], [officeID], [reportsTo], [jobTitle], [birthDate], [hireDate], [addressLine], [city], [stateOrProvince], [country], [postalCode]) VALUES (1702, N'Gerard', N'Martin', N'x2312', N'mgerard@classicmodelcars.com', 4, 1102, N'Sales Rep', CAST(0x00006A7200000000 AS DateTime), CAST(0x0000950900000000 AS DateTime), N'5827 Bowness Road NW', N'Calgary', N'AB', N'Canada', N'T3B 0C5')
GO
INSERT [dbo].[Office] ([officeID], [city], [phone], [addressLine1], [addressLine2], [state], [country], [postalCode], [territory]) VALUES (1, N'San Francisco', N'+1 650 219 4782', N'100 Market Street', N'Suite 300', N'CA', N'USA', N'94080', N'NA')
GO
INSERT [dbo].[Office] ([officeID], [city], [phone], [addressLine1], [addressLine2], [state], [country], [postalCode], [territory]) VALUES (2, N'Boston', N'+1 215 837 0825', N'1550 Court Place', N'Suite 102', N'MA', N'USA', N'02107', N'NA')
GO
INSERT [dbo].[Office] ([officeID], [city], [phone], [addressLine1], [addressLine2], [state], [country], [postalCode], [territory]) VALUES (3, N'NYC', N'+1 212 555 3000', N'523 East 53rd Street', N'apt. 5A', N'NY', N'USA', N'10022', N'NA')
GO
INSERT [dbo].[Office] ([officeID], [city], [phone], [addressLine1], [addressLine2], [state], [country], [postalCode], [territory]) VALUES (4, N'Paris', N'+33 14 723 4404', N'43 Rue Jouffroy D''abbans', NULL, NULL, N'France', N'75017', N'EMEA')
GO
INSERT [dbo].[Office] ([officeID], [city], [phone], [addressLine1], [addressLine2], [state], [country], [postalCode], [territory]) VALUES (5, N'Tokyo', N'+81 33 224 5000', N'4-1 Kioicho', NULL, N'Chiyoda-Ku', N'Japan', N'102-8578', N'Japan')
GO
INSERT [dbo].[Office] ([officeID], [city], [phone], [addressLine1], [addressLine2], [state], [country], [postalCode], [territory]) VALUES (6, N'Sydney', N'+61 2 9264 2451', N'5-11 Wentworth Avenue', N'Floor #2', NULL, N'Australia', N'NSW 2010', N'APAC')
GO
INSERT [dbo].[Office] ([officeID], [city], [phone], [addressLine1], [addressLine2], [state], [country], [postalCode], [territory]) VALUES (7, N'London', N'+44 20 7877 2041', N'25 Old Broad Street', N'Level 7', NULL, N'UK', N'EC2N 1HN', N'EMEA')
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (103, N'JM555205', CAST(0x0000938F00000000 AS DateTime), 14571.44)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (103, N'HQ336336', CAST(0x0000958500000000 AS DateTime), 6066.78)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (103, N'OM314933', CAST(0x000095C100000000 AS DateTime), 1676.14)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (112, N'HQ55022', CAST(0x0000939000000000 AS DateTime), 32641.98)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (112, N'ND748579', CAST(0x0000954900000000 AS DateTime), 33347.88)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (112, N'BO864823', CAST(0x000095C000000000 AS DateTime), 14191.12)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (114, N'GG31455', CAST(0x0000937F00000000 AS DateTime), 45864.03)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (114, N'NP603840', CAST(0x0000938A00000000 AS DateTime), 7565.08)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (114, N'NR27552', CAST(0x000094A600000000 AS DateTime), 44894.74)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (114, N'MA765515', CAST(0x000095BE00000000 AS DateTime), 82261.22)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (119, N'LN373447', CAST(0x0000953D00000000 AS DateTime), 47924.19)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (119, N'DB933704', CAST(0x0000959F00000000 AS DateTime), 19501.82)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (119, N'NG94694', CAST(0x0000960300000000 AS DateTime), 49523.67)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (121, N'DB889831', CAST(0x0000932200000000 AS DateTime), 50218.95)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (121, N'FD317790', CAST(0x0000942000000000 AS DateTime), 1491.38)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (121, N'KI831359', CAST(0x0000959500000000 AS DateTime), 17876.32)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (121, N'MA302151', CAST(0x000095AD00000000 AS DateTime), 34638.14)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (124, N'CQ287967', CAST(0x0000935800000000 AS DateTime), 11044.3)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (124, N'KI131716', CAST(0x000093D600000000 AS DateTime), 111654.4)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (124, N'NT141748', CAST(0x0000943C00000000 AS DateTime), 45084.38)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (124, N'LF217299', CAST(0x000094B600000000 AS DateTime), 43369.3)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (124, N'BG255406', CAST(0x0000955100000000 AS DateTime), 85410.87)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (124, N'HR86578', CAST(0x0000959300000000 AS DateTime), 55639.66)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (124, N'HI366474', CAST(0x000095CA00000000 AS DateTime), 47142.7)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (124, N'AE215433', CAST(0x0000960E00000000 AS DateTime), 101244.59)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (124, N'ET64396', CAST(0x0000963800000000 AS DateTime), 83598.04)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (128, N'DI925118', CAST(0x0000930F00000000 AS DateTime), 10549.01)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (128, N'FA465482', CAST(0x0000941600000000 AS DateTime), 24101.81)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (128, N'FH668230', CAST(0x000094B400000000 AS DateTime), 33820.62)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (128, N'IP383901', CAST(0x000095A300000000 AS DateTime), 7466.32)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (129, N'PI42991', CAST(0x0000935600000000 AS DateTime), 16537.85)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (129, N'ID449593', CAST(0x0000944C00000000 AS DateTime), 23923.93)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (129, N'DM826140', CAST(0x000095B700000000 AS DateTime), 26248.78)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (131, N'CL442705', CAST(0x0000933A00000000 AS DateTime), 22292.62)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (131, N'NB445135', CAST(0x0000955F00000000 AS DateTime), 35321.97)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (131, N'MA724562', CAST(0x000095B100000000 AS DateTime), 50025.35)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'JN722010', CAST(0x0000932B00000000 AS DateTime), 40206.2)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'AU364101', CAST(0x000093BB00000000 AS DateTime), 36251.03)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'JN355280', CAST(0x0000941E00000000 AS DateTime), 49539.37)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'KT52578', CAST(0x0000944A00000000 AS DateTime), 63843.55)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'HJ32686', CAST(0x0000947E00000000 AS DateTime), 59830.55)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'NU627706', CAST(0x000094EA00000000 AS DateTime), 26155.91)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'MC46946', CAST(0x0000951F00000000 AS DateTime), 35420.74)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'MF629602', CAST(0x0000954500000000 AS DateTime), 20009.53)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'DB583216', CAST(0x0000959200000000 AS DateTime), 36140.38)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'ID10962', CAST(0x000095CE00000000 AS DateTime), 116208.4)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'JE105477', CAST(0x0000961B00000000 AS DateTime), 120166.58)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'IN446258', CAST(0x0000962200000000 AS DateTime), 65071.26)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (141, N'DL460618', CAST(0x0000965900000000 AS DateTime), 46895.48)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (144, N'LA685678', CAST(0x0000935600000000 AS DateTime), 7674.94)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (144, N'IR846303', CAST(0x000095BB00000000 AS DateTime), 36005.71)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (145, N'JJ246391', CAST(0x0000932600000000 AS DateTime), 53959.21)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (145, N'ED39322', CAST(0x000094D500000000 AS DateTime), 28211.7)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (145, N'CN328545', CAST(0x0000951900000000 AS DateTime), 4710.73)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (145, N'HR182688', CAST(0x000095B000000000 AS DateTime), 20564.86)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (146, N'LJ160635', CAST(0x0000944B00000000 AS DateTime), 39712.1)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (146, N'FU793410', CAST(0x0000947000000000 AS DateTime), 49614.72)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (146, N'FP549817', CAST(0x000094AE00000000 AS DateTime), 40978.53)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (148, N'BI507030', CAST(0x0000936300000000 AS DateTime), 44380.15)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (148, N'KM172879', CAST(0x0000945B00000000 AS DateTime), 105743)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (148, N'DD635282', CAST(0x0000954000000000 AS DateTime), 2611.84)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (148, N'ME497970', CAST(0x0000962400000000 AS DateTime), 3516.04)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (151, N'IP568906', CAST(0x0000939C00000000 AS DateTime), 58841.35)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (151, N'BF686658', CAST(0x0000945700000000 AS DateTime), 58793.53)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (151, N'GB852215', CAST(0x0000953000000000 AS DateTime), 20314.44)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (151, N'KI884577', CAST(0x000095BD00000000 AS DateTime), 39964.63)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (157, N'NN711988', CAST(0x0000955B00000000 AS DateTime), 63357.13)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (157, N'HI618861', CAST(0x000095A400000000 AS DateTime), 35152.12)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (161, N'NI908214', CAST(0x000093CC00000000 AS DateTime), 38675.13)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (161, N'BR478494', CAST(0x0000943500000000 AS DateTime), 50743.65)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (161, N'BR352384', CAST(0x0000959F00000000 AS DateTime), 2434.25)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (161, N'KG644125', CAST(0x000095EF00000000 AS DateTime), 12692.19)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (166, N'LA318629', CAST(0x0000949B00000000 AS DateTime), 22474.17)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (166, N'DC979307', CAST(0x0000951D00000000 AS DateTime), 44160.92)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (166, N'BQ327613', CAST(0x0000956400000000 AS DateTime), 38785.48)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (167, N'GN228846', CAST(0x0000944400000000 AS DateTime), 85024.46)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (167, N'ED743615', CAST(0x0000956700000000 AS DateTime), 12538.01)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (171, N'IL104425', CAST(0x0000943900000000 AS DateTime), 42783.81)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (171, N'GB878038', CAST(0x000094AB00000000 AS DateTime), 18997.89)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (172, N'EH208589', CAST(0x0000936100000000 AS DateTime), 33383.14)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (172, N'AD832091', CAST(0x0000955D00000000 AS DateTime), 1960.8)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (172, N'CE51751', CAST(0x000095B300000000 AS DateTime), 51209.58)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (173, N'IG462397', CAST(0x000094B900000000 AS DateTime), 20355.24)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (173, N'GP545698', CAST(0x000094E600000000 AS DateTime), 11843.45)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (175, N'IO448913', CAST(0x0000943600000000 AS DateTime), 24879.08)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (175, N'PI15215', CAST(0x0000952000000000 AS DateTime), 42044.77)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (175, N'CITI3434344', CAST(0x0000965900000000 AS DateTime), 28500.78)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (177, N'CI381435', CAST(0x0000947300000000 AS DateTime), 47177.59)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (177, N'AU750837', CAST(0x000094CC00000000 AS DateTime), 15183.63)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (181, N'GQ132144', CAST(0x0000931100000000 AS DateTime), 5494.78)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (181, N'CM564612', CAST(0x000094D400000000 AS DateTime), 22602.36)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (181, N'OH367219', CAST(0x000095A100000000 AS DateTime), 44400.5)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (186, N'AK412714', CAST(0x0000941F00000000 AS DateTime), 37602.48)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (186, N'KA602407', CAST(0x0000958700000000 AS DateTime), 34341.08)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (186, N'AE192287', CAST(0x0000961300000000 AS DateTime), 23602.9)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (187, N'KL124726', CAST(0x0000934900000000 AS DateTime), 48425.69)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (187, N'AM968797', CAST(0x0000959400000000 AS DateTime), 52825.29)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (187, N'BQ39062', CAST(0x000095B700000000 AS DateTime), 47159.11)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (189, N'NM916675', CAST(0x0000949D00000000 AS DateTime), 32538.74)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (189, N'BO711618', CAST(0x0000957500000000 AS DateTime), 17359.53)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (198, N'HQ920205', CAST(0x000093AE00000000 AS DateTime), 6036.96)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (198, N'IS946883', CAST(0x0000956900000000 AS DateTime), 5858.56)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (198, N'FI192930', CAST(0x000095B500000000 AS DateTime), 9658.74)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (201, N'DP677013', CAST(0x0000941800000000 AS DateTime), 23908.24)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (201, N'OO846801', CAST(0x0000950700000000 AS DateTime), 37258.94)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (202, N'HI358554', CAST(0x0000945300000000 AS DateTime), 36527.61)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (202, N'IQ627690', CAST(0x0000959900000000 AS DateTime), 33594.58)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (204, N'GC697638', CAST(0x0000954200000000 AS DateTime), 51152.86)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (204, N'IS150005', CAST(0x0000956C00000000 AS DateTime), 4424.4)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (205, N'LL562733', CAST(0x000093EB00000000 AS DateTime), 50342.74)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (205, N'GL756480', CAST(0x0000944500000000 AS DateTime), 3879.96)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (205, N'NM739638', CAST(0x000095F300000000 AS DateTime), 39580.6)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (209, N'PH785937', CAST(0x000094DD00000000 AS DateTime), 36069.26)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (209, N'ED520529', CAST(0x0000950D00000000 AS DateTime), 4632.31)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (209, N'BOAF82044', CAST(0x0000964900000000 AS DateTime), 35157.75)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (211, N'BJ535230', CAST(0x0000944A00000000 AS DateTime), 45480.79)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (216, N'BG407567', CAST(0x0000937400000000 AS DateTime), 3101.4)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (216, N'MM342086', CAST(0x0000944F00000000 AS DateTime), 40473.86)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (216, N'ML780814', CAST(0x000095B500000000 AS DateTime), 24945.21)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (219, N'BR941480', CAST(0x0000941600000000 AS DateTime), 4465.85)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (219, N'BN17870', CAST(0x0000960B00000000 AS DateTime), 3452.75)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (227, N'MQ413968', CAST(0x0000942300000000 AS DateTime), 36164.46)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (227, N'NU21326', CAST(0x0000959300000000 AS DateTime), 53745.34)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (233, N'JG981190', CAST(0x0000943500000000 AS DateTime), 16909.84)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (233, N'II180006', CAST(0x0000951700000000 AS DateTime), 22997.45)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (233, N'BOFA23232', CAST(0x0000965A00000000 AS DateTime), 29070.38)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (239, N'NQ865547', CAST(0x000094AB00000000 AS DateTime), 80375.24)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (240, N'JO719695', CAST(0x000094B800000000 AS DateTime), 24995.61)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (240, N'IF245157', CAST(0x000095A100000000 AS DateTime), 46788.14)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (242, N'KI744716', CAST(0x000093BD00000000 AS DateTime), 14232.7)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (242, N'AF40894', CAST(0x0000943900000000 AS DateTime), 33818.34)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (242, N'HR224331', CAST(0x0000966800000000 AS DateTime), 12432.32)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (249, N'NE404084', CAST(0x0000955800000000 AS DateTime), 48298.99)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (249, N'IJ399820', CAST(0x0000956700000000 AS DateTime), 33924.24)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (250, N'HN114306', CAST(0x000093BA00000000 AS DateTime), 23419.47)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (250, N'HD284647', CAST(0x000095CD00000000 AS DateTime), 26311.63)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (250, N'EQ12267', CAST(0x0000965700000000 AS DateTime), 17928.09)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (256, N'EP227123', CAST(0x0000948900000000 AS DateTime), 5759.42)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (256, N'HE84936', CAST(0x0000958800000000 AS DateTime), 53116.99)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (259, N'GB361972', CAST(0x0000944800000000 AS DateTime), 27988.47)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (259, N'EU280955', CAST(0x0000959700000000 AS DateTime), 61234.67)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (260, N'NH776924', CAST(0x000094D300000000 AS DateTime), 29284.42)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (260, N'IO164641', CAST(0x0000955300000000 AS DateTime), 37527.58)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (276, N'LE432182', CAST(0x0000940200000000 AS DateTime), 41554.73)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (276, N'KM841847', CAST(0x0000943000000000 AS DateTime), 38547.19)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (276, N'EM979878', CAST(0x000095F600000000 AS DateTime), 27083.78)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (276, N'OJ819725', CAST(0x0000964600000000 AS DateTime), 29848.52)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (278, N'GP636783', CAST(0x0000933000000000 AS DateTime), 52151.81)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (278, N'NI983021', CAST(0x0000943B00000000 AS DateTime), 37723.79)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (278, N'BJ483870', CAST(0x000095B400000000 AS DateTime), 37654.09)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (282, N'IA793562', CAST(0x000093CA00000000 AS DateTime), 24013.52)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (282, N'JT819493', CAST(0x0000953700000000 AS DateTime), 35806.73)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (282, N'OD327378', CAST(0x000095D100000000 AS DateTime), 31835.36)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (286, N'KH910279', CAST(0x0000955900000000 AS DateTime), 43134.04)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (286, N'DR578578', CAST(0x0000958E00000000 AS DateTime), 47411.33)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (298, N'AJ574927', CAST(0x000094A900000000 AS DateTime), 47375.92)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (298, N'LF501133', CAST(0x0000956600000000 AS DateTime), 61402)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (299, N'AD304085', CAST(0x0000941C00000000 AS DateTime), 36798.88)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (299, N'NR157385', CAST(0x0000955900000000 AS DateTime), 32260.16)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (311, N'FA728475', CAST(0x0000940A00000000 AS DateTime), 32723.04)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (311, N'NQ966143', CAST(0x000094D400000000 AS DateTime), 16212.59)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (311, N'DG336041', CAST(0x000095FC00000000 AS DateTime), 46770.52)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (314, N'MD809704', CAST(0x0000949F00000000 AS DateTime), 16901.38)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (314, N'LQ244073', CAST(0x0000953E00000000 AS DateTime), 45352.47)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (319, N'OM548174', CAST(0x0000944800000000 AS DateTime), 36092.4)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (319, N'HL685576', CAST(0x0000959700000000 AS DateTime), 42339.76)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (320, N'HO576374', CAST(0x000093DB00000000 AS DateTime), 41016.75)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (320, N'MU817160', CAST(0x0000943B00000000 AS DateTime), 52548.49)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (320, N'GJ597719', CAST(0x000095E000000000 AS DateTime), 8307.28)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (321, N'DJ15149', CAST(0x0000942600000000 AS DateTime), 85559.12)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (321, N'LA556321', CAST(0x0000961800000000 AS DateTime), 46781.66)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (323, N'HG738664', CAST(0x000093AD00000000 AS DateTime), 2880)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (323, N'ES347491', CAST(0x0000951000000000 AS DateTime), 37281.36)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (323, N'PQ803830', CAST(0x000095C700000000 AS DateTime), 39440.59)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (323, N'AL493079', CAST(0x0000965D00000000 AS DateTime), 75020.13)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (324, N'FP443161', CAST(0x000093AF00000000 AS DateTime), 29429.14)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (324, N'HB150714', CAST(0x0000943A00000000 AS DateTime), 37455.77)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (324, N'DQ409197', CAST(0x000095BC00000000 AS DateTime), 13671.82)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (328, N'EN930356', CAST(0x000094CB00000000 AS DateTime), 7178.66)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (328, N'NR631421', CAST(0x000094F700000000 AS DateTime), 31102.85)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (333, N'JK479662', CAST(0x0000941500000000 AS DateTime), 9821.32)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (333, N'HL209210', CAST(0x0000943200000000 AS DateTime), 23936.53)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (333, N'NF959653', CAST(0x0000960A00000000 AS DateTime), 21432.31)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (334, N'HH517378', CAST(0x000093D700000000 AS DateTime), 29716.86)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (334, N'LF737277', CAST(0x000094EF00000000 AS DateTime), 28394.54)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (334, N'CS435306', CAST(0x000095E900000000 AS DateTime), 45785.34)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (339, N'DA98827', CAST(0x0000943F00000000 AS DateTime), 34606.28)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (339, N'AP286625', CAST(0x0000958A00000000 AS DateTime), 23333.06)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (344, N'AF246722', CAST(0x0000943B00000000 AS DateTime), 31428.21)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (344, N'NJ906924', CAST(0x000094BD00000000 AS DateTime), 15322.93)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (347, N'LG808674', CAST(0x0000941C00000000 AS DateTime), 20452.5)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (347, N'DG700707', CAST(0x0000947200000000 AS DateTime), 21053.69)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (350, N'CI471510', CAST(0x0000938400000000 AS DateTime), 50824.66)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (350, N'BQ602907', CAST(0x000095BA00000000 AS DateTime), 18888.31)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (350, N'OB648482', CAST(0x000095EB00000000 AS DateTime), 1834.56)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (353, N'GT878649', CAST(0x0000938000000000 AS DateTime), 16700.47)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (353, N'ED878227', CAST(0x000093BD00000000 AS DateTime), 13920.26)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (353, N'CO351193', CAST(0x000095D800000000 AS DateTime), 49705.52)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (353, N'HJ618252', CAST(0x0000966E00000000 AS DateTime), 46656.94)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (357, N'AG240323', CAST(0x0000945100000000 AS DateTime), 20220.04)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (357, N'NB291497', CAST(0x000094E800000000 AS DateTime), 36442.34)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (362, N'FP170292', CAST(0x0000952100000000 AS DateTime), 18473.71)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (362, N'OG208861', CAST(0x0000956900000000 AS DateTime), 15059.76)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (363, N'IS232033', CAST(0x0000930300000000 AS DateTime), 10223.83)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (363, N'PN238558', CAST(0x0000944600000000 AS DateTime), 55425.77)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (363, N'HL575273', CAST(0x000095A200000000 AS DateTime), 50799.69)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (379, N'FR499138', CAST(0x000093F600000000 AS DateTime), 32680.31)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (379, N'GB890854', CAST(0x0000953700000000 AS DateTime), 12530.51)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (379, N'CA762595', CAST(0x000095F900000000 AS DateTime), 28322.83)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (381, N'CC475233', CAST(0x0000936000000000 AS DateTime), 1627.56)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (381, N'MS154481', CAST(0x000093DD00000000 AS DateTime), 1128.2)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (381, N'BC726082', CAST(0x000095B200000000 AS DateTime), 12081.52)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (381, N'GB117430', CAST(0x000095F000000000 AS DateTime), 14379.9)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (382, N'CC871084', CAST(0x0000937700000000 AS DateTime), 35826.33)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (382, N'CT821147', CAST(0x0000953600000000 AS DateTime), 6419.84)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (382, N'PH29054', CAST(0x000095AC00000000 AS DateTime), 42813.83)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (385, N'EK785462', CAST(0x0000933700000000 AS DateTime), 51001.22)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (385, N'BN347084', CAST(0x0000944300000000 AS DateTime), 20644.24)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (385, N'CP804873', CAST(0x000095A400000000 AS DateTime), 15822.84)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (386, N'DO106109', CAST(0x0000943500000000 AS DateTime), 38524.29)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (386, N'HG438769', CAST(0x0000952800000000 AS DateTime), 51619.02)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (398, N'DO787644', CAST(0x0000950D00000000 AS DateTime), 22037.91)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (398, N'KB54275', CAST(0x000095AE00000000 AS DateTime), 48927.64)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (398, N'AJ478695', CAST(0x000095FB00000000 AS DateTime), 33967.73)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (398, N'JPMR4544', CAST(0x0000965800000000 AS DateTime), 615.45)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (406, N'HJ217687', CAST(0x0000947C00000000 AS DateTime), 49165.16)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (406, N'NA197101', CAST(0x0000950900000000 AS DateTime), 25080.96)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (406, N'BJMPR4545', CAST(0x0000963F00000000 AS DateTime), 12190.85)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (412, N'PJ434867', CAST(0x000094C900000000 AS DateTime), 31670.37)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (412, N'GH197075', CAST(0x0000952F00000000 AS DateTime), 35034.57)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (415, N'ER54537', CAST(0x0000957000000000 AS DateTime), 31310.09)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (424, N'LM271923', CAST(0x0000935D00000000 AS DateTime), 21665.98)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (424, N'OA595449', CAST(0x0000942300000000 AS DateTime), 22042.37)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (424, N'KF480160', CAST(0x000095B600000000 AS DateTime), 25505.98)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (447, N'ER615123', CAST(0x000093A300000000 AS DateTime), 17032.29)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (447, N'AO757239', CAST(0x000093F500000000 AS DateTime), 6631.36)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (447, N'OU516561', CAST(0x000095C000000000 AS DateTime), 26304.13)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (448, N'KR822727', CAST(0x0000957200000000 AS DateTime), 48809.9)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (448, N'FS299615', CAST(0x0000963A00000000 AS DateTime), 27966.54)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (450, N'EF485824', CAST(0x0000950D00000000 AS DateTime), 59551.38)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (452, N'ED473873', CAST(0x0000943200000000 AS DateTime), 27121.9)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (452, N'FN640986', CAST(0x0000943700000000 AS DateTime), 15130.97)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (452, N'HG635467', CAST(0x0000964900000000 AS DateTime), 8807.12)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (455, N'HA777606', CAST(0x0000944600000000 AS DateTime), 38139.18)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (455, N'IR662429', CAST(0x000094E500000000 AS DateTime), 32239.47)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (456, N'MO743231', CAST(0x000094D900000000 AS DateTime), 1679.92)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (456, N'GJ715659', CAST(0x0000959E00000000 AS DateTime), 27550.51)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (458, N'OO606861', CAST(0x0000939700000000 AS DateTime), 57131.92)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (458, N'NA377824', CAST(0x0000948500000000 AS DateTime), 22162.61)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (458, N'DD995006', CAST(0x000095A000000000 AS DateTime), 33145.56)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (462, N'GC60330', CAST(0x0000942B00000000 AS DateTime), 9977.85)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (462, N'PE176846', CAST(0x000095AC00000000 AS DateTime), 48355.87)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (462, N'ED203908', CAST(0x0000963700000000 AS DateTime), 30293.77)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (471, N'CO645196', CAST(0x0000944B00000000 AS DateTime), 35505.63)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (471, N'AB661578', CAST(0x0000953200000000 AS DateTime), 9415.13)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (473, N'PC688499', CAST(0x0000941F00000000 AS DateTime), 17746.26)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (473, N'LL427009', CAST(0x0000949000000000 AS DateTime), 7612.06)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (475, N'JP113227', CAST(0x0000944A00000000 AS DateTime), 7678.25)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (475, N'PB951268', CAST(0x0000948C00000000 AS DateTime), 36070.47)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (484, N'JH546765', CAST(0x0000944000000000 AS DateTime), 47513.19)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (484, N'GK294076', CAST(0x0000958C00000000 AS DateTime), 3474.66)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (486, N'JB117768', CAST(0x0000934200000000 AS DateTime), 25833.14)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (486, N'BL66528', CAST(0x000094C900000000 AS DateTime), 5899.38)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (486, N'HS86661', CAST(0x000095A800000000 AS DateTime), 45994.07)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (487, N'AH612904', CAST(0x0000940200000000 AS DateTime), 29997.09)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (487, N'PT550181', CAST(0x0000949C00000000 AS DateTime), 12573.28)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (489, N'OC773849', CAST(0x0000944500000000 AS DateTime), 22275.73)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (489, N'PO860906', CAST(0x0000947F00000000 AS DateTime), 7310.42)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (495, N'BH167026', CAST(0x0000945B00000000 AS DateTime), 59265.14)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (495, N'FN155234', CAST(0x000094E700000000 AS DateTime), 6276.6)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (496, N'MB342426', CAST(0x000093B800000000 AS DateTime), 32077.44)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (496, N'MN89921', CAST(0x000095CE00000000 AS DateTime), 52166)
GO
INSERT [dbo].[Payment] ([customerID], [checkNumber], [paymentDate], [amount]) VALUES (496, N'EU531600', CAST(0x0000965F00000000 AS DateTime), 30253.75)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S10_1678', N'1969 Harley Davidson Ultimate Chopper', 5, N'1:10', 7, N'This replica features working kickstand, front suspension, gear-shift lever, footbrake lever, drive chain, wheels and steering. All parts are particularly delicate due to their precise scale and require special care and attention.', 7933, 48.81, 95.7)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S10_1949', N'1952 Alpine Renault 1300', 6, N'1:10', 3, N'Turnable front wheels; steering function; detailed interior; detailed engine; opening hood; opening trunk; opening doors; and detailed chassis.', 7305, 98.58, 214.3)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S10_2016', N'1996 Moto Guzzi 1100i', 5, N'1:10', 6, N'Official Moto Guzzi logos and insignias, saddle bags located on side of motorcycle, detailed engine, working steering, working suspension, two leather seats, luggage rack, dual exhaust pipes, small saddle bag located on handle bars, two-tone paint with chrome accents, superior die-cast detail , rotating wheels , working kick stand, diecast metal with plastic parts and baked enamel finish.', 6625, 68.99, 118.94)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S10_4698', N'2003 Harley-Davidson Eagle Drag Bike', 5, N'1:10', 9, N'Model features, official Harley Davidson logos and insignias, detachable rear wheelie bar, heavy diecast metal with resin parts, authentic multi-color tampo-printed graphics, separate engine drive belts, free-turning front fork, rotating tires and rear racing slick, certificate of authenticity, detailed engine, display stand
, precision diecast replica, baked enamel finish, 1:10 scale model, removable fender, seat and tank cover piece for displaying the superior detail of the v-twin engine', 5582, 91.02, 193.66)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S10_4757', N'1972 Alfa Romeo GTA', 6, N'1:10', 8, N'Features include: Turnable front wheels; steering function; detailed interior; detailed engine; opening hood; opening trunk; opening doors; and detailed chassis.', 3252, 85.68, 136)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S10_4962', N'1962 LanciaA Delta 16V', 6, N'1:10', 10, N'Features include: Turnable front wheels; steering function; detailed interior; detailed engine; opening hood; opening trunk; opening doors; and detailed chassis.', 6791, 103.42, 147.74)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_1099', N'1968 Ford Mustang', 6, N'1:12', 1, N'Hood, doors and trunk all open to reveal highly detailed interior features. Steering wheel actually turns the front wheels. Color dark green.', 68, 95.34, 194.57)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_1108', N'2001 Ferrari Enzo', 6, N'1:12', 10, N'Turnable front wheels; steering function; detailed interior; detailed engine; opening hood; opening trunk; opening doors; and detailed chassis.', 3619, 95.59, 207.8)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_1666', N'1958 Setra Bus', 7, N'1:12', 13, N'Model features 30 windows, skylights & glare resistant glass, working steering system, original logos', 1579, 77.9, 136.67)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_2823', N'2002 Suzuki XREO', 5, N'1:12', 12, N'Official logos and insignias, saddle bags located on side of motorcycle, detailed engine, working steering, working suspension, two leather seats, luggage rack, dual exhaust pipes, small saddle bag located on handle bars, two-tone paint with chrome accents, superior die-cast detail , rotating wheels , working kick stand, diecast metal with plastic parts and baked enamel finish.', 9997, 66.27, 150.62)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_3148', N'1969 Corvair Monza', 6, N'1:18', 13, N'1:18 scale die-cast about 10" long doors open, hood opens, trunk opens and wheels roll', 6906, 89.14, 151.08)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_3380', N'1968 Dodge Charger', 6, N'1:12', 13, N'1:12 scale model of a 1968 Dodge Charger. Hood, doors and trunk all open to reveal highly detailed interior features. Steering wheel actually turns the front wheels. Color black', 9123, 75.16, 117.44)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_3891', N'1969 Ford Falcon', 6, N'1:12', 10, N'Turnable front wheels; steering function; detailed interior; detailed engine; opening hood; opening trunk; opening doors; and detailed chassis.', 1049, 83.05, 173.02)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_3990', N'1970 Plymouth Hemi Cuda', 6, N'1:12', 11, N'Very detailed 1970 Plymouth Cuda model in 1:12 scale. The Cuda is generally accepted as one of the fastest original muscle cars from the 1970s. This model is a reproduction of one of the orginal 652 cars built in 1970. Red color.', 5663, 31.92, 79.8)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_4473', N'1957 Chevy Pickup', 7, N'1:12', 4, N'1:12 scale die-cast about 20" long Hood opens, Rubber wheels', 6125, 55.7, 118.5)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S12_4675', N'1969 Dodge Charger', 6, N'1:12', 13, N'Detailed model of the 1969 Dodge Charger. This model includes finely detailed interior and exterior features. Painted in red and white.', 7323, 58.73, 115.16)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_1097', N'1940 Ford Pickup Truck', 7, N'1:18', 11, N'This model features soft rubber tires, working steering, rubber mud guards, authentic Ford logos, detailed undercarriage, opening doors and hood, removable split rear gate, full size spare mounted in bed, detailed interior with opening glove box', 2613, 58.33, 116.67)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_1129', N'1993 Mazda RX-7', 6, N'1:18', 6, N'This model features, opening hood, opening doors, detailed engine, rear spoiler, opening trunk, working steering, tinted windows, baked enamel finish. Color red.', 3975, 83.51, 141.54)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_1342', N'1937 Lincoln Berline', 1, N'1:18', 8, N'Features opening engine cover, doors, trunk, and fuel filler cap. Color black', 8693, 60.62, 102.74)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_1367', N'1936 Mercedes-Benz 500K Special Roadster', 1, N'1:18', 11, N'This 1:18 scale replica is constructed of heavy die-cast metal and has all the features of the original: working doors and rumble seat, independent spring suspension, detailed interior, working steering system, and a bifold hood that reveals an engine so accurate that it even includes the wiring. All this is topped off with a baked enamel finish. Color white.', 8635, 24.26, 53.91)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_1589', N'1965 Aston Martin DB5', 6, N'1:18', 3, N'Die-cast model of the silver 1965 Aston Martin DB5 in silver. This model includes full wire wheels and doors that open with fully detailed passenger compartment. In 1:18 scale, this model measures approximately 10 inches/20 cm long.', 9042, 65.96, 124.44)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_1662', N'1980s Black Hawk Helicopter', 4, N'1:18', 9, N'1:18 scale replica of actual Army''s UH-60L BLACK HAWK Helicopter. 100% hand-assembled. Features rotating rotor blades, propeller blades and rubber wheels.', 5330, 77.27, 157.69)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_1749', N'1917 Grand Touring Sedan', 1, N'1:18', 13, N'This 1:18 scale replica of the 1917 Grand Touring car has all the features you would expect from museum quality reproductions: all four doors and bi-fold hood opening, detailed engine and instrument panel, chrome-look trim, and tufted upholstery, all topped off with a factory baked-enamel finish.', 2724, 86.7, 170)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_1889', N'1948 Porsche 356-A Roadster', 6, N'1:18', 5, N'This precision die-cast replica features opening doors, superb detail and craftsmanship, working steering system, opening forward compartment, opening rear trunk with removable spare, 4 wheel independent spring suspension as well as factory baked enamel finish.', 8826, 53.9, 77)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_1984', N'1995 Honda Civic', 6, N'1:18', 7, N'This model features, opening hood, opening doors, detailed engine, rear spoiler, opening trunk, working steering, tinted windows, baked enamel finish. Color yellow.', 9772, 93.89, 142.25)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2238', N'1998 Chrysler Plymouth Prowler', 6, N'1:18', 5, N'Turnable front wheels; steering function; detailed interior; detailed engine; opening hood; opening trunk; opening doors; and detailed chassis.', 4724, 101.51, 163.73)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2248', N'1911 Ford Town Car', 1, N'1:18', 8, N'Features opening hood, opening doors, opening trunk, wide white wall tires, front door arm rests, working steering system.', 540, 33.3, 60.54)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2319', N'1964 Mercedes Tour Bus', 7, N'1:18', 12, N'Exact replica. 100+ parts. working steering system, original logos', 8258, 74.86, 122.73)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2325', N'1932 Model A Ford J-Coupe', 1, N'1:18', 1, N'This model features grille-mounted chrome horn, lift-up louvered hood, fold-down rumble seat, working steering system, chrome-covered spare, opening doors, detailed and wired engine', 9354, 58.48, 127.13)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2432', N'1926 Ford Fire Engine', 7, N'1:18', 2, N'Gleaming red handsome appearance. Everything is here the fire hoses, ladder, axes, bells, lanterns, ready to fight any inferno.', 2018, 24.92, 60.77)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2581', N'P-51-D Mustang', 4, N'1:72', 5, N'Has retractable wheels and comes with a stand', 992, 49, 84.48)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2625', N'1936 Harley Davidson El Knucklehead', 5, N'1:18', 13, N'Intricately detailed with chrome accents and trim, official die-struck logos and baked enamel finish.', 4357, 24.23, 60.57)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2795', N'1928 Mercedes-Benz SSK', 1, N'1:18', 5, N'This 1:18 replica features grille-mounted chrome horn, lift-up louvered hood, fold-down rumble seat, working steering system, chrome-covered spare, opening doors, detailed and wired engine. Color black.', 548, 72.56, 168.75)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2870', N'1999 Indy 500 Monte Carlo SS', 6, N'1:18', 9, N'Features include opening and closing doors. Color: Red', 8164, 56.76, 132)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2949', N'1913 Ford Model T Speedster', 1, N'1:18', 2, N'This 250 part reproduction includes moving handbrakes, clutch, throttle and foot pedals, squeezable horn, detailed wired engine, removable water, gas, and oil cans, pivoting monocle windshield, all topped with a baked enamel red finish. Each replica comes with an Owners Title and Certificate of Authenticity. Color red.', 4189, 60.78, 101.31)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_2957', N'1934 Ford V8 Coupe', 1, N'1:18', 7, N'Chrome Trim, Chrome Grille, Opening Hood, Opening Doors, Opening Trunk, Detailed Engine, Working Steering System', 5649, 34.35, 62.46)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3029', N'1999 Yamaha Speed Boat', 2, N'1:18', 7, N'Exact replica. Wood and Metal. Many extras including rigging, long boats, pilot house, anchors, etc. Comes with three masts, all square-rigged.', 4259, 51.61, 86.02)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3136', N'18th Century Vintage Horse Carriage', 1, N'1:18', 9, N'Hand crafted diecast-like metal horse carriage is re-created in about 1:18 scale of antique horse carriage. This antique style metal Stagecoach is all hand-assembled with many different parts.
This collectible metal horse carriage is painted in classic Red, and features turning steering wheel and is entirely hand-finished.', 5992, 60.74, 104.72)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3140', N'1903 Ford Model A', 1, N'1:18', 12, N'Features opening trunk, working steering system', 3913, 68.3, 136.59)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3232', N'1992 Ferrari 360 Spider red', 6, N'1:18', 12, N'This replica features opening doors, superb detail and craftsmanship, working steering system, opening forward compartment, opening rear trunk with removable spare, 4 wheel independent spring suspension as well as factory baked enamel finish.', 8347, 77.9, 169.34)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3233', N'1985 Toyota Supra', 6, N'1:18', 6, N'This model features soft rubber tires, working steering, rubber mud guards, authentic Ford logos, detailed undercarriage, opening doors and hood, removable split rear gate, full size spare mounted in bed, detailed interior with opening glove box', 7733, 57.01, 107.57)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3259', N'Collectable Wooden Train', 3, N'1:18', 2, N'Hand crafted wooden toy train set is in about 1:18 scale, 25 inches in total length including 2 additional carts, of actual vintage train. This antique style wooden toy train model set is all hand-assembled with 100% wood.', 6450, 67.56, 100.84)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3278', N'1969 Dodge Super Bee', 6, N'1:18', 7, N'This replica features opening doors, superb detail and craftsmanship, working steering system, opening forward compartment, opening rear trunk with removable spare, 4 wheel independent spring suspension as well as factory baked enamel finish.', 1917, 49.05, 80.41)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3320', N'1917 Maxwell Touring Car', 1, N'1:18', 4, N'Features Gold Trim, Full Size Spare Tire, Chrome Trim, Chrome Grille, Opening Hood, Opening Doors, Opening Trunk, Detailed Engine, Working Steering System', 7913, 57.54, 99.21)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3482', N'1976 Ford Gran Torino', 6, N'1:18', 5, N'Highly detailed 1976 Ford Gran Torino "Starsky and Hutch" diecast model. Very well constructed and painted in red and white patterns.', 9127, 73.49, 146.99)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3685', N'1948 Porsche Type 356 Roadster', 6, N'1:18', 5, N'This model features working front and rear suspension on accurately replicated and actuating shock absorbers as well as opening engine cover, rear stabilizer flap, and 4 opening doors.', 8990, 62.16, 141.28)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3782', N'1957 Vespa GS150', 5, N'1:18', 11, N'Features rotating wheels , working kick stand. Comes with stand.', 7689, 32.95, 62.17)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_3856', N'1941 Chevrolet Special Deluxe Cabriolet', 1, N'1:18', 4, N'Features opening hood, opening doors, opening trunk, wide white wall tires, front door arm rests, working steering system, leather upholstery. Color black.', 2378, 64.58, 105.87)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_4027', N'1970 Triumph Spitfire', 6, N'1:18', 7, N'Features include opening and closing doors. Color: White.', 5545, 91.92, 143.62)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_4409', N'1932 Alfa Romeo 8C2300 Spider Sport', 1, N'1:18', 4, N'This 1:18 scale precision die cast replica features the 6 front headlights of the original, plus a detailed version of the 142 horsepower straight 8 engine, dual spares and their famous comprehensive dashboard. Color black.', 6553, 43.26, 92.03)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_4522', N'1904 Buick Runabout', 1, N'1:18', 4, N'Features opening trunk, working steering system', 8290, 52.66, 87.77)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_4600', N'1940s Ford truck', 7, N'1:18', 8, N'This 1940s Ford Pick-Up truck is re-created in 1:18 scale of original 1940s Ford truck. This antique style metal 1940s Ford Flatbed truck is all hand-assembled. This collectible 1940''s Pick-Up truck is painted in classic dark green color, and features rotating wheels.', 3128, 84.76, 121.08)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_4668', N'1939 Cadillac Limousine', 1, N'1:18', 11, N'Features completely detailed interior including Velvet flocked drapes,deluxe wood grain floor, and a wood grain casket with seperate chrome handles', 6645, 23.14, 50.31)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_4721', N'1957 Corvette Convertible', 6, N'1:18', 3, N'1957 die cast Corvette Convertible in Roman Red with white sides and whitewall tires. 1:18 scale quality die-cast with detailed engine and underbvody. Now you can own The Classic Corvette.', 1249, 69.93, 148.8)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S18_4933', N'1957 Ford Thunderbird', 6, N'1:18', 11, N'This 1:18 scale precision die-cast replica, with its optional porthole hardtop and factory baked-enamel Thunderbird Bronze finish, is a 100% accurate rendition of this American classic.', 3209, 34.21, 71.27)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_1046', N'1970 Chevy Chevelle SS 454', 6, N'1:24', 12, N'This model features rotating wheels, working streering system and opening doors. All parts are particularly delicate due to their precise scale and require special care and attention. It should not be picked up by the doors, roof, hood or trunk.', 1005, 49.24, 73.49)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_1444', N'1970 Dodge Coronet', 6, N'1:24', 6, N'1:24 scale die-cast about 18" long doors open, hood opens and rubber wheels', 4074, 32.37, 57.8)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_1578', N'1997 BMW R 1100 S', 5, N'1:24', 1, N'Detailed scale replica with working suspension and constructed from over 70 parts', 7003, 60.86, 112.7)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_1628', N'1966 Shelby Cobra 427 S/C', 6, N'1:24', 2, N'This diecast model of the 1966 Shelby Cobra 427 S/C includes many authentic details and operating parts. The 1:24 scale model of this iconic lighweight sports car from the 1960s comes in silver and it''s own display case.', 8197, 29.18, 50.31)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_1785', N'1928 British Royal Navy Airplane', 4, N'1:24', 3, N'Official logos and insignias', 3627, 66.74, 109.42)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_1937', N'1939 Chevrolet Deluxe Coupe', 1, N'1:24', 8, N'This 1:24 scale die-cast replica of the 1939 Chevrolet Deluxe Coupe has the same classy look as the original. Features opening trunk, hood and doors and a showroom quality baked enamel finish.', 7332, 22.57, 33.19)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2000', N'1960 BSA Gold Star DBD34', 5, N'1:24', 6, N'Detailed scale replica with working suspension and constructed from over 70 parts', 15, 37.32, 76.17)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2011', N'18th century schooner', 2, N'1:24', 2, N'All wood with canvas sails. Many extras including rigging, long boats, pilot house, anchors, etc. Comes with 4 masts, all square-rigged.', 1898, 82.34, 122.89)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2022', N'1938 Cadillac V-16 Presidential Limousine', 1, N'1:24', 3, N'This 1:24 scale precision die cast replica of the 1938 Cadillac V-16 Presidential Limousine has all the details of the original, from the flags on the front to an opening back seat compartment complete with telephone and rifle. Features factory baked-enamel black finish, hood goddess ornament, working jump seats.', 2847, 20.61, 44.8)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2300', N'1962 Volkswagen Microbus', 7, N'1:24', 1, N'This 1:18 scale die cast replica of the 1962 Microbus is loaded with features: A working steering system, opening front doors and tailgate, and famous two-tone factory baked enamel finish, are all topped of by the sliding, real fabric, sunroof.', 2327, 61.34, 127.79)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2360', N'1982 Ducati 900 Monster', 5, N'1:24', 6, N'Features two-tone paint with chrome accents, superior die-cast detail , rotating wheels , working kick stand', 6840, 47.1, 69.26)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2766', N'1949 Jaguar XK 120', 6, N'1:24', 3, N'Precision-engineered from original Jaguar specification in perfect scale ratio. Features opening doors, superb detail and craftsmanship, working steering system, opening forward compartment, opening rear trunk with removable spare, 4 wheel independent spring suspension as well as factory baked enamel finish.', 2350, 47.25, 90.87)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2840', N'1958 Chevy Corvette Limited Edition', 6, N'1:24', 2, N'The operating parts of this 1958 Chevy Corvette Limited Edition are particularly delicate due to their precise scale and require special care and attention. Features rotating wheels, working streering, opening doors and trunk. Color dark green.', 2542, 15.91, 35.36)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2841', N'1900s Vintage Bi-Plane', 4, N'1:24', 1, N'Hand crafted diecast-like metal bi-plane is re-created in about 1:24 scale of antique pioneer airplane. All hand-assembled with many different parts. Hand-painted in classic yellow and features correct markings of original airplane.', 5942, 34.25, 68.51)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2887', N'1952 Citroen-15CV', 6, N'1:24', 4, N'Precision crafted hand-assembled 1:18 scale reproduction of the 1952 15CV, with its independent spring suspension, working steering system, opening doors and hood, detailed engine and instrument panel, all topped of with a factory fresh baked enamel finish.', 1452, 72.82, 117.44)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_2972', N'1982 Lamborghini Diablo', 6, N'1:24', 10, N'This replica features opening doors, superb detail and craftsmanship, working steering system, opening forward compartment, opening rear trunk with removable spare, 4 wheel independent spring suspension as well as factory baked enamel finish.', 7723, 16.24, 37.76)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_3151', N'1912 Ford Model T Delivery Wagon', 1, N'1:24', 7, N'This model features chrome trim and grille, opening hood, opening doors, opening trunk, detailed engine, working steering system. Color white.', 9173, 46.91, 88.51)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_3191', N'1969 Chevrolet Camaro Z28', 6, N'1:24', 4, N'1969 Z/28 Chevy Camaro 1:24 scale replica. The operating parts of this limited edition 1:24 scale diecast model car 1969 Chevy Camaro Z28- hood, trunk, wheels, streering, suspension and doors- are particularly delicate due to their precise scale and require special care and attention.', 4695, 50.51, 85.61)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_3371', N'1971 Alpine Renault 1600s', 6, N'1:24', 13, N'This 1971 Alpine Renault 1600s replica Features opening doors, superb detail and craftsmanship, working steering system, opening forward compartment, opening rear trunk with removable spare, 4 wheel independent spring suspension as well as factory baked enamel finish.', 7995, 38.58, 61.23)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_3420', N'1937 Horch 930V Limousine', 1, N'1:24', 1, N'Features opening hood, opening doors, opening trunk, wide white wall tires, front door arm rests, working steering system', 2902, 26.3, 65.75)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_3432', N'2002 Chevy Corvette', 6, N'1:24', 5, N'The operating parts of this limited edition Diecast 2002 Chevy Corvette 50th Anniversary Pace car Limited Edition are particularly delicate due to their precise scale and require special care and attention. Features rotating wheels, poseable streering, opening doors and trunk.', 9446, 62.11, 107.08)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_3816', N'1940 Ford Delivery Sedan', 1, N'1:24', 2, N'Chrome Trim, Chrome Grille, Opening Hood, Opening Doors, Opening Trunk, Detailed Engine, Working Steering System. Color black.', 6621, 48.64, 83.86)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_3856', N'1956 Porsche 356A Coupe', 6, N'1:18', 3, N'Features include: Turnable front wheels; steering function; detailed interior; detailed engine; opening hood; opening trunk; opening doors; and detailed chassis.', 6600, 98.3, 140.43)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_3949', N'Corsair F4U ( Bird Cage)', 4, N'1:24', 10, N'Has retractable wheels and comes with a stand. Official logos and insignias.', 6812, 29.34, 68.24)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_3969', N'1936 Mercedes Benz 500k Roadster', 1, N'1:24', 9, N'This model features grille-mounted chrome horn, lift-up louvered hood, fold-down rumble seat, working steering system and rubber wheels. Color black.', 2081, 21.75, 41.03)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_4048', N'1992 Porsche Cayenne Turbo Silver', 6, N'1:24', 4, N'This replica features opening doors, superb detail and craftsmanship, working steering system, opening forward compartment, opening rear trunk with removable spare, 4 wheel independent spring suspension as well as factory baked enamel finish.', 6582, 69.78, 118.28)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_4258', N'1936 Chrysler Airflow', 1, N'1:24', 10, N'Features opening trunk, working steering system. Color dark green.', 4710, 57.46, 97.39)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_4278', N'1900s Vintage Tri-Plane', 4, N'1:24', 12, N'Hand crafted diecast-like metal Triplane is Re-created in about 1:24 scale of antique pioneer airplane. This antique style metal triplane is all hand-assembled with many different parts.', 2756, 36.23, 72.45)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S24_4620', N'1961 Chevrolet Impala', 6, N'1:18', 3, N'This 1:18 scale precision die-cast reproduction of the 1961 Chevrolet Impala has all the features-doors, hood and trunk that open; detailed 409 cubic-inch engine; chrome dashboard and stick shift, two-tone interior; working steering system; all topped of with a factory baked-enamel finish.', 7869, 32.33, 80.84)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S32_1268', N'1980’s GM Manhattan Express', 7, N'1:32', 8, N'This 1980’s era new look Manhattan express is still active, running from the Bronx to mid-town Manhattan. Has 35 opeining windows and working lights. Needs a battery.', 5099, 53.93, 96.31)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S32_1374', N'1997 BMW F650 ST', 5, N'1:32', 4, N'Features official die-struck logos and baked enamel finish. Comes with stand.', 178, 66.92, 99.89)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S32_2206', N'1982 Ducati 996 R', 5, N'1:32', 5, N'Features rotating wheels , working kick stand. Comes with stand.', 9241, 24.14, 40.23)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S32_2509', N'1954 Greyhound Scenicruiser', 7, N'1:32', 3, N'Model features bi-level seating, 50 windows, skylights & glare resistant glass, working steering system, original logos', 2874, 25.98, 54.11)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S32_3207', N'1950''s Chicago Surface Lines Streetcar', 3, N'1:32', 5, N'This streetcar is a joy to see. It has 80 separate windows, electric wire guides, detailed interiors with seats, poles and drivers controls, rolling and turning wheel assemblies, plus authentic factory baked-enamel finishes (Green Hornet for Chicago and Cream and Crimson for Boston).', 8601, 26.72, 62.14)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S32_3522', N'1996 Peterbilt 379 Stake Bed with Outrigger', 7, N'1:32', 9, N'This model features, opening doors, detailed engine, working steering, tinted windows, detailed interior, die-struck logos, removable stakes operating outriggers, detachable second trailer, functioning 360-degree self loader, precision molded resin trailer and trim, baked enamel finish on cab', 814, 33.61, 64.64)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S32_4289', N'1928 Ford Phaeton Deluxe', 1, N'1:32', 6, N'This model features grille-mounted chrome horn, lift-up louvered hood, fold-down rumble seat, working steering system', 136, 33.02, 68.79)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S32_4485', N'1974 Ducati 350 Mk3 Desmo', 5, N'1:32', 10, N'This model features two-tone paint with chrome accents, superior die-cast detail , rotating wheels , working kick stand', 3341, 56.13, 102.05)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S50_1341', N'1930 Buick Marquette Phaeton', 1, N'1:50', 11, N'Features opening trunk, working steering system', 7062, 27.06, 43.64)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S50_1392', N'Diamond T620 Semi-Skirted Tanker', 7, N'1:50', 6, N'This limited edition model is licensed and perfectly scaled for Lionel Trains. The Diamond T620 has been produced in solid precision diecast and painted with a fire baked enamel finish. It comes with a removable tanker and is a perfect model to add authenticity to your static train or car layout or to just have on display.', 1016, 68.29, 115.75)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S50_1514', N'1962 City of Detroit Streetcar', 3, N'1:50', 3, N'This streetcar is a joy to see. It has 99 separate windows, electric wire guides, detailed interiors with seats, poles and drivers controls, rolling and turning wheel assemblies, plus authentic factory baked-enamel finishes (Green Hornet for Chicago and Cream and Crimson for Boston).', 1645, 37.49, 58.58)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S50_4713', N'2002 Yamaha YZR M1', 5, N'1:50', 1, N'Features rotating wheels , working kick stand. Comes with stand.', 600, 34.17, 81.36)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_1138', N'The Schooner Bluenose', 2, N'1:700', 1, N'All wood with canvas sails. Measures 31 1/2 inches in Length, 22 inches High and 4 3/4 inches Wide. Many extras.
The schooner Bluenose was built in Nova Scotia in 1921 to fish the rough waters off the coast of Newfoundland. Because of the Bluenose racing prowess she became the pride of all Canadians. Still featured on stamps and the Canadian dime, the Bluenose was lost off Haiti in 1946.', 1897, 34, 66.67)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_1691', N'American Airlines: B767-300', 4, N'1:700', 7, N'Exact replia with official logos and insignias and retractable wheels', 5841, 51.15, 91.34)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_1938', N'The Mayflower', 2, N'1:700', 11, N'Measures 31 1/2 inches Long x 25 1/2 inches High x 10 5/8 inches wide
All wood with canvas sail. Extras include long boats, rigging, ladders, railing, anchors, side cannons, hand painted, etc.', 737, 43.3, 86.61)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_2047', N'HMS Bounty', 2, N'1:700', 12, N'Measures 30 inches Long x 27 1/2 inches High x 4 3/4 inches wide.
Many extras including rigging, long boats, pilot house, anchors, etc. Comes with three masts, all square-rigged.', 3501, 39.83, 90.52)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_2466', N'America West Airlines B757-200', 4, N'1:700', 8, N'Official logos and insignias. Working steering system. Rotating jet engines', 9653, 68.8, 99.72)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_2610', N'The USS Constitution Ship', 2, N'1:700', 9, N'All wood with canvas sails. Measures 31 1/2" Length x 22 3/8" High x 8 1/4" Width. Extras include 4 boats on deck, sea sprite on bow, anchors, copper railing, pilot houses, etc.', 7083, 33.97, 72.28)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_2824', N'1982 Camaro Z28', 6, N'1:18', 2, N'Features include opening and closing doors. Color: White.
Measures approximately 9 1/2" Long.', 6934, 46.53, 101.15)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_2834', N'ATA: B757-300', 4, N'1:700', 6, N'Exact replia with official logos and insignias and retractable wheels', 7106, 59.33, 118.65)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_3167', N'F/A 18 Hornet 1/72', 4, N'1:72', 8, N'10" Wingspan with retractable landing gears.Comes with pilot', 551, 54.4, 80)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_3505', N'The Titanic', 2, N'1:700', 2, N'Completed model measures 19 1/2 inches long, 9 inches high, 3inches wide and is in barn red/black. All wood and metal.', 1956, 51.09, 100.17)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_3962', N'The Queen Mary', 2, N'1:700', 13, N'Exact replica. Wood and Metal. Many extras including rigging, long boats, pilot house, anchors, etc. Comes with three masts, all square-rigged.', 5088, 53.63, 99.31)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S700_4002', N'American Airlines: MD-11S', 4, N'1:700', 10, N'Polished finish. Exact replia with official logos and insignias and retractable wheels', 8820, 36.27, 74.03)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S72_1253', N'Boeing X-32A JSF', 4, N'1:72', 8, N'10" Wingspan with retractable landing gears.Comes with pilot', 4857, 32.77, 49.66)
GO
INSERT [dbo].[Product] ([productID], [productName], [productLineID], [productScale], [productVendorCode], [productDescription], [currQuantityInStock], [currBuyPrice], [currMSRP]) VALUES (N'S72_3212', N'Pont Yacht', 2, N'1:72', 12, N'Measures 38 inches Long x 33 3/4 inches High. Includes a stand.
Many extras including rigging, long boats, pilot house, anchors, etc. Comes with 2 masts, all square-rigged', 414, 33.3, 54.6)
GO
SET IDENTITY_INSERT [dbo].[ProductLine] ON
GO
INSERT [dbo].[ProductLine] ([productLineID], [productLine], [textDescription]) VALUES (1, N'Vintage Cars', N'Our Vintage Car models realistically portray automobiles produced from the early 1900s through the 1940s. Materials used include Bakelite, diecast, plastic and wood. Most of the replicas are in the 1:18 and 1:24 scale sizes, which provide the optimum in detail and accuracy. Prices range from $30.00 up to $180.00 for some special limited edition replicas. All models include a certificate of authenticity from their manufacturers and come fully assembled and ready for display in the home or office.')
GO
INSERT [dbo].[ProductLine] ([productLineID], [productLine], [textDescription]) VALUES (2, N'Ships', N'The perfect holiday or anniversary gift for executives, clients, friends, and family. These handcrafted model ships are unique, stunning works of art that will be treasured for generations! They come fully assembled and ready for display in the home or office. We guarantee the highest quality, and best value.')
GO
INSERT [dbo].[ProductLine] ([productLineID], [productLine], [textDescription]) VALUES (3, N'Trains', N'Model trains are a rewarding hobby for enthusiasts of all ages. Whether you''re looking for collectible wooden trains, electric streetcars or locomotives, you''ll find a number of great choices for any budget within this category. The interactive aspect of trains makes toy trains perfect for young children. The wooden train sets are ideal for children under the age of 5.')
GO
INSERT [dbo].[ProductLine] ([productLineID], [productLine], [textDescription]) VALUES (4, N'Planes', N'Unique, diecast airplane and helicopter replicas suitable for collections, as well as home, office or classroom decorations. Models contain stunning details such as official logos and insignias, rotating jet engines and propellers, retractable wheels, and so on. Most come fully assembled and with a certificate of authenticity from their manufacturers.')
GO
INSERT [dbo].[ProductLine] ([productLineID], [productLine], [textDescription]) VALUES (5, N'Motorcycles', N'Our motorcycles are state of the art replicas of classic as well as contemporary motorcycle legends such as Harley Davidson, Ducati and Vespa. Models contain stunning details such as official logos, rotating wheels, working kickstand, front suspension, gear-shift lever, footbrake lever, and drive chain. Materials used include diecast and plastic. The models range in size from 1:10 to 1:50 scale and include numerous limited edition and several out-of-production vehicles. All models come fully assembled and ready for display in the home or office. Most include a certificate of authenticity.')
GO
INSERT [dbo].[ProductLine] ([productLineID], [productLine], [textDescription]) VALUES (6, N'Classic Cars', N'Attention car enthusiasts: Make your wildest car ownership dreams come true. Whether you are looking for classic muscle cars, dream sports cars or movie-inspired miniatures, you will find great choices in this category. These replicas feature superb attention to detail and craftsmanship and offer features such as working steering system, opening forward compartment, opening rear trunk with removable spare wheel, 4-wheel independent spring suspension, and so on. The models range in size from 1:10 to 1:24 scale and include numerous limited edition and several out-of-production vehicles. All models include a certificate of authenticity from their manufacturers and come fully assembled and ready for display in the home or office.')
GO
INSERT [dbo].[ProductLine] ([productLineID], [productLine], [textDescription]) VALUES (7, N'Trucks and Buses', N'The Truck and Bus models are realistic replicas of buses and specialized trucks produced from the early 1920s to present. The models range in size from 1:12 to 1:50 scale and include numerous limited edition and several out-of-production vehicles. Materials used include tin, diecast and plastic. All models include a certificate of authenticity from their manufacturers and are a perfect ornament for the home and office.')
GO
SET IDENTITY_INSERT [dbo].[ProductLine] OFF
GO
SET IDENTITY_INSERT [dbo].[ProductVendor] ON
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (1, N'Autoart Studio Design')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (2, N'Carousel DieCast Legends')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (3, N'Classic Metal Creations')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (4, N'Exoto Designs')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (5, N'Gearbox Collectibles')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (6, N'Highway 66 Mini Classics')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (7, N'Min Lin Diecast')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (8, N'Motor City Art Classics')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (9, N'Red Start Diecast')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (10, N'Second Gear Diecast')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (11, N'Studio M Art Models')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (12, N'Unimax Art Galleries')
GO
INSERT [dbo].[ProductVendor] ([productVendorID], [productVendor]) VALUES (13, N'Welly Diecast Productions')
GO
SET IDENTITY_INSERT [dbo].[ProductVendor] OFF
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10100, CAST(0x00009E6300000000 AS DateTime), CAST(0x00009E6A00000000 AS DateTime), CAST(0x00009E6700000000 AS DateTime), N'Shipped', NULL, 363)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10101, CAST(0x00009E6600000000 AS DateTime), CAST(0x00009E6F00000000 AS DateTime), CAST(0x00009E6800000000 AS DateTime), N'Shipped', N'Check on availability.', 128)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10102, CAST(0x00009E6700000000 AS DateTime), CAST(0x00009E6F00000000 AS DateTime), CAST(0x00009E6B00000000 AS DateTime), N'Shipped', NULL, 181)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10103, CAST(0x00009E7A00000000 AS DateTime), CAST(0x00009E8300000000 AS DateTime), CAST(0x00009E7E00000000 AS DateTime), N'Shipped', NULL, 121)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10104, CAST(0x00009E7C00000000 AS DateTime), CAST(0x00009E8500000000 AS DateTime), CAST(0x00009E7D00000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10105, CAST(0x00009E8700000000 AS DateTime), CAST(0x00009E9100000000 AS DateTime), CAST(0x00009E8800000000 AS DateTime), N'Shipped', NULL, 145)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10106, CAST(0x00009E8D00000000 AS DateTime), CAST(0x00009E9400000000 AS DateTime), CAST(0x00009E9100000000 AS DateTime), N'Shipped', NULL, 278)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10107, CAST(0x00009E9400000000 AS DateTime), CAST(0x00009E9B00000000 AS DateTime), CAST(0x00009E9600000000 AS DateTime), N'Shipped', N'Difficult to negotiate with customer. We need more marketing materials', 131)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10108, CAST(0x00009E9B00000000 AS DateTime), CAST(0x00009EA400000000 AS DateTime), CAST(0x00009EA000000000 AS DateTime), N'Shipped', NULL, 385)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10109, CAST(0x00009EA200000000 AS DateTime), CAST(0x00009EAB00000000 AS DateTime), CAST(0x00009EA300000000 AS DateTime), N'Shipped', N'Customer requested that FedEx Ground is used for this shipping', 486)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10110, CAST(0x00009EAA00000000 AS DateTime), CAST(0x00009EB000000000 AS DateTime), CAST(0x00009EAC00000000 AS DateTime), N'Shipped', NULL, 187)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10111, CAST(0x00009EB100000000 AS DateTime), CAST(0x00009EB700000000 AS DateTime), CAST(0x00009EB600000000 AS DateTime), N'Shipped', NULL, 129)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10112, CAST(0x00009EB000000000 AS DateTime), CAST(0x00009EBA00000000 AS DateTime), CAST(0x00009EB500000000 AS DateTime), N'Shipped', N'Customer requested that ad materials (such as posters, pamphlets) be included in the shippment', 144)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10113, CAST(0x00009EB200000000 AS DateTime), CAST(0x00009EB900000000 AS DateTime), CAST(0x00009EB300000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10114, CAST(0x00009EB800000000 AS DateTime), CAST(0x00009EBE00000000 AS DateTime), CAST(0x00009EB900000000 AS DateTime), N'Shipped', NULL, 172)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10115, CAST(0x00009EBB00000000 AS DateTime), CAST(0x00009EC300000000 AS DateTime), CAST(0x00009EBE00000000 AS DateTime), N'Shipped', NULL, 424)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10116, CAST(0x00009EC200000000 AS DateTime), CAST(0x00009ECA00000000 AS DateTime), CAST(0x00009EC400000000 AS DateTime), N'Shipped', NULL, 381)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10117, CAST(0x00009EC700000000 AS DateTime), CAST(0x00009ECF00000000 AS DateTime), CAST(0x00009EC800000000 AS DateTime), N'Shipped', NULL, 148)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10118, CAST(0x00009ECC00000000 AS DateTime), CAST(0x00009ED400000000 AS DateTime), CAST(0x00009ED100000000 AS DateTime), N'Shipped', N'Customer has worked with some of our vendors in the past and is aware of their MSRP', 216)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10119, CAST(0x00009ED300000000 AS DateTime), CAST(0x00009EDA00000000 AS DateTime), CAST(0x00009ED700000000 AS DateTime), N'Shipped', NULL, 382)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10120, CAST(0x00009ED400000000 AS DateTime), CAST(0x00009EDD00000000 AS DateTime), CAST(0x00009ED600000000 AS DateTime), N'Shipped', NULL, 114)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10121, CAST(0x00009EDC00000000 AS DateTime), CAST(0x00009EE200000000 AS DateTime), CAST(0x00009EE200000000 AS DateTime), N'Shipped', NULL, 353)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10122, CAST(0x00009EDD00000000 AS DateTime), CAST(0x00009EE500000000 AS DateTime), CAST(0x00009EE200000000 AS DateTime), N'Shipped', NULL, 350)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10123, CAST(0x00009EE900000000 AS DateTime), CAST(0x00009EF200000000 AS DateTime), CAST(0x00009EEB00000000 AS DateTime), N'Shipped', NULL, 103)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10124, CAST(0x00009EEA00000000 AS DateTime), CAST(0x00009EF200000000 AS DateTime), CAST(0x00009EEE00000000 AS DateTime), N'Shipped', N'Customer very concerned about the exact color of the models. There is high risk that he may dispute the order because there is a slight color mismatch', 112)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10125, CAST(0x00009EEA00000000 AS DateTime), CAST(0x00009EF000000000 AS DateTime), CAST(0x00009EED00000000 AS DateTime), N'Shipped', NULL, 114)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10126, CAST(0x00009EF100000000 AS DateTime), CAST(0x00009EFB00000000 AS DateTime), CAST(0x00009EF600000000 AS DateTime), N'Shipped', NULL, 458)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10127, CAST(0x00009EF700000000 AS DateTime), CAST(0x00009EFD00000000 AS DateTime), CAST(0x00009EFA00000000 AS DateTime), N'Shipped', N'Customer requested special shippment. The instructions were passed along to the warehouse', 151)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10128, CAST(0x00009EFA00000000 AS DateTime), CAST(0x00009F0000000000 AS DateTime), CAST(0x00009EFF00000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10129, CAST(0x00009F0000000000 AS DateTime), CAST(0x00009F0600000000 AS DateTime), CAST(0x00009F0200000000 AS DateTime), N'Shipped', NULL, 324)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10130, CAST(0x00009F0400000000 AS DateTime), CAST(0x00009F0C00000000 AS DateTime), CAST(0x00009F0900000000 AS DateTime), N'Shipped', NULL, 198)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10131, CAST(0x00009F0400000000 AS DateTime), CAST(0x00009F0D00000000 AS DateTime), CAST(0x00009F0900000000 AS DateTime), N'Shipped', NULL, 447)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10132, CAST(0x00009F0D00000000 AS DateTime), CAST(0x00009F1300000000 AS DateTime), CAST(0x00009F1000000000 AS DateTime), N'Shipped', NULL, 323)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10133, CAST(0x00009F0F00000000 AS DateTime), CAST(0x00009F1600000000 AS DateTime), CAST(0x00009F1500000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10134, CAST(0x00009F1300000000 AS DateTime), CAST(0x00009F1C00000000 AS DateTime), CAST(0x00009F1700000000 AS DateTime), N'Shipped', NULL, 250)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10135, CAST(0x00009F1400000000 AS DateTime), CAST(0x00009F1E00000000 AS DateTime), CAST(0x00009F1500000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10136, CAST(0x00009F1600000000 AS DateTime), CAST(0x00009F2000000000 AS DateTime), CAST(0x00009F1800000000 AS DateTime), N'Shipped', N'Customer is interested in buying more Ferrari models', 242)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10137, CAST(0x00009F1C00000000 AS DateTime), CAST(0x00009F2600000000 AS DateTime), CAST(0x00009F2000000000 AS DateTime), N'Shipped', NULL, 353)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10138, CAST(0x00009F1900000000 AS DateTime), CAST(0x00009F2200000000 AS DateTime), CAST(0x00009F1F00000000 AS DateTime), N'Shipped', NULL, 496)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10139, CAST(0x00009F2200000000 AS DateTime), CAST(0x00009F2900000000 AS DateTime), CAST(0x00009F2700000000 AS DateTime), N'Shipped', NULL, 282)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10140, CAST(0x00009F2A00000000 AS DateTime), CAST(0x00009F3300000000 AS DateTime), CAST(0x00009F3000000000 AS DateTime), N'Shipped', NULL, 161)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10141, CAST(0x00009F3200000000 AS DateTime), CAST(0x00009F3A00000000 AS DateTime), CAST(0x00009F3500000000 AS DateTime), N'Shipped', NULL, 334)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10142, CAST(0x00009F3900000000 AS DateTime), CAST(0x00009F4100000000 AS DateTime), CAST(0x00009F3E00000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10143, CAST(0x00009F3B00000000 AS DateTime), CAST(0x00009F4300000000 AS DateTime), CAST(0x00009F3D00000000 AS DateTime), N'Shipped', N'Can we deliver the new Ford Mustang models by end-of-quarter?', 320)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10144, CAST(0x00009F3E00000000 AS DateTime), CAST(0x00009F4600000000 AS DateTime), CAST(0x00009F3F00000000 AS DateTime), N'Shipped', NULL, 381)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10145, CAST(0x00009F4A00000000 AS DateTime), CAST(0x00009F5200000000 AS DateTime), CAST(0x00009F5000000000 AS DateTime), N'Shipped', NULL, 205)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10146, CAST(0x00009F5300000000 AS DateTime), CAST(0x00009F5D00000000 AS DateTime), CAST(0x00009F5600000000 AS DateTime), N'Shipped', NULL, 447)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10147, CAST(0x00009F5500000000 AS DateTime), CAST(0x00009F5C00000000 AS DateTime), CAST(0x00009F5900000000 AS DateTime), N'Shipped', NULL, 379)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10148, CAST(0x00009F5B00000000 AS DateTime), CAST(0x00009F6500000000 AS DateTime), CAST(0x00009F5F00000000 AS DateTime), N'Shipped', N'They want to reevaluate their terms agreement with Finance.', 276)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10149, CAST(0x00009F5C00000000 AS DateTime), CAST(0x00009F6200000000 AS DateTime), CAST(0x00009F6100000000 AS DateTime), N'Shipped', NULL, 487)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10150, CAST(0x00009F6300000000 AS DateTime), CAST(0x00009F6B00000000 AS DateTime), CAST(0x00009F6500000000 AS DateTime), N'Shipped', N'They want to reevaluate their terms agreement with Finance.', 148)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10151, CAST(0x00009F6500000000 AS DateTime), CAST(0x00009F6E00000000 AS DateTime), CAST(0x00009F6800000000 AS DateTime), N'Shipped', NULL, 311)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10152, CAST(0x00009F6900000000 AS DateTime), CAST(0x00009F7100000000 AS DateTime), CAST(0x00009F6F00000000 AS DateTime), N'Shipped', NULL, 333)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10153, CAST(0x00009F6C00000000 AS DateTime), CAST(0x00009F7300000000 AS DateTime), CAST(0x00009F7100000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10154, CAST(0x00009F7000000000 AS DateTime), CAST(0x00009F7A00000000 AS DateTime), CAST(0x00009F7600000000 AS DateTime), N'Shipped', NULL, 219)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10155, CAST(0x00009F7400000000 AS DateTime), CAST(0x00009F7B00000000 AS DateTime), CAST(0x00009F7500000000 AS DateTime), N'Shipped', NULL, 186)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10156, CAST(0x00009F7600000000 AS DateTime), CAST(0x00009F7F00000000 AS DateTime), CAST(0x00009F7900000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10157, CAST(0x00009F7700000000 AS DateTime), CAST(0x00009F7D00000000 AS DateTime), CAST(0x00009F7C00000000 AS DateTime), N'Shipped', NULL, 473)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10158, CAST(0x00009F7800000000 AS DateTime), CAST(0x00009F8000000000 AS DateTime), CAST(0x00009F7D00000000 AS DateTime), N'Shipped', NULL, 121)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10159, CAST(0x00009F7800000000 AS DateTime), CAST(0x00009F8100000000 AS DateTime), CAST(0x00009F7E00000000 AS DateTime), N'Shipped', NULL, 321)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10160, CAST(0x00009F7900000000 AS DateTime), CAST(0x00009F7F00000000 AS DateTime), CAST(0x00009F7F00000000 AS DateTime), N'Shipped', NULL, 347)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10161, CAST(0x00009F7F00000000 AS DateTime), CAST(0x00009F8700000000 AS DateTime), CAST(0x00009F8200000000 AS DateTime), N'Shipped', NULL, 227)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10162, CAST(0x00009F8000000000 AS DateTime), CAST(0x00009F8800000000 AS DateTime), CAST(0x00009F8100000000 AS DateTime), N'Shipped', NULL, 321)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10163, CAST(0x00009F8200000000 AS DateTime), CAST(0x00009F8900000000 AS DateTime), CAST(0x00009F8600000000 AS DateTime), N'Shipped', NULL, 424)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10164, CAST(0x00009F8300000000 AS DateTime), CAST(0x00009F8C00000000 AS DateTime), CAST(0x00009F8500000000 AS DateTime), N'Resolved', N'This order was disputed, but resolved on 11/1/2003; Customer doesn''t like the colors and precision of the models.', 452)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10165, CAST(0x00009F8400000000 AS DateTime), CAST(0x00009F8D00000000 AS DateTime), CAST(0x00009FC500000000 AS DateTime), N'Shipped', N'This order was on hold because customers''s credit limit had been exceeded. Order will ship when payment is received', 148)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10166, CAST(0x00009F8300000000 AS DateTime), CAST(0x00009F8C00000000 AS DateTime), CAST(0x00009F8900000000 AS DateTime), N'Shipped', NULL, 462)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10167, CAST(0x00009F8500000000 AS DateTime), CAST(0x00009F8C00000000 AS DateTime), NULL, N'Cancelled', N'Customer called to cancel. The warehouse was notified in time and the order didn''t ship. They have a new VP of Sales and are shifting their sales model. Our VP of Sales should contact them.', 448)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10168, CAST(0x00009F8A00000000 AS DateTime), CAST(0x00009F9000000000 AS DateTime), CAST(0x00009F8E00000000 AS DateTime), N'Shipped', NULL, 161)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10169, CAST(0x00009F9100000000 AS DateTime), CAST(0x00009F9B00000000 AS DateTime), CAST(0x00009F9600000000 AS DateTime), N'Shipped', NULL, 276)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10170, CAST(0x00009F9100000000 AS DateTime), CAST(0x00009F9900000000 AS DateTime), CAST(0x00009F9400000000 AS DateTime), N'Shipped', NULL, 452)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10171, CAST(0x00009F9200000000 AS DateTime), CAST(0x00009F9A00000000 AS DateTime), CAST(0x00009F9400000000 AS DateTime), N'Shipped', NULL, 233)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10172, CAST(0x00009F9200000000 AS DateTime), CAST(0x00009F9B00000000 AS DateTime), CAST(0x00009F9800000000 AS DateTime), N'Shipped', NULL, 175)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10173, CAST(0x00009F9200000000 AS DateTime), CAST(0x00009F9C00000000 AS DateTime), CAST(0x00009F9600000000 AS DateTime), N'Shipped', N'Cautious optimism. We have happy customers here, if we can keep them well stocked. I need all the information I can get on the planned shippments of Porches', 278)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10174, CAST(0x00009F9300000000 AS DateTime), CAST(0x00009F9C00000000 AS DateTime), CAST(0x00009F9700000000 AS DateTime), N'Shipped', NULL, 333)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10175, CAST(0x00009F9300000000 AS DateTime), CAST(0x00009F9B00000000 AS DateTime), CAST(0x00009F9600000000 AS DateTime), N'Shipped', NULL, 324)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10176, CAST(0x00009F9300000000 AS DateTime), CAST(0x00009F9C00000000 AS DateTime), CAST(0x00009F9900000000 AS DateTime), N'Shipped', NULL, 386)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10177, CAST(0x00009F9400000000 AS DateTime), CAST(0x00009F9E00000000 AS DateTime), CAST(0x00009F9900000000 AS DateTime), N'Shipped', NULL, 344)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10178, CAST(0x00009F9500000000 AS DateTime), CAST(0x00009F9D00000000 AS DateTime), CAST(0x00009F9700000000 AS DateTime), N'Shipped', N'Custom shipping instructions sent to warehouse', 242)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10179, CAST(0x00009F9800000000 AS DateTime), CAST(0x00009F9E00000000 AS DateTime), CAST(0x00009F9A00000000 AS DateTime), N'Cancelled', N'Customer cancelled due to urgent budgeting issues. Must be cautious when dealing with them in the future. Since order shipped already we must discuss who would cover the shipping charges.', 496)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10180, CAST(0x00009F9800000000 AS DateTime), CAST(0x00009FA000000000 AS DateTime), CAST(0x00009F9B00000000 AS DateTime), N'Shipped', NULL, 171)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10181, CAST(0x00009F9900000000 AS DateTime), CAST(0x00009FA000000000 AS DateTime), CAST(0x00009F9C00000000 AS DateTime), N'Shipped', NULL, 167)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10182, CAST(0x00009F9900000000 AS DateTime), CAST(0x00009FA200000000 AS DateTime), CAST(0x00009F9F00000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10183, CAST(0x00009F9A00000000 AS DateTime), CAST(0x00009FA300000000 AS DateTime), CAST(0x00009F9C00000000 AS DateTime), N'Shipped', N'We need to keep in close contact with their Marketing VP. He is the decision maker for all their purchases.', 339)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10184, CAST(0x00009F9B00000000 AS DateTime), CAST(0x00009FA300000000 AS DateTime), CAST(0x00009FA100000000 AS DateTime), N'Shipped', NULL, 484)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10185, CAST(0x00009F9B00000000 AS DateTime), CAST(0x00009FA200000000 AS DateTime), CAST(0x00009FA100000000 AS DateTime), N'Shipped', NULL, 320)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10186, CAST(0x00009F9B00000000 AS DateTime), CAST(0x00009FA100000000 AS DateTime), CAST(0x00009F9F00000000 AS DateTime), N'Shipped', N'They want to reevaluate their terms agreement with the VP of Sales', 489)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10187, CAST(0x00009F9C00000000 AS DateTime), CAST(0x00009FA500000000 AS DateTime), CAST(0x00009F9D00000000 AS DateTime), N'Shipped', NULL, 211)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10188, CAST(0x00009F9F00000000 AS DateTime), CAST(0x00009FA700000000 AS DateTime), CAST(0x00009FA500000000 AS DateTime), N'Shipped', NULL, 167)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10189, CAST(0x00009F9F00000000 AS DateTime), CAST(0x00009FA600000000 AS DateTime), CAST(0x00009FA500000000 AS DateTime), N'Shipped', N'They want to reevaluate their terms agreement with Finance.', 205)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10190, CAST(0x00009FA000000000 AS DateTime), CAST(0x00009FAA00000000 AS DateTime), CAST(0x00009FA100000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10191, CAST(0x00009FA100000000 AS DateTime), CAST(0x00009FAB00000000 AS DateTime), CAST(0x00009FA500000000 AS DateTime), N'Shipped', N'We must be cautions with this customer. Their VP of Sales resigned. Company may be heading down.', 259)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10192, CAST(0x00009FA100000000 AS DateTime), CAST(0x00009FAA00000000 AS DateTime), CAST(0x00009FA600000000 AS DateTime), N'Shipped', NULL, 363)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10193, CAST(0x00009FA200000000 AS DateTime), CAST(0x00009FA900000000 AS DateTime), CAST(0x00009FA800000000 AS DateTime), N'Shipped', NULL, 471)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10194, CAST(0x00009FA600000000 AS DateTime), CAST(0x00009FAD00000000 AS DateTime), CAST(0x00009FA700000000 AS DateTime), N'Shipped', NULL, 146)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10195, CAST(0x00009FA600000000 AS DateTime), CAST(0x00009FAC00000000 AS DateTime), CAST(0x00009FA900000000 AS DateTime), N'Shipped', NULL, 319)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10196, CAST(0x00009FA700000000 AS DateTime), CAST(0x00009FAE00000000 AS DateTime), CAST(0x00009FAC00000000 AS DateTime), N'Shipped', NULL, 455)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10197, CAST(0x00009FA700000000 AS DateTime), CAST(0x00009FAD00000000 AS DateTime), CAST(0x00009FAC00000000 AS DateTime), N'Shipped', N'Customer inquired about remote controlled models and gold models.', 216)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10198, CAST(0x00009FA800000000 AS DateTime), CAST(0x00009FB100000000 AS DateTime), CAST(0x00009FAE00000000 AS DateTime), N'Shipped', NULL, 385)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10199, CAST(0x00009FAC00000000 AS DateTime), CAST(0x00009FB500000000 AS DateTime), CAST(0x00009FB100000000 AS DateTime), N'Shipped', NULL, 475)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10200, CAST(0x00009FAC00000000 AS DateTime), CAST(0x00009FB400000000 AS DateTime), CAST(0x00009FB100000000 AS DateTime), N'Shipped', NULL, 211)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10201, CAST(0x00009FAC00000000 AS DateTime), CAST(0x00009FB600000000 AS DateTime), CAST(0x00009FAD00000000 AS DateTime), N'Shipped', NULL, 129)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10202, CAST(0x00009FAD00000000 AS DateTime), CAST(0x00009FB400000000 AS DateTime), CAST(0x00009FB100000000 AS DateTime), N'Shipped', NULL, 357)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10203, CAST(0x00009FAD00000000 AS DateTime), CAST(0x00009FB600000000 AS DateTime), CAST(0x00009FB200000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10204, CAST(0x00009FAD00000000 AS DateTime), CAST(0x00009FB500000000 AS DateTime), CAST(0x00009FAF00000000 AS DateTime), N'Shipped', NULL, 151)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10205, CAST(0x00009FAE00000000 AS DateTime), CAST(0x00009FB400000000 AS DateTime), CAST(0x00009FB200000000 AS DateTime), N'Shipped', N' I need all the information I can get on our competitors.', 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10206, CAST(0x00009FB000000000 AS DateTime), CAST(0x00009FB800000000 AS DateTime), CAST(0x00009FB300000000 AS DateTime), N'Shipped', N'Can we renegotiate this one?', 202)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10207, CAST(0x00009FB400000000 AS DateTime), CAST(0x00009FBC00000000 AS DateTime), CAST(0x00009FB600000000 AS DateTime), N'Shipped', N'Check on availability.', 495)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10208, CAST(0x00009FCC00000000 AS DateTime), CAST(0x00009FD500000000 AS DateTime), CAST(0x00009FCE00000000 AS DateTime), N'Shipped', NULL, 146)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10209, CAST(0x00009FD300000000 AS DateTime), CAST(0x00009FD900000000 AS DateTime), CAST(0x00009FD600000000 AS DateTime), N'Shipped', NULL, 347)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10210, CAST(0x00009FD600000000 AS DateTime), CAST(0x00009FE000000000 AS DateTime), CAST(0x00009FDE00000000 AS DateTime), N'Shipped', NULL, 177)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10211, CAST(0x00009FD900000000 AS DateTime), CAST(0x00009FE300000000 AS DateTime), CAST(0x00009FDC00000000 AS DateTime), N'Shipped', NULL, 406)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10212, CAST(0x00009FDA00000000 AS DateTime), CAST(0x00009FE200000000 AS DateTime), CAST(0x00009FDC00000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10213, CAST(0x00009FE000000000 AS DateTime), CAST(0x00009FE600000000 AS DateTime), CAST(0x00009FE500000000 AS DateTime), N'Shipped', N'Difficult to negotiate with customer. We need more marketing materials', 489)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10214, CAST(0x00009FE400000000 AS DateTime), CAST(0x00009FED00000000 AS DateTime), CAST(0x00009FE700000000 AS DateTime), N'Shipped', NULL, 458)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10215, CAST(0x00009FE700000000 AS DateTime), CAST(0x00009FF100000000 AS DateTime), CAST(0x00009FEA00000000 AS DateTime), N'Shipped', N'Customer requested that FedEx Ground is used for this shipping', 475)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10216, CAST(0x00009FEB00000000 AS DateTime), CAST(0x00009FF300000000 AS DateTime), CAST(0x00009FED00000000 AS DateTime), N'Shipped', NULL, 256)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10217, CAST(0x00009FED00000000 AS DateTime), CAST(0x00009FF700000000 AS DateTime), CAST(0x00009FEF00000000 AS DateTime), N'Shipped', NULL, 166)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10218, CAST(0x00009FF200000000 AS DateTime), CAST(0x00009FF900000000 AS DateTime), CAST(0x00009FF400000000 AS DateTime), N'Shipped', N'Customer requested that ad materials (such as posters, pamphlets) be included in the shippment', 473)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10219, CAST(0x00009FF300000000 AS DateTime), CAST(0x00009FFA00000000 AS DateTime), CAST(0x00009FF500000000 AS DateTime), N'Shipped', NULL, 487)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10220, CAST(0x00009FF500000000 AS DateTime), CAST(0x00009FFC00000000 AS DateTime), CAST(0x00009FF900000000 AS DateTime), N'Shipped', NULL, 189)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10221, CAST(0x00009FFB00000000 AS DateTime), CAST(0x0000A00300000000 AS DateTime), CAST(0x00009FFC00000000 AS DateTime), N'Shipped', NULL, 314)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10222, CAST(0x00009FFC00000000 AS DateTime), CAST(0x0000A00400000000 AS DateTime), CAST(0x00009FFD00000000 AS DateTime), N'Shipped', NULL, 239)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10223, CAST(0x00009FFD00000000 AS DateTime), CAST(0x0000A00600000000 AS DateTime), CAST(0x0000A00100000000 AS DateTime), N'Shipped', NULL, 114)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10224, CAST(0x00009FFE00000000 AS DateTime), CAST(0x0000A00800000000 AS DateTime), CAST(0x0000A00300000000 AS DateTime), N'Shipped', N'Customer has worked with some of our vendors in the past and is aware of their MSRP', 171)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10225, CAST(0x00009FFF00000000 AS DateTime), CAST(0x0000A00700000000 AS DateTime), CAST(0x0000A00100000000 AS DateTime), N'Shipped', NULL, 298)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10226, CAST(0x0000A00300000000 AS DateTime), CAST(0x0000A00C00000000 AS DateTime), CAST(0x0000A00800000000 AS DateTime), N'Shipped', NULL, 239)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10227, CAST(0x0000A00800000000 AS DateTime), CAST(0x0000A01200000000 AS DateTime), CAST(0x0000A00E00000000 AS DateTime), N'Shipped', NULL, 146)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10228, CAST(0x0000A01000000000 AS DateTime), CAST(0x0000A01800000000 AS DateTime), CAST(0x0000A01300000000 AS DateTime), N'Shipped', NULL, 173)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10229, CAST(0x0000A01100000000 AS DateTime), CAST(0x0000A01A00000000 AS DateTime), CAST(0x0000A01200000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10230, CAST(0x0000A01500000000 AS DateTime), CAST(0x0000A01E00000000 AS DateTime), CAST(0x0000A01A00000000 AS DateTime), N'Shipped', N'Customer very concerned about the exact color of the models. There is high risk that he may dispute the order because there is a slight color mismatch', 128)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10231, CAST(0x0000A01900000000 AS DateTime), CAST(0x0000A02000000000 AS DateTime), CAST(0x0000A01F00000000 AS DateTime), N'Shipped', NULL, 344)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10232, CAST(0x0000A01A00000000 AS DateTime), CAST(0x0000A02400000000 AS DateTime), CAST(0x0000A01F00000000 AS DateTime), N'Shipped', NULL, 240)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10233, CAST(0x0000A02300000000 AS DateTime), CAST(0x0000A02900000000 AS DateTime), CAST(0x0000A02700000000 AS DateTime), N'Shipped', N'Customer requested special shippment. The instructions were passed along to the warehouse', 328)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10234, CAST(0x0000A02400000000 AS DateTime), CAST(0x0000A02A00000000 AS DateTime), CAST(0x0000A02700000000 AS DateTime), N'Shipped', NULL, 412)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10235, CAST(0x0000A02700000000 AS DateTime), CAST(0x0000A03100000000 AS DateTime), CAST(0x0000A02B00000000 AS DateTime), N'Shipped', NULL, 260)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10236, CAST(0x0000A02800000000 AS DateTime), CAST(0x0000A03000000000 AS DateTime), CAST(0x0000A02D00000000 AS DateTime), N'Shipped', NULL, 486)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10237, CAST(0x0000A02A00000000 AS DateTime), CAST(0x0000A03100000000 AS DateTime), CAST(0x0000A02F00000000 AS DateTime), N'Shipped', NULL, 181)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10238, CAST(0x0000A02E00000000 AS DateTime), CAST(0x0000A03500000000 AS DateTime), CAST(0x0000A02F00000000 AS DateTime), N'Shipped', NULL, 145)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10239, CAST(0x0000A03100000000 AS DateTime), CAST(0x0000A03A00000000 AS DateTime), CAST(0x0000A03600000000 AS DateTime), N'Shipped', NULL, 311)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10240, CAST(0x0000A03200000000 AS DateTime), CAST(0x0000A03900000000 AS DateTime), CAST(0x0000A03900000000 AS DateTime), N'Shipped', NULL, 177)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10241, CAST(0x0000A03200000000 AS DateTime), CAST(0x0000A03900000000 AS DateTime), CAST(0x0000A03800000000 AS DateTime), N'Shipped', NULL, 209)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10242, CAST(0x0000A03900000000 AS DateTime), CAST(0x0000A04100000000 AS DateTime), CAST(0x0000A03E00000000 AS DateTime), N'Shipped', N'Customer is interested in buying more Ferrari models', 456)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10243, CAST(0x0000A03F00000000 AS DateTime), CAST(0x0000A04600000000 AS DateTime), CAST(0x0000A04100000000 AS DateTime), N'Shipped', NULL, 495)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10244, CAST(0x0000A04200000000 AS DateTime), CAST(0x0000A04C00000000 AS DateTime), CAST(0x0000A04700000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10245, CAST(0x0000A04700000000 AS DateTime), CAST(0x0000A04F00000000 AS DateTime), CAST(0x0000A04C00000000 AS DateTime), N'Shipped', NULL, 455)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10246, CAST(0x0000A04800000000 AS DateTime), CAST(0x0000A05000000000 AS DateTime), CAST(0x0000A04900000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10247, CAST(0x0000A04800000000 AS DateTime), CAST(0x0000A04E00000000 AS DateTime), CAST(0x0000A04B00000000 AS DateTime), N'Shipped', NULL, 334)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10248, CAST(0x0000A04A00000000 AS DateTime), CAST(0x0000A05100000000 AS DateTime), NULL, N'Cancelled', N'Order was mistakenly placed. The warehouse noticed the lack of documentation.', 131)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10249, CAST(0x0000A04B00000000 AS DateTime), CAST(0x0000A05400000000 AS DateTime), CAST(0x0000A04E00000000 AS DateTime), N'Shipped', N'Can we deliver the new Ford Mustang models by end-of-quarter?', 173)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10250, CAST(0x0000A04E00000000 AS DateTime), CAST(0x0000A05600000000 AS DateTime), CAST(0x0000A05200000000 AS DateTime), N'Shipped', NULL, 450)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10251, CAST(0x0000A05500000000 AS DateTime), CAST(0x0000A05B00000000 AS DateTime), CAST(0x0000A05B00000000 AS DateTime), N'Shipped', NULL, 328)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10252, CAST(0x0000A05D00000000 AS DateTime), CAST(0x0000A06600000000 AS DateTime), CAST(0x0000A06000000000 AS DateTime), N'Shipped', NULL, 406)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10253, CAST(0x0000A06300000000 AS DateTime), CAST(0x0000A06B00000000 AS DateTime), CAST(0x0000A06400000000 AS DateTime), N'Cancelled', N'Customer disputed the order and we agreed to cancel it. We must be more cautions with this customer going forward, since they are very hard to please. We must cover the shipping fees.', 201)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10254, CAST(0x0000A06500000000 AS DateTime), CAST(0x0000A06F00000000 AS DateTime), CAST(0x0000A06600000000 AS DateTime), N'Shipped', N'Customer requested that DHL is used for this shipping', 323)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10255, CAST(0x0000A06600000000 AS DateTime), CAST(0x0000A06E00000000 AS DateTime), CAST(0x0000A06B00000000 AS DateTime), N'Shipped', NULL, 209)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10256, CAST(0x0000A06A00000000 AS DateTime), CAST(0x0000A07200000000 AS DateTime), CAST(0x0000A06C00000000 AS DateTime), N'Shipped', NULL, 145)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10257, CAST(0x0000A07000000000 AS DateTime), CAST(0x0000A07A00000000 AS DateTime), CAST(0x0000A07100000000 AS DateTime), N'Shipped', NULL, 450)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10258, CAST(0x0000A07100000000 AS DateTime), CAST(0x0000A07B00000000 AS DateTime), CAST(0x0000A07900000000 AS DateTime), N'Shipped', NULL, 398)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10259, CAST(0x0000A07100000000 AS DateTime), CAST(0x0000A07800000000 AS DateTime), CAST(0x0000A07300000000 AS DateTime), N'Shipped', NULL, 166)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10260, CAST(0x0000A07200000000 AS DateTime), CAST(0x0000A07800000000 AS DateTime), NULL, N'Cancelled', N'Customer heard complaints from their customers and called to cancel this order. Will notify the Sales Manager.', 357)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10261, CAST(0x0000A07300000000 AS DateTime), CAST(0x0000A07B00000000 AS DateTime), CAST(0x0000A07800000000 AS DateTime), N'Shipped', NULL, 233)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10262, CAST(0x0000A07A00000000 AS DateTime), CAST(0x0000A08100000000 AS DateTime), NULL, N'Cancelled', N'This customer found a better offer from one of our competitors. Will call back to renegotiate.', 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10263, CAST(0x0000A07E00000000 AS DateTime), CAST(0x0000A08400000000 AS DateTime), CAST(0x0000A08200000000 AS DateTime), N'Shipped', NULL, 175)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10264, CAST(0x0000A08000000000 AS DateTime), CAST(0x0000A08600000000 AS DateTime), CAST(0x0000A08100000000 AS DateTime), N'Shipped', N'Customer will send a truck to our local warehouse on 7/1/2004', 362)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10265, CAST(0x0000A08200000000 AS DateTime), CAST(0x0000A08900000000 AS DateTime), CAST(0x0000A08700000000 AS DateTime), N'Shipped', NULL, 471)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10266, CAST(0x0000A08600000000 AS DateTime), CAST(0x0000A08E00000000 AS DateTime), CAST(0x0000A08A00000000 AS DateTime), N'Shipped', NULL, 386)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10267, CAST(0x0000A08700000000 AS DateTime), CAST(0x0000A09100000000 AS DateTime), CAST(0x0000A08900000000 AS DateTime), N'Shipped', NULL, 151)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10268, CAST(0x0000A08C00000000 AS DateTime), CAST(0x0000A09200000000 AS DateTime), CAST(0x0000A08E00000000 AS DateTime), N'Shipped', NULL, 412)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10269, CAST(0x0000A09000000000 AS DateTime), CAST(0x0000A09600000000 AS DateTime), CAST(0x0000A09200000000 AS DateTime), N'Shipped', NULL, 382)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10270, CAST(0x0000A09300000000 AS DateTime), CAST(0x0000A09B00000000 AS DateTime), CAST(0x0000A09800000000 AS DateTime), N'Shipped', N'Can we renegotiate this one?', 282)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10271, CAST(0x0000A09400000000 AS DateTime), CAST(0x0000A09D00000000 AS DateTime), CAST(0x0000A09700000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10272, CAST(0x0000A09400000000 AS DateTime), CAST(0x0000A09A00000000 AS DateTime), CAST(0x0000A09600000000 AS DateTime), N'Shipped', NULL, 157)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10273, CAST(0x0000A09500000000 AS DateTime), CAST(0x0000A09C00000000 AS DateTime), CAST(0x0000A09600000000 AS DateTime), N'Shipped', NULL, 314)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10274, CAST(0x0000A09500000000 AS DateTime), CAST(0x0000A09D00000000 AS DateTime), CAST(0x0000A09600000000 AS DateTime), N'Shipped', NULL, 379)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10275, CAST(0x0000A09700000000 AS DateTime), CAST(0x0000A0A100000000 AS DateTime), CAST(0x0000A09D00000000 AS DateTime), N'Shipped', NULL, 119)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10276, CAST(0x0000A0A100000000 AS DateTime), CAST(0x0000A0AA00000000 AS DateTime), CAST(0x0000A0A700000000 AS DateTime), N'Shipped', NULL, 204)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10277, CAST(0x0000A0A300000000 AS DateTime), CAST(0x0000A0AB00000000 AS DateTime), CAST(0x0000A0A400000000 AS DateTime), N'Shipped', NULL, 148)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10278, CAST(0x0000A0A500000000 AS DateTime), CAST(0x0000A0AF00000000 AS DateTime), CAST(0x0000A0A800000000 AS DateTime), N'Shipped', NULL, 112)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10279, CAST(0x0000A0A800000000 AS DateTime), CAST(0x0000A0B200000000 AS DateTime), CAST(0x0000A0AE00000000 AS DateTime), N'Shipped', N'Cautious optimism. We have happy customers here, if we can keep them well stocked. I need all the information I can get on the planned shippments of Porches', 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10280, CAST(0x0000A0B000000000 AS DateTime), CAST(0x0000A0BA00000000 AS DateTime), CAST(0x0000A0B200000000 AS DateTime), N'Shipped', NULL, 249)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10281, CAST(0x0000A0B200000000 AS DateTime), CAST(0x0000A0BB00000000 AS DateTime), CAST(0x0000A0B600000000 AS DateTime), N'Shipped', NULL, 157)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10282, CAST(0x0000A0B300000000 AS DateTime), CAST(0x0000A0B900000000 AS DateTime), CAST(0x0000A0B500000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10283, CAST(0x0000A0B300000000 AS DateTime), CAST(0x0000A0BD00000000 AS DateTime), CAST(0x0000A0B600000000 AS DateTime), N'Shipped', NULL, 260)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10284, CAST(0x0000A0B400000000 AS DateTime), CAST(0x0000A0BC00000000 AS DateTime), CAST(0x0000A0B900000000 AS DateTime), N'Shipped', N'Custom shipping instructions sent to warehouse', 299)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10285, CAST(0x0000A0BA00000000 AS DateTime), CAST(0x0000A0C200000000 AS DateTime), CAST(0x0000A0BE00000000 AS DateTime), N'Shipped', NULL, 286)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10286, CAST(0x0000A0BB00000000 AS DateTime), CAST(0x0000A0C400000000 AS DateTime), CAST(0x0000A0BF00000000 AS DateTime), N'Shipped', NULL, 172)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10287, CAST(0x0000A0BD00000000 AS DateTime), CAST(0x0000A0C400000000 AS DateTime), CAST(0x0000A0BF00000000 AS DateTime), N'Shipped', NULL, 298)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10288, CAST(0x0000A0BF00000000 AS DateTime), CAST(0x0000A0C900000000 AS DateTime), CAST(0x0000A0C300000000 AS DateTime), N'Shipped', NULL, 166)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10289, CAST(0x0000A0C100000000 AS DateTime), CAST(0x0000A0CB00000000 AS DateTime), CAST(0x0000A0C200000000 AS DateTime), N'Shipped', N'We need to keep in close contact with their Marketing VP. He is the decision maker for all their purchases.', 167)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10290, CAST(0x0000A0C500000000 AS DateTime), CAST(0x0000A0CD00000000 AS DateTime), CAST(0x0000A0CB00000000 AS DateTime), N'Shipped', NULL, 198)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10291, CAST(0x0000A0C600000000 AS DateTime), CAST(0x0000A0CF00000000 AS DateTime), CAST(0x0000A0CC00000000 AS DateTime), N'Shipped', NULL, 448)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10292, CAST(0x0000A0C600000000 AS DateTime), CAST(0x0000A0D000000000 AS DateTime), CAST(0x0000A0C900000000 AS DateTime), N'Shipped', N'They want to reevaluate their terms agreement with Finance.', 131)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10293, CAST(0x0000A0C700000000 AS DateTime), CAST(0x0000A0D000000000 AS DateTime), CAST(0x0000A0CC00000000 AS DateTime), N'Shipped', NULL, 249)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10294, CAST(0x0000A0C800000000 AS DateTime), CAST(0x0000A0CF00000000 AS DateTime), CAST(0x0000A0CC00000000 AS DateTime), N'Shipped', NULL, 204)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10295, CAST(0x0000A0C800000000 AS DateTime), CAST(0x0000A0CF00000000 AS DateTime), CAST(0x0000A0CC00000000 AS DateTime), N'Shipped', N'They want to reevaluate their terms agreement with Finance.', 362)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10296, CAST(0x0000A0CD00000000 AS DateTime), CAST(0x0000A0D400000000 AS DateTime), CAST(0x0000A0CE00000000 AS DateTime), N'Shipped', NULL, 415)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10297, CAST(0x0000A0CE00000000 AS DateTime), CAST(0x0000A0D400000000 AS DateTime), CAST(0x0000A0D300000000 AS DateTime), N'Shipped', N'We must be cautions with this customer. Their VP of Sales resigned. Company may be heading down.', 189)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10298, CAST(0x0000A0D900000000 AS DateTime), CAST(0x0000A0E100000000 AS DateTime), CAST(0x0000A0DD00000000 AS DateTime), N'Shipped', NULL, 103)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10299, CAST(0x0000A0DC00000000 AS DateTime), CAST(0x0000A0E600000000 AS DateTime), CAST(0x0000A0DD00000000 AS DateTime), N'Shipped', NULL, 186)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10300, CAST(0x00009F7200000000 AS DateTime), CAST(0x00009F7B00000000 AS DateTime), CAST(0x00009F7700000000 AS DateTime), N'Shipped', NULL, 128)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10301, CAST(0x00009F7300000000 AS DateTime), CAST(0x00009F7D00000000 AS DateTime), CAST(0x00009F7600000000 AS DateTime), N'Shipped', NULL, 299)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10302, CAST(0x00009F7400000000 AS DateTime), CAST(0x00009F7E00000000 AS DateTime), CAST(0x00009F7500000000 AS DateTime), N'Shipped', NULL, 201)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10303, CAST(0x0000A0E200000000 AS DateTime), CAST(0x0000A0EA00000000 AS DateTime), CAST(0x0000A0E500000000 AS DateTime), N'Shipped', N'Customer inquired about remote controlled models and gold models.', 484)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10304, CAST(0x0000A0E700000000 AS DateTime), CAST(0x0000A0F000000000 AS DateTime), CAST(0x0000A0ED00000000 AS DateTime), N'Shipped', NULL, 256)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10305, CAST(0x0000A0E900000000 AS DateTime), CAST(0x0000A0F200000000 AS DateTime), CAST(0x0000A0EB00000000 AS DateTime), N'Shipped', N'Check on availability.', 286)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10306, CAST(0x0000A0EA00000000 AS DateTime), CAST(0x0000A0F100000000 AS DateTime), CAST(0x0000A0ED00000000 AS DateTime), N'Shipped', NULL, 187)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10307, CAST(0x0000A0EA00000000 AS DateTime), CAST(0x0000A0F300000000 AS DateTime), CAST(0x0000A0F000000000 AS DateTime), N'Shipped', NULL, 339)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10308, CAST(0x0000A0EB00000000 AS DateTime), CAST(0x0000A0F400000000 AS DateTime), CAST(0x0000A0F000000000 AS DateTime), N'Shipped', N'Customer requested that FedEx Ground is used for this shipping', 319)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10309, CAST(0x0000A0EB00000000 AS DateTime), CAST(0x0000A0F400000000 AS DateTime), CAST(0x0000A0EE00000000 AS DateTime), N'Shipped', NULL, 121)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10310, CAST(0x0000A0EC00000000 AS DateTime), CAST(0x0000A0F400000000 AS DateTime), CAST(0x0000A0EE00000000 AS DateTime), N'Shipped', NULL, 259)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10311, CAST(0x0000A0EC00000000 AS DateTime), CAST(0x0000A0F300000000 AS DateTime), CAST(0x0000A0F000000000 AS DateTime), N'Shipped', N'Difficult to negotiate with customer. We need more marketing materials', 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10312, CAST(0x0000A0F100000000 AS DateTime), CAST(0x0000A0F700000000 AS DateTime), CAST(0x0000A0F300000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10313, CAST(0x0000A0F200000000 AS DateTime), CAST(0x0000A0F800000000 AS DateTime), CAST(0x0000A0F500000000 AS DateTime), N'Shipped', N'Customer requested that FedEx Ground is used for this shipping', 202)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10314, CAST(0x0000A0F200000000 AS DateTime), CAST(0x0000A0FC00000000 AS DateTime), CAST(0x0000A0F300000000 AS DateTime), N'Shipped', NULL, 227)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10315, CAST(0x0000A0F900000000 AS DateTime), CAST(0x0000A10300000000 AS DateTime), CAST(0x0000A0FA00000000 AS DateTime), N'Shipped', NULL, 119)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10316, CAST(0x0000A0FC00000000 AS DateTime), CAST(0x0000A10400000000 AS DateTime), CAST(0x0000A10200000000 AS DateTime), N'Shipped', N'Customer requested that ad materials (such as posters, pamphlets) be included in the shippment', 240)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10317, CAST(0x0000A0FD00000000 AS DateTime), CAST(0x0000A10700000000 AS DateTime), CAST(0x0000A10300000000 AS DateTime), N'Shipped', NULL, 161)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10318, CAST(0x0000A0FD00000000 AS DateTime), CAST(0x0000A10400000000 AS DateTime), CAST(0x0000A10200000000 AS DateTime), N'Shipped', NULL, 157)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10319, CAST(0x0000A0FE00000000 AS DateTime), CAST(0x0000A10600000000 AS DateTime), CAST(0x0000A10100000000 AS DateTime), N'Shipped', N'Customer requested that DHL is used for this shipping', 456)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10320, CAST(0x0000A0FE00000000 AS DateTime), CAST(0x0000A10800000000 AS DateTime), CAST(0x0000A10200000000 AS DateTime), N'Shipped', NULL, 144)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10321, CAST(0x0000A0FF00000000 AS DateTime), CAST(0x0000A10700000000 AS DateTime), CAST(0x0000A10200000000 AS DateTime), N'Shipped', NULL, 462)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10322, CAST(0x0000A0FF00000000 AS DateTime), CAST(0x0000A10700000000 AS DateTime), CAST(0x0000A10500000000 AS DateTime), N'Shipped', N'Customer has worked with some of our vendors in the past and is aware of their MSRP', 363)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10323, CAST(0x0000A10000000000 AS DateTime), CAST(0x0000A10700000000 AS DateTime), CAST(0x0000A10400000000 AS DateTime), N'Shipped', NULL, 128)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10324, CAST(0x0000A10000000000 AS DateTime), CAST(0x0000A10600000000 AS DateTime), CAST(0x0000A10300000000 AS DateTime), N'Shipped', NULL, 181)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10325, CAST(0x0000A10000000000 AS DateTime), CAST(0x0000A10800000000 AS DateTime), CAST(0x0000A10300000000 AS DateTime), N'Shipped', NULL, 121)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10326, CAST(0x0000A10400000000 AS DateTime), CAST(0x0000A10B00000000 AS DateTime), CAST(0x0000A10500000000 AS DateTime), N'Shipped', NULL, 144)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10327, CAST(0x0000A10500000000 AS DateTime), CAST(0x0000A10E00000000 AS DateTime), CAST(0x0000A10800000000 AS DateTime), N'Resolved', N'Order was disputed and resolved on 12/1/04. The Sales Manager was involved. Customer claims the scales of the models don''t match what was discussed.', 145)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10328, CAST(0x0000A10700000000 AS DateTime), CAST(0x0000A11000000000 AS DateTime), CAST(0x0000A10D00000000 AS DateTime), N'Shipped', N'Customer very concerned about the exact color of the models. There is high risk that he may dispute the order because there is a slight color mismatch', 278)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10329, CAST(0x0000A10A00000000 AS DateTime), CAST(0x0000A11300000000 AS DateTime), CAST(0x0000A10B00000000 AS DateTime), N'Shipped', NULL, 131)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10330, CAST(0x0000A10B00000000 AS DateTime), CAST(0x0000A11400000000 AS DateTime), CAST(0x0000A11000000000 AS DateTime), N'Shipped', NULL, 385)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10331, CAST(0x0000A10C00000000 AS DateTime), CAST(0x0000A11200000000 AS DateTime), CAST(0x0000A11200000000 AS DateTime), N'Shipped', N'Customer requested special shippment. The instructions were passed along to the warehouse', 486)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10332, CAST(0x0000A10C00000000 AS DateTime), CAST(0x0000A11400000000 AS DateTime), CAST(0x0000A10D00000000 AS DateTime), N'Shipped', NULL, 187)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10333, CAST(0x0000A10D00000000 AS DateTime), CAST(0x0000A11600000000 AS DateTime), CAST(0x0000A10F00000000 AS DateTime), N'Shipped', NULL, 129)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10334, CAST(0x0000A10E00000000 AS DateTime), CAST(0x0000A11700000000 AS DateTime), NULL, N'On Hold', N'The outstaniding balance for this customer exceeds their credit limit. Order will be shipped when a payment is received.', 144)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10335, CAST(0x0000A10E00000000 AS DateTime), CAST(0x0000A11800000000 AS DateTime), CAST(0x0000A11200000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10336, CAST(0x0000A10F00000000 AS DateTime), CAST(0x0000A11500000000 AS DateTime), CAST(0x0000A11300000000 AS DateTime), N'Shipped', N'Customer requested that DHL is used for this shipping', 172)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10337, CAST(0x0000A11000000000 AS DateTime), CAST(0x0000A11900000000 AS DateTime), CAST(0x0000A11500000000 AS DateTime), N'Shipped', NULL, 424)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10338, CAST(0x0000A11100000000 AS DateTime), CAST(0x0000A11B00000000 AS DateTime), CAST(0x0000A11600000000 AS DateTime), N'Shipped', NULL, 381)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10339, CAST(0x0000A11200000000 AS DateTime), CAST(0x0000A11900000000 AS DateTime), CAST(0x0000A11900000000 AS DateTime), N'Shipped', NULL, 398)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10340, CAST(0x0000A11300000000 AS DateTime), CAST(0x0000A11A00000000 AS DateTime), CAST(0x0000A11400000000 AS DateTime), N'Shipped', N'Customer is interested in buying more Ferrari models', 216)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10341, CAST(0x0000A11300000000 AS DateTime), CAST(0x0000A11A00000000 AS DateTime), CAST(0x0000A11800000000 AS DateTime), N'Shipped', NULL, 382)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10342, CAST(0x0000A11300000000 AS DateTime), CAST(0x0000A11A00000000 AS DateTime), CAST(0x0000A11800000000 AS DateTime), N'Shipped', NULL, 114)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10343, CAST(0x0000A11300000000 AS DateTime), CAST(0x0000A11A00000000 AS DateTime), CAST(0x0000A11500000000 AS DateTime), N'Shipped', NULL, 353)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10344, CAST(0x0000A11400000000 AS DateTime), CAST(0x0000A11B00000000 AS DateTime), CAST(0x0000A11800000000 AS DateTime), N'Shipped', NULL, 350)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10345, CAST(0x0000A11400000000 AS DateTime), CAST(0x0000A11A00000000 AS DateTime), CAST(0x0000A11500000000 AS DateTime), N'Shipped', NULL, 103)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10346, CAST(0x0000A11800000000 AS DateTime), CAST(0x0000A11E00000000 AS DateTime), CAST(0x0000A11900000000 AS DateTime), N'Shipped', NULL, 112)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10347, CAST(0x0000A11800000000 AS DateTime), CAST(0x0000A12000000000 AS DateTime), CAST(0x0000A11900000000 AS DateTime), N'Shipped', N'Can we deliver the new Ford Mustang models by end-of-quarter?', 114)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10348, CAST(0x0000A0FC00000000 AS DateTime), CAST(0x0000A10300000000 AS DateTime), CAST(0x0000A10000000000 AS DateTime), N'Shipped', NULL, 458)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10349, CAST(0x0000A11A00000000 AS DateTime), CAST(0x0000A12000000000 AS DateTime), CAST(0x0000A11C00000000 AS DateTime), N'Shipped', NULL, 151)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10350, CAST(0x0000A11B00000000 AS DateTime), CAST(0x0000A12100000000 AS DateTime), CAST(0x0000A11E00000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10351, CAST(0x0000A11C00000000 AS DateTime), CAST(0x0000A12400000000 AS DateTime), CAST(0x0000A12000000000 AS DateTime), N'Shipped', NULL, 324)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10352, CAST(0x0000A11C00000000 AS DateTime), CAST(0x0000A12500000000 AS DateTime), CAST(0x0000A12200000000 AS DateTime), N'Shipped', NULL, 198)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10353, CAST(0x0000A11D00000000 AS DateTime), CAST(0x0000A12400000000 AS DateTime), CAST(0x0000A11E00000000 AS DateTime), N'Shipped', NULL, 447)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10354, CAST(0x0000A11D00000000 AS DateTime), CAST(0x0000A12300000000 AS DateTime), CAST(0x0000A11E00000000 AS DateTime), N'Shipped', NULL, 323)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10355, CAST(0x0000A12000000000 AS DateTime), CAST(0x0000A12700000000 AS DateTime), CAST(0x0000A12600000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10356, CAST(0x0000A12200000000 AS DateTime), CAST(0x0000A12800000000 AS DateTime), CAST(0x0000A12500000000 AS DateTime), N'Shipped', NULL, 250)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10357, CAST(0x0000A12300000000 AS DateTime), CAST(0x0000A12900000000 AS DateTime), CAST(0x0000A12700000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10358, CAST(0x0000A12300000000 AS DateTime), CAST(0x0000A12900000000 AS DateTime), CAST(0x0000A12900000000 AS DateTime), N'Shipped', N'Customer requested that DHL is used for this shipping', 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10359, CAST(0x0000A12800000000 AS DateTime), CAST(0x0000A13000000000 AS DateTime), CAST(0x0000A12B00000000 AS DateTime), N'Shipped', NULL, 353)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10360, CAST(0x0000A12900000000 AS DateTime), CAST(0x0000A12F00000000 AS DateTime), CAST(0x0000A12B00000000 AS DateTime), N'Shipped', NULL, 496)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10361, CAST(0x0000A12A00000000 AS DateTime), CAST(0x0000A13100000000 AS DateTime), CAST(0x0000A12D00000000 AS DateTime), N'Shipped', NULL, 282)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10362, CAST(0x0000A13D00000000 AS DateTime), CAST(0x0000A14800000000 AS DateTime), CAST(0x0000A14200000000 AS DateTime), N'Shipped', NULL, 161)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10363, CAST(0x0000A13E00000000 AS DateTime), CAST(0x0000A14400000000 AS DateTime), CAST(0x0000A14200000000 AS DateTime), N'Shipped', NULL, 334)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10364, CAST(0x0000A13E00000000 AS DateTime), CAST(0x0000A14900000000 AS DateTime), CAST(0x0000A14100000000 AS DateTime), N'Shipped', NULL, 350)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10365, CAST(0x0000A13F00000000 AS DateTime), CAST(0x0000A14A00000000 AS DateTime), CAST(0x0000A14300000000 AS DateTime), N'Shipped', NULL, 320)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10366, CAST(0x0000A14200000000 AS DateTime), CAST(0x0000A14B00000000 AS DateTime), CAST(0x0000A14400000000 AS DateTime), N'Shipped', NULL, 381)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10367, CAST(0x0000A14400000000 AS DateTime), CAST(0x0000A14D00000000 AS DateTime), CAST(0x0000A14800000000 AS DateTime), N'Resolved', N'This order was disputed and resolved on 2/1/2005. Customer claimed that container with shipment was damaged. FedEx''s investigation proved this wrong.', 205)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10368, CAST(0x0000A14B00000000 AS DateTime), CAST(0x0000A15300000000 AS DateTime), CAST(0x0000A15000000000 AS DateTime), N'Shipped', N'Can we renegotiate this one?', 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10369, CAST(0x0000A14C00000000 AS DateTime), CAST(0x0000A15400000000 AS DateTime), CAST(0x0000A15000000000 AS DateTime), N'Shipped', NULL, 379)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10370, CAST(0x0000A14C00000000 AS DateTime), CAST(0x0000A15800000000 AS DateTime), CAST(0x0000A15100000000 AS DateTime), N'Shipped', NULL, 276)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10371, CAST(0x0000A14F00000000 AS DateTime), CAST(0x0000A15A00000000 AS DateTime), CAST(0x0000A15100000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10372, CAST(0x0000A15200000000 AS DateTime), CAST(0x0000A15C00000000 AS DateTime), CAST(0x0000A15400000000 AS DateTime), N'Shipped', NULL, 398)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10373, CAST(0x0000A15700000000 AS DateTime), CAST(0x0000A15F00000000 AS DateTime), CAST(0x0000A15D00000000 AS DateTime), N'Shipped', NULL, 311)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10374, CAST(0x0000A15900000000 AS DateTime), CAST(0x0000A16000000000 AS DateTime), CAST(0x0000A15A00000000 AS DateTime), N'Shipped', NULL, 333)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10375, CAST(0x0000A15A00000000 AS DateTime), CAST(0x0000A16100000000 AS DateTime), CAST(0x0000A15D00000000 AS DateTime), N'Shipped', NULL, 119)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10376, CAST(0x0000A15F00000000 AS DateTime), CAST(0x0000A16900000000 AS DateTime), CAST(0x0000A16400000000 AS DateTime), N'Shipped', NULL, 219)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10377, CAST(0x0000A16000000000 AS DateTime), CAST(0x0000A16C00000000 AS DateTime), CAST(0x0000A16300000000 AS DateTime), N'Shipped', N'Cautious optimism. We have happy customers here, if we can keep them well stocked. I need all the information I can get on the planned shippments of Porches', 186)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10378, CAST(0x0000A16100000000 AS DateTime), CAST(0x0000A16900000000 AS DateTime), CAST(0x0000A16200000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10379, CAST(0x0000A16100000000 AS DateTime), CAST(0x0000A16900000000 AS DateTime), CAST(0x0000A16200000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10380, CAST(0x0000A16700000000 AS DateTime), CAST(0x0000A16F00000000 AS DateTime), CAST(0x0000A16900000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10381, CAST(0x0000A16800000000 AS DateTime), CAST(0x0000A17000000000 AS DateTime), CAST(0x0000A16900000000 AS DateTime), N'Shipped', NULL, 321)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10382, CAST(0x0000A16800000000 AS DateTime), CAST(0x0000A16E00000000 AS DateTime), CAST(0x0000A16900000000 AS DateTime), N'Shipped', N'Custom shipping instructions sent to warehouse', 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10383, CAST(0x0000A16D00000000 AS DateTime), CAST(0x0000A17500000000 AS DateTime), CAST(0x0000A17000000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10384, CAST(0x0000A16E00000000 AS DateTime), CAST(0x0000A17900000000 AS DateTime), CAST(0x0000A17200000000 AS DateTime), N'Shipped', NULL, 321)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10385, CAST(0x0000A17300000000 AS DateTime), CAST(0x0000A17C00000000 AS DateTime), CAST(0x0000A17400000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10386, CAST(0x0000A17400000000 AS DateTime), CAST(0x0000A17C00000000 AS DateTime), CAST(0x0000A17900000000 AS DateTime), N'Resolved', N'Disputed then Resolved on 3/15/2005. Customer doesn''t like the craftsmaship of the models.', 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10387, CAST(0x0000A17500000000 AS DateTime), CAST(0x0000A17C00000000 AS DateTime), CAST(0x0000A17900000000 AS DateTime), N'Shipped', N'We need to keep in close contact with their Marketing VP. He is the decision maker for all their purchases.', 148)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10388, CAST(0x0000A17600000000 AS DateTime), CAST(0x0000A17E00000000 AS DateTime), CAST(0x0000A17C00000000 AS DateTime), N'Shipped', NULL, 462)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10389, CAST(0x0000A17600000000 AS DateTime), CAST(0x0000A17C00000000 AS DateTime), CAST(0x0000A17B00000000 AS DateTime), N'Shipped', NULL, 448)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10390, CAST(0x0000A17700000000 AS DateTime), CAST(0x0000A17E00000000 AS DateTime), CAST(0x0000A17A00000000 AS DateTime), N'Shipped', N'They want to reevaluate their terms agreement with Finance.', 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10391, CAST(0x0000A17C00000000 AS DateTime), CAST(0x0000A18700000000 AS DateTime), CAST(0x0000A18200000000 AS DateTime), N'Shipped', NULL, 276)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10392, CAST(0x0000A17D00000000 AS DateTime), CAST(0x0000A18500000000 AS DateTime), CAST(0x0000A17F00000000 AS DateTime), N'Shipped', NULL, 452)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10393, CAST(0x0000A17E00000000 AS DateTime), CAST(0x0000A18900000000 AS DateTime), CAST(0x0000A18100000000 AS DateTime), N'Shipped', N'They want to reevaluate their terms agreement with Finance.', 323)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10394, CAST(0x0000A18200000000 AS DateTime), CAST(0x0000A18C00000000 AS DateTime), CAST(0x0000A18600000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10395, CAST(0x0000A18400000000 AS DateTime), CAST(0x0000A18B00000000 AS DateTime), CAST(0x0000A18A00000000 AS DateTime), N'Shipped', N'We must be cautions with this customer. Their VP of Sales resigned. Company may be heading down.', 250)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10396, CAST(0x0000A18A00000000 AS DateTime), CAST(0x0000A19400000000 AS DateTime), CAST(0x0000A18F00000000 AS DateTime), N'Shipped', NULL, 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10397, CAST(0x0000A18F00000000 AS DateTime), CAST(0x0000A19B00000000 AS DateTime), CAST(0x0000A19300000000 AS DateTime), N'Shipped', NULL, 242)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10398, CAST(0x0000A19100000000 AS DateTime), CAST(0x0000A19B00000000 AS DateTime), CAST(0x0000A19200000000 AS DateTime), N'Shipped', NULL, 353)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10399, CAST(0x0000A19300000000 AS DateTime), CAST(0x0000A19E00000000 AS DateTime), CAST(0x0000A19500000000 AS DateTime), N'Shipped', NULL, 496)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10400, CAST(0x0000A19300000000 AS DateTime), CAST(0x0000A19D00000000 AS DateTime), CAST(0x0000A19600000000 AS DateTime), N'Shipped', N'Customer requested that DHL is used for this shipping', 450)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10401, CAST(0x0000A19500000000 AS DateTime), CAST(0x0000A1A000000000 AS DateTime), NULL, N'On Hold', N'Customer credit limit exceeded. Will ship when a payment is received.', 328)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10402, CAST(0x0000A19900000000 AS DateTime), CAST(0x0000A1A000000000 AS DateTime), CAST(0x0000A19E00000000 AS DateTime), N'Shipped', NULL, 406)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10403, CAST(0x0000A19A00000000 AS DateTime), CAST(0x0000A1A400000000 AS DateTime), CAST(0x0000A19D00000000 AS DateTime), N'Shipped', NULL, 201)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10404, CAST(0x0000A19A00000000 AS DateTime), CAST(0x0000A1A000000000 AS DateTime), CAST(0x0000A19D00000000 AS DateTime), N'Shipped', NULL, 323)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10405, CAST(0x0000A1A000000000 AS DateTime), CAST(0x0000A1AA00000000 AS DateTime), CAST(0x0000A1A600000000 AS DateTime), N'Shipped', NULL, 209)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10406, CAST(0x0000A1A100000000 AS DateTime), CAST(0x0000A1AB00000000 AS DateTime), CAST(0x0000A1A700000000 AS DateTime), N'Disputed', N'Customer claims container with shipment was damaged during shipping and some items were missing. I am talking to FedEx about this.', 145)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10407, CAST(0x0000A1A800000000 AS DateTime), CAST(0x0000A1B400000000 AS DateTime), NULL, N'On Hold', N'Customer credit limit exceeded. Will ship when a payment is received.', 450)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10408, CAST(0x0000A1A800000000 AS DateTime), CAST(0x0000A1AF00000000 AS DateTime), CAST(0x0000A1AD00000000 AS DateTime), N'Shipped', NULL, 398)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10409, CAST(0x0000A1A900000000 AS DateTime), CAST(0x0000A1B500000000 AS DateTime), CAST(0x0000A1AA00000000 AS DateTime), N'Shipped', NULL, 166)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10410, CAST(0x0000A1AF00000000 AS DateTime), CAST(0x0000A1BA00000000 AS DateTime), CAST(0x0000A1B000000000 AS DateTime), N'Shipped', NULL, 357)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10411, CAST(0x0000A1B100000000 AS DateTime), CAST(0x0000A1B800000000 AS DateTime), CAST(0x0000A1B600000000 AS DateTime), N'Shipped', NULL, 233)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10412, CAST(0x0000A1B300000000 AS DateTime), CAST(0x0000A1BD00000000 AS DateTime), CAST(0x0000A1B500000000 AS DateTime), N'Shipped', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10413, CAST(0x0000A1B500000000 AS DateTime), CAST(0x0000A1BE00000000 AS DateTime), CAST(0x0000A1B900000000 AS DateTime), N'Shipped', N'Customer requested that DHL is used for this shipping', 175)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10414, CAST(0x0000A1B600000000 AS DateTime), CAST(0x0000A1BD00000000 AS DateTime), NULL, N'On Hold', N'Customer credit limit exceeded. Will ship when a payment is received.', 362)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10415, CAST(0x0000A1B900000000 AS DateTime), CAST(0x0000A1C400000000 AS DateTime), CAST(0x0000A1BC00000000 AS DateTime), N'Disputed', N'Customer claims the scales of the models don''t match what was discussed. I keep all the paperwork though to prove otherwise', 471)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10416, CAST(0x0000A1BA00000000 AS DateTime), CAST(0x0000A1C000000000 AS DateTime), CAST(0x0000A1BE00000000 AS DateTime), N'Shipped', NULL, 386)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10417, CAST(0x0000A1BD00000000 AS DateTime), CAST(0x0000A1C300000000 AS DateTime), CAST(0x0000A1C300000000 AS DateTime), N'Disputed', N'Customer doesn''t like the colors and precision of the models.', 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10418, CAST(0x0000A1C000000000 AS DateTime), CAST(0x0000A1C800000000 AS DateTime), CAST(0x0000A1C400000000 AS DateTime), N'Shipped', NULL, 412)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10419, CAST(0x0000A1C100000000 AS DateTime), CAST(0x0000A1CC00000000 AS DateTime), CAST(0x0000A1C300000000 AS DateTime), N'Shipped', NULL, 382)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10420, CAST(0x0000A1CD00000000 AS DateTime), CAST(0x0000A1D600000000 AS DateTime), NULL, N'In Process', NULL, 282)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10421, CAST(0x0000A1CD00000000 AS DateTime), CAST(0x0000A1D500000000 AS DateTime), NULL, N'In Process', N'Custom shipping instructions were sent to warehouse', 124)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10422, CAST(0x0000A1CE00000000 AS DateTime), CAST(0x0000A1DA00000000 AS DateTime), NULL, N'In Process', NULL, 157)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10423, CAST(0x0000A1CE00000000 AS DateTime), CAST(0x0000A1D400000000 AS DateTime), NULL, N'In Process', NULL, 314)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10424, CAST(0x0000A1CF00000000 AS DateTime), CAST(0x0000A1D700000000 AS DateTime), NULL, N'In Process', NULL, 141)
GO
INSERT [dbo].[SalesOrderHeader] ([orderID], [orderDate], [requiredDate], [shippedDate], [status], [comments], [customerID]) VALUES (10425, CAST(0x0000A1CF00000000 AS DateTime), CAST(0x0000A1D600000000 AS DateTime), NULL, N'In Process', NULL, 119)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10100, N'S24_3969', 49, 35.29, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10100, N'S18_2248', 50, 55.09, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10100, N'S18_1749', 30, 136, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10100, N'S18_4409', 22, 75.46, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10101, N'S18_2795', 26, 167.06, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10101, N'S24_2022', 46, 44.35, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10101, N'S24_1937', 45, 32.53, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10101, N'S18_2325', 25, 108.06, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10102, N'S18_1367', 41, 43.13, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10102, N'S18_1342', 39, 95.55, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S24_2300', 36, 107.34, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S18_2432', 22, 58.34, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S32_1268', 31, 92.46, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S10_4962', 42, 119.67, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S18_4600', 36, 98.07, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S700_2824', 42, 94.07, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S32_3522', 45, 63.35, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S12_1666', 27, 121.64, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S18_4668', 41, 40.75, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S18_1097', 35, 94.5, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S10_1949', 26, 214.3, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S18_2949', 27, 92.19, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S18_3136', 25, 86.92, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S18_2957', 35, 61.84, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S24_4258', 25, 88.62, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10103, N'S18_3320', 46, 86.31, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S12_3148', 34, 131.44, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S50_1514', 32, 53.31, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S18_4027', 38, 119.2, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S32_3207', 49, 56.55, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S24_4048', 26, 106.45, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S24_1444', 35, 52.02, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S50_1392', 33, 114.59, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S18_2238', 24, 135.9, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S12_4473', 41, 111.39, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S24_2840', 44, 30.41, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S32_2509', 35, 51.95, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S18_2319', 29, 122.73, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10104, N'S18_3232', 23, 165.95, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S24_3816', 50, 75.47, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S10_4757', 50, 127.84, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S700_2610', 31, 60.72, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S24_3151', 44, 73.46, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S700_1138', 41, 54, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S700_3505', 39, 92.16, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S700_3962', 22, 99.31, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S72_3212', 25, 44.77, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S24_2011', 43, 117.97, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S18_4522', 41, 75.48, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S18_3140', 22, 136.59, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S700_1938', 29, 86.61, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S18_3259', 38, 87.73, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S12_3891', 29, 141.88, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10105, N'S12_1108', 41, 205.72, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S700_2834', 32, 113.9, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S18_2581', 34, 81.1, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S24_4278', 26, 71, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S24_1785', 28, 107.23, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S32_4289', 33, 65.35, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S50_1341', 39, 35.78, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S700_1691', 31, 91.34, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S700_3167', 44, 76, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S700_2466', 34, 99.72, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S700_4002', 48, 70.33, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S24_3949', 50, 55.96, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S18_1662', 36, 134.04, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S24_2841', 49, 65.77, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S24_3420', 31, 55.89, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S72_1253', 48, 43.7, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S700_2047', 30, 85.09, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S18_3856', 41, 94.22, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10106, N'S18_3029', 41, 80.86, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10107, N'S12_2823', 21, 122, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10107, N'S10_1678', 30, 81.35, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10107, N'S24_1578', 25, 96.92, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10107, N'S10_4698', 27, 172.36, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10107, N'S10_2016', 39, 105.86, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10107, N'S18_2625', 29, 52.7, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10107, N'S24_2000', 38, 73.12, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10107, N'S32_1374', 20, 88.9, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S24_3856', 40, 132, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S18_1889', 38, 67.76, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S12_4675', 36, 107.1, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S12_3380', 45, 96.3, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S24_3371', 30, 60.01, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S12_1099', 33, 165.38, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S12_3990', 39, 75.81, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S18_3482', 29, 132.29, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S18_3278', 26, 73.17, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S24_4620', 31, 67.1, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S18_4721', 44, 139.87, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S18_3782', 43, 52.84, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S32_2206', 27, 36.21, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S50_4713', 34, 74.85, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S24_2360', 35, 64.41, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10108, N'S32_4485', 31, 87.76, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10109, N'S18_2870', 26, 126.72, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10109, N'S18_3685', 47, 125.74, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10109, N'S18_1984', 38, 137.98, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10109, N'S18_1129', 26, 117.48, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10109, N'S18_3232', 46, 160.87, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10109, N'S24_2972', 29, 32.1, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S18_2795', 31, 163.69, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S24_2022', 39, 40.77, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S24_1937', 20, 28.88, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S18_2325', 33, 115.69, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S24_3969', 48, 35.29, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S18_2248', 32, 51.46, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S18_1749', 42, 153, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S18_4409', 28, 81.91, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S18_4933', 42, 62, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S24_2887', 46, 112.74, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S24_2766', 43, 82.69, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S24_3191', 27, 80.47, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S24_1046', 36, 72.02, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S24_3432', 37, 96.37, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S24_1628', 29, 43.27, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10110, N'S18_1589', 37, 118.22, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10111, N'S18_3136', 43, 94.25, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10111, N'S18_2957', 28, 53.09, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10111, N'S24_4258', 26, 85.7, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10111, N'S18_3320', 39, 91.27, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10111, N'S18_1367', 48, 48.52, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10111, N'S18_1342', 33, 87.33, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10112, N'S10_1949', 29, 197.16, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10112, N'S18_2949', 23, 85.1, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10113, N'S32_3522', 23, 58.82, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10113, N'S12_1666', 21, 121.64, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10113, N'S18_4668', 50, 43.27, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10113, N'S18_1097', 49, 101.5, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S24_2840', 24, 28.64, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S32_2509', 28, 43.83, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S18_2319', 39, 106.78, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S18_3232', 48, 169.34, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S24_2300', 21, 102.23, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S18_2432', 45, 53.48, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S32_1268', 32, 88.61, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S10_4962', 31, 128.53, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S18_4600', 41, 105.34, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10114, N'S700_2824', 42, 82.94, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10115, N'S24_4048', 44, 106.45, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10115, N'S24_1444', 47, 56.64, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10115, N'S50_1392', 27, 100.7, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10115, N'S18_2238', 46, 140.81, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10115, N'S12_4473', 46, 111.39, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10116, N'S32_3207', 27, 60.28, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S700_3962', 45, 89.38, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S72_3212', 50, 52.42, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S24_2011', 41, 119.2, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S18_4522', 23, 73.73, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S18_3140', 26, 121.57, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S700_1938', 38, 75.35, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S18_3259', 21, 81.68, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S12_3891', 39, 173.02, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S12_1108', 33, 195.33, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S12_3148', 43, 148.06, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S50_1514', 21, 55.65, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10117, N'S18_4027', 22, 122.08, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10118, N'S700_3505', 36, 86.15, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S700_4002', 26, 63.67, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S24_3949', 28, 62.1, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S18_1662', 43, 151.38, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S24_2841', 41, 64.4, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S24_3420', 20, 63.12, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S72_1253', 28, 40.22, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S700_2047', 29, 74.23, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S18_3856', 27, 95.28, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S18_3029', 21, 74.84, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S24_3816', 35, 82.18, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S10_4757', 46, 112.88, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S700_2610', 38, 67.22, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S24_3151', 35, 72.58, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10119, N'S700_1138', 25, 57.34, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S24_1578', 35, 110.45, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S10_4698', 46, 158.8, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S10_2016', 29, 118.94, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S18_2625', 46, 57.54, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S24_2000', 34, 72.36, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S32_1374', 22, 94.9, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S700_2834', 24, 106.79, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S18_2581', 29, 82.79, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S24_4278', 29, 71.73, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S24_1785', 39, 93.01, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S32_4289', 29, 68.79, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S50_1341', 49, 41.46, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S700_1691', 47, 91.34, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S700_3167', 43, 72, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10120, N'S700_2466', 24, 81.77, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10121, N'S50_4713', 44, 72.41, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10121, N'S24_2360', 32, 58.18, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10121, N'S32_4485', 25, 95.93, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10121, N'S12_2823', 50, 126.52, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10121, N'S10_1678', 34, 86.13, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S18_1984', 31, 113.8, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S18_1129', 34, 114.65, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S18_3232', 25, 137.17, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S24_2972', 39, 34.74, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S24_3856', 43, 136.22, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S18_1889', 43, 62.37, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S12_4675', 20, 104.8, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S12_3380', 37, 113.92, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S24_3371', 34, 50.82, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S12_1099', 42, 155.66, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S12_3990', 32, 65.44, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S18_3482', 21, 133.76, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S18_3278', 21, 69.15, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S24_4620', 29, 67.1, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S18_4721', 28, 145.82, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S18_3782', 35, 59.06, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10122, N'S32_2206', 31, 33.79, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10123, N'S24_1628', 50, 43.27, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10123, N'S18_1589', 26, 120.71, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10123, N'S18_2870', 46, 114.84, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10123, N'S18_3685', 34, 117.26, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S24_2022', 22, 36.29, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S24_1937', 45, 30.53, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S18_2325', 42, 111.87, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S24_3969', 46, 36.11, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S18_2248', 42, 58.12, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S18_1749', 21, 153, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S18_4409', 36, 75.46, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S18_4933', 23, 66.28, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S24_2887', 25, 93.95, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S24_2766', 32, 74.51, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S24_3191', 49, 76.19, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S24_1046', 22, 62.47, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10124, N'S24_3432', 43, 101.73, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10125, N'S18_1342', 32, 89.38, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10125, N'S18_2795', 34, 138.38, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S24_2300', 27, 122.68, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S18_2432', 43, 51.05, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S32_1268', 43, 82.83, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S10_4962', 22, 122.62, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S18_4600', 50, 102.92, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S700_2824', 45, 97.1, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S32_3522', 26, 62.05, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S12_1666', 21, 135.3, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S18_4668', 43, 47.29, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S18_1097', 38, 116.67, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S10_1949', 38, 205.73, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S18_2949', 31, 93.21, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S18_3136', 30, 93.2, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S18_2957', 46, 61.84, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S24_4258', 34, 83.76, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S18_3320', 38, 94.25, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10126, N'S18_1367', 42, 51.21, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S12_3891', 42, 169.56, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S12_1108', 46, 193.25, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S12_3148', 46, 140.5, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S50_1514', 46, 55.65, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S18_4027', 25, 126.39, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S32_3207', 29, 60.9, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S24_4048', 20, 107.63, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S24_1444', 20, 50.86, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S50_1392', 46, 111.12, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S18_2238', 45, 140.81, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S12_4473', 24, 100.73, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S24_2840', 39, 34.3, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S32_2509', 45, 46.53, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S18_2319', 45, 114.14, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10127, N'S18_3232', 22, 149.02, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10128, N'S18_4522', 43, 77.24, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10128, N'S18_3140', 41, 120.2, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10128, N'S700_1938', 32, 72.75, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10128, N'S18_3259', 41, 80.67, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10129, N'S24_3816', 50, 76.31, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10129, N'S10_4757', 33, 123.76, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10129, N'S700_2610', 45, 72.28, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10129, N'S24_3151', 41, 81.43, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10129, N'S700_1138', 31, 58.67, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10129, N'S700_3505', 42, 90.15, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10129, N'S700_3962', 30, 94.34, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10129, N'S72_3212', 32, 44.23, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10129, N'S24_2011', 45, 113.06, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10130, N'S18_3856', 33, 99.52, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10130, N'S18_3029', 40, 68.82, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10131, N'S700_2466', 40, 86.76, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10131, N'S700_4002', 26, 63.67, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10131, N'S24_3949', 50, 54.59, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10131, N'S18_1662', 21, 141.92, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10131, N'S24_2841', 35, 60.97, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10131, N'S24_3420', 29, 52.6, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10131, N'S72_1253', 21, 40.22, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10131, N'S700_2047', 22, 76.94, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10132, N'S700_3167', 36, 80, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10133, N'S32_1374', 23, 80.91, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10133, N'S700_2834', 27, 115.09, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10133, N'S18_2581', 49, 80.26, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10133, N'S24_4278', 46, 61.58, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10133, N'S24_1785', 41, 109.42, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10133, N'S32_4289', 49, 67.41, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10133, N'S50_1341', 27, 37.09, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10133, N'S700_1691', 24, 76.73, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10134, N'S12_2823', 20, 131.04, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10134, N'S10_1678', 41, 90.92, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10134, N'S24_1578', 35, 94.67, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10134, N'S10_4698', 31, 187.85, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10134, N'S10_2016', 27, 116.56, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10134, N'S18_2625', 30, 51.48, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10134, N'S24_2000', 43, 75.41, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S24_2972', 20, 34.36, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S24_3856', 47, 139.03, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S18_1889', 48, 66.99, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S12_4675', 29, 103.64, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S12_3380', 48, 110.39, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S24_3371', 27, 52.05, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S12_1099', 42, 173.17, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S12_3990', 24, 72.62, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S18_3482', 42, 139.64, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S18_3278', 45, 65.94, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S24_4620', 23, 76.8, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S18_4721', 31, 133.92, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S18_3782', 45, 49.74, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S32_2206', 33, 38.62, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S50_4713', 44, 78.92, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S24_2360', 29, 67.18, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10135, N'S32_4485', 30, 91.85, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10136, N'S18_1984', 36, 120.91, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10136, N'S18_1129', 25, 117.48, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10136, N'S18_3232', 41, 169.34, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10137, N'S24_1628', 26, 40.25, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10137, N'S18_1589', 44, 115.73, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10137, N'S18_2870', 37, 110.88, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10137, N'S18_3685', 31, 118.68, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S24_2022', 33, 38.53, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S24_1937', 22, 33.19, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S18_2325', 38, 114.42, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S24_3969', 29, 32.82, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S18_2248', 22, 51.46, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S18_1749', 33, 149.6, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S18_4409', 47, 79.15, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S18_4933', 23, 64.86, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S24_2887', 30, 96.3, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S24_2766', 28, 73.6, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S24_3191', 49, 77.05, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S24_1046', 45, 59.53, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10138, N'S24_3432', 21, 99.58, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10139, N'S18_2949', 46, 91.18, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10139, N'S18_3136', 20, 101.58, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10139, N'S18_2957', 20, 52.47, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10139, N'S24_4258', 29, 93.49, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10139, N'S18_3320', 30, 81.35, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10139, N'S18_1367', 49, 52.83, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10139, N'S18_1342', 31, 89.38, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10139, N'S18_2795', 41, 151.88, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S24_2300', 47, 118.84, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S18_2432', 46, 51.05, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S32_1268', 26, 87.64, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S10_4962', 26, 131.49, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S18_4600', 40, 100.5, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S700_2824', 36, 101.15, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S32_3522', 28, 62.05, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S12_1666', 38, 118.9, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S18_4668', 29, 40.25, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S18_1097', 32, 95.67, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10140, N'S10_1949', 37, 186.44, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10141, N'S24_4048', 40, 104.09, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10141, N'S24_1444', 20, 50.86, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10141, N'S50_1392', 44, 94.92, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10141, N'S18_2238', 39, 160.46, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10141, N'S12_4473', 21, 114.95, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10141, N'S24_2840', 21, 32.18, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10141, N'S32_2509', 24, 53.03, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10141, N'S18_2319', 47, 103.09, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10141, N'S18_3232', 34, 143.94, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S24_3151', 49, 74.35, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S700_1138', 41, 55.34, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S700_3505', 21, 92.16, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S700_3962', 38, 91.37, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S72_3212', 39, 46.96, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S24_2011', 33, 114.29, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S18_4522', 24, 79.87, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S18_3140', 47, 129.76, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S700_1938', 43, 77.08, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S18_3259', 22, 95.8, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S12_3891', 46, 167.83, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S12_1108', 33, 166.24, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S12_3148', 33, 140.5, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S50_1514', 42, 56.24, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S18_4027', 24, 122.08, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10142, N'S32_3207', 42, 60.9, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S50_1341', 34, 34.91, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S700_1691', 36, 86.77, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S700_3167', 28, 70.4, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S700_2466', 26, 79.78, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S700_4002', 34, 65.15, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S24_3949', 28, 55.96, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S18_1662', 32, 126.15, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S24_2841', 27, 63.71, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S24_3420', 33, 59.83, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S72_1253', 37, 49.66, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S700_2047', 26, 87.8, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S18_3856', 34, 99.52, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S18_3029', 46, 70.54, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S24_3816', 23, 74.64, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S10_4757', 49, 133.28, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10143, N'S700_2610', 31, 69.39, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10144, N'S32_4289', 20, 56.41, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S32_2206', 31, 39.43, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S50_4713', 38, 73.22, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S24_2360', 27, 56.1, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S32_4485', 27, 95.93, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S12_2823', 49, 146.1, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S10_1678', 45, 76.56, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S24_1578', 43, 103.68, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S10_4698', 33, 154.93, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S10_2016', 37, 104.67, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S18_2625', 30, 52.7, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S24_2000', 47, 63.98, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S32_1374', 33, 99.89, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S700_2834', 20, 113.9, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S18_2581', 30, 71.81, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S24_4278', 33, 71.73, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10145, N'S24_1785', 40, 87.54, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10146, N'S18_4721', 29, 130.94, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10146, N'S18_3782', 47, 60.3, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S24_2972', 25, 33.23, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S24_3856', 23, 123.58, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S18_1889', 26, 70.84, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S12_4675', 33, 97.89, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S12_3380', 31, 110.39, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S24_3371', 30, 48.98, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S12_1099', 48, 161.49, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S12_3990', 21, 74.21, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S18_3482', 37, 129.35, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S18_3278', 36, 74.78, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10147, N'S24_4620', 31, 72.76, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S18_4409', 34, 83.75, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S18_4933', 29, 66.28, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S24_2887', 34, 115.09, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S24_2766', 21, 77.24, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S24_3191', 31, 71.91, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S24_1046', 25, 65.41, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S24_3432', 27, 96.37, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S24_1628', 47, 46.29, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S18_1589', 47, 108.26, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S18_2870', 27, 113.52, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S18_3685', 28, 135.63, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S18_1984', 25, 136.56, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S18_1129', 23, 114.65, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10148, N'S18_3232', 32, 143.94, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S24_4258', 20, 90.57, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S18_3320', 42, 89.29, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S18_1367', 30, 48.52, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S18_1342', 50, 87.33, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S18_2795', 23, 167.06, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S24_2022', 49, 39.87, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S24_1937', 36, 31.2, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S18_2325', 33, 125.86, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S24_3969', 26, 38.57, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S18_2248', 24, 50.85, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10149, N'S18_1749', 34, 156.4, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S10_4962', 20, 121.15, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S18_4600', 49, 111.39, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S700_2824', 20, 95.08, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S32_3522', 49, 62.05, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S12_1666', 30, 135.3, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S18_4668', 30, 47.29, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S18_1097', 34, 95.67, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S10_1949', 45, 182.16, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S18_2949', 47, 93.21, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S18_3136', 26, 97.39, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10150, N'S18_2957', 30, 56.21, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S50_1392', 26, 108.81, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S18_2238', 43, 152.27, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S12_4473', 24, 114.95, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S24_2840', 30, 29.35, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S32_2509', 41, 43.29, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S18_2319', 49, 106.78, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S18_3232', 21, 167.65, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S24_2300', 42, 109.9, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S18_2432', 39, 58.34, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10151, N'S32_1268', 27, 84.75, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10152, N'S18_4027', 35, 117.77, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10152, N'S32_3207', 33, 57.17, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10152, N'S24_4048', 23, 112.37, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10152, N'S24_1444', 25, 49.13, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S700_1138', 43, 58, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S700_3505', 50, 87.15, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S700_3962', 20, 85.41, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S72_3212', 50, 51.87, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S24_2011', 40, 111.83, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S18_4522', 22, 82.5, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S18_3140', 31, 125.66, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S700_1938', 31, 80.55, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S18_3259', 29, 82.69, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S12_3891', 49, 155.72, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S12_1108', 20, 201.57, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S12_3148', 42, 128.42, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10153, N'S50_1514', 31, 53.31, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10154, N'S700_2610', 36, 59.27, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10154, N'S24_3151', 31, 75.23, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S700_3167', 43, 76.8, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S700_2466', 20, 87.75, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S700_4002', 44, 70.33, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S24_3949', 44, 58.69, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S18_1662', 38, 138.77, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S24_2841', 23, 62.34, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S24_3420', 34, 56.55, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S72_1253', 34, 49.16, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S700_2047', 32, 89.61, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S18_3856', 29, 105.87, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S18_3029', 44, 83.44, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S24_3816', 37, 76.31, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10155, N'S10_4757', 32, 129.2, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10156, N'S50_1341', 20, 43.64, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10156, N'S700_1691', 48, 77.64, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10157, N'S32_1374', 34, 83.91, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10157, N'S700_2834', 48, 109.16, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10157, N'S18_2581', 33, 69.27, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10157, N'S24_4278', 33, 66.65, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10157, N'S24_1785', 40, 89.72, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10157, N'S32_4289', 28, 56.41, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10158, N'S24_2000', 22, 67.79, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S24_3371', 50, 49.6, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S12_1099', 41, 188.73, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S12_3990', 24, 67.03, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S18_3482', 25, 129.35, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S18_3278', 21, 66.74, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S24_4620', 23, 80.84, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S18_4721', 32, 142.85, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S18_3782', 21, 54.71, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S32_2206', 35, 39.43, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S50_4713', 31, 78.11, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S24_2360', 27, 67.18, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S32_4485', 23, 86.74, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S12_2823', 38, 131.04, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S10_1678', 49, 81.35, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S24_1578', 44, 100.3, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S10_4698', 22, 170.42, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S10_2016', 37, 101.1, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10159, N'S18_2625', 42, 51.48, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10160, N'S18_3232', 20, 140.55, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10160, N'S24_2972', 42, 30.59, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10160, N'S24_3856', 35, 130.6, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10160, N'S18_1889', 38, 70.84, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10160, N'S12_4675', 50, 93.28, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10160, N'S12_3380', 46, 96.3, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S18_4933', 25, 62.72, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S24_2887', 25, 108.04, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S24_2766', 20, 82.69, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S24_3191', 20, 72.77, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S24_1046', 37, 73.49, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S24_3432', 30, 94.23, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S24_1628', 23, 47.29, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S18_1589', 43, 102.04, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S18_2870', 23, 125.4, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S18_3685', 36, 132.8, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S18_1984', 48, 139.41, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10161, N'S18_1129', 28, 121.72, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S18_1367', 45, 45.28, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S18_1342', 48, 87.33, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S18_2795', 48, 156.94, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S24_2022', 43, 38.98, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S24_1937', 37, 27.55, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S18_2325', 38, 113.15, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S24_3969', 37, 32.82, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S18_2248', 27, 53.28, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S18_1749', 29, 141.1, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10162, N'S18_4409', 39, 86.51, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10163, N'S10_1949', 21, 212.16, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10163, N'S18_2949', 31, 101.31, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10163, N'S18_3136', 40, 101.58, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10163, N'S18_2957', 48, 59.96, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10163, N'S24_4258', 42, 96.42, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10163, N'S18_3320', 43, 80.36, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10164, N'S32_1268', 24, 91.49, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10164, N'S10_4962', 21, 143.31, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10164, N'S18_4600', 45, 107.76, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10164, N'S700_2824', 39, 86.99, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10164, N'S32_3522', 49, 57.53, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10164, N'S12_1666', 49, 121.64, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10164, N'S18_4668', 25, 46.29, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10164, N'S18_1097', 36, 103.84, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S18_3259', 50, 84.71, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S12_3891', 27, 152.26, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S12_1108', 44, 168.32, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S12_3148', 34, 123.89, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S50_1514', 38, 49.21, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S18_4027', 28, 123.51, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S32_3207', 44, 55.3, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S24_4048', 24, 106.45, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S24_1444', 25, 46.82, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S50_1392', 48, 106.49, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S18_2238', 29, 134.26, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S12_4473', 48, 109.02, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S24_2840', 27, 31.12, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S32_2509', 48, 50.86, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S18_2319', 46, 120.28, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S18_3232', 47, 154.1, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S24_2300', 32, 117.57, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10165, N'S18_2432', 31, 60.77, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10166, N'S18_4522', 26, 72.85, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10166, N'S18_3140', 43, 136.59, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10166, N'S700_1938', 29, 76.22, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S18_1662', 43, 141.92, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S24_2841', 21, 54.81, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S24_3420', 32, 64.44, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S72_1253', 40, 42.71, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S700_2047', 29, 87.8, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S18_3856', 34, 84.7, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S18_3029', 46, 69.68, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S24_3816', 29, 73.8, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S10_4757', 44, 123.76, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S700_2610', 46, 62.16, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S24_3151', 20, 77, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S700_1138', 43, 66, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S700_3505', 24, 85.14, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S700_3962', 28, 83.42, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S72_3212', 38, 43.68, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10167, N'S24_2011', 33, 110.6, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S10_1678', 36, 94.74, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S24_1578', 50, 103.68, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S10_4698', 20, 160.74, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S10_2016', 27, 97.53, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S18_2625', 46, 49.06, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S24_2000', 29, 72.36, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S32_1374', 28, 89.9, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S700_2834', 36, 94.92, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S18_2581', 21, 75.19, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S24_4278', 48, 68.1, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S24_1785', 49, 93.01, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S32_4289', 31, 57.78, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S50_1341', 48, 39.71, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S700_1691', 28, 91.34, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S700_3167', 48, 72, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S700_2466', 31, 87.75, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S700_4002', 39, 67.37, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10168, N'S24_3949', 27, 57.32, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S24_3371', 34, 53.27, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S12_1099', 30, 163.44, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S12_3990', 36, 71.82, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S18_3482', 36, 136.7, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S18_3278', 32, 65.13, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S24_4620', 24, 77.61, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S18_4721', 33, 120.53, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S18_3782', 38, 52.84, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S32_2206', 26, 37.01, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S50_4713', 48, 75.66, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S24_2360', 38, 66.49, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S32_4485', 34, 83.68, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10169, N'S12_2823', 35, 126.52, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10170, N'S24_3856', 34, 130.6, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10170, N'S18_1889', 20, 70.07, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10170, N'S12_4675', 41, 93.28, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10170, N'S12_3380', 47, 116.27, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10171, N'S18_1984', 35, 128.03, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10171, N'S18_1129', 35, 134.46, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10171, N'S18_3232', 39, 165.95, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10171, N'S24_2972', 36, 34.74, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10172, N'S24_2766', 22, 79.97, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10172, N'S24_3191', 24, 77.91, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10172, N'S24_1046', 32, 61, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10172, N'S24_3432', 22, 87.81, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10172, N'S24_1628', 34, 43.27, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10172, N'S18_1589', 42, 109.51, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10172, N'S18_2870', 39, 117.48, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10172, N'S18_3685', 48, 139.87, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_3136', 31, 86.92, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_2957', 28, 56.84, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S24_4258', 22, 93.49, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_3320', 29, 90.28, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_1367', 48, 51.75, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_1342', 43, 101.71, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_2795', 22, 140.06, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S24_2022', 27, 39.42, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S24_1937', 31, 29.87, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_2325', 31, 127.13, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S24_3969', 35, 35.7, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_2248', 26, 55.09, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_1749', 24, 168.3, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_4409', 21, 77.31, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S18_4933', 39, 58.44, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10173, N'S24_2887', 23, 98.65, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10174, N'S12_1666', 43, 113.44, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10174, N'S18_4668', 49, 44.27, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10174, N'S18_1097', 48, 108.5, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10174, N'S10_1949', 34, 207.87, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10174, N'S18_2949', 46, 100.3, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S12_4473', 26, 109.02, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S24_2840', 37, 32.18, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S32_2509', 50, 50.86, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S18_2319', 48, 101.87, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S18_3232', 29, 150.71, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S24_2300', 28, 121.4, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S18_2432', 41, 59.55, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S32_1268', 22, 89.57, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S10_4962', 33, 119.67, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S18_4600', 47, 102.92, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S700_2824', 42, 80.92, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10175, N'S32_3522', 29, 56.24, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S12_3891', 50, 160.91, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S12_1108', 33, 166.24, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S12_3148', 47, 145.04, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S50_1514', 38, 52.14, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S18_4027', 36, 140.75, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S32_3207', 22, 62.14, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S24_4048', 29, 101.72, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S24_1444', 27, 55.49, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S50_1392', 23, 109.96, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10176, N'S18_2238', 20, 139.17, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S700_2610', 32, 64.33, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S24_3151', 45, 79.66, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S700_1138', 24, 58.67, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S700_3505', 44, 88.15, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S700_3962', 24, 83.42, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S72_3212', 40, 52.96, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S24_2011', 50, 115.52, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S18_4522', 35, 82.5, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S18_3140', 23, 113.37, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S700_1938', 31, 77.95, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10177, N'S18_3259', 29, 92.77, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S700_2466', 22, 91.74, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S700_4002', 45, 68.11, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S24_3949', 30, 64.15, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S18_1662', 42, 127.73, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S24_2841', 34, 67.82, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S24_3420', 27, 65.75, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S72_1253', 45, 41.71, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S700_2047', 34, 86.9, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S18_3856', 48, 104.81, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S18_3029', 41, 70.54, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S24_3816', 21, 68.77, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10178, N'S10_4757', 24, 131.92, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10179, N'S32_1374', 45, 86.9, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10179, N'S700_2834', 25, 98.48, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10179, N'S18_2581', 24, 82.79, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10179, N'S24_4278', 27, 66.65, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10179, N'S24_1785', 47, 105.04, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10179, N'S32_4289', 24, 63.97, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10179, N'S50_1341', 34, 43.2, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10179, N'S700_1691', 23, 75.81, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10179, N'S700_3167', 39, 80, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S24_4620', 28, 68.71, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S18_4721', 44, 147.31, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S18_3782', 21, 59.06, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S32_2206', 34, 33.39, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S50_4713', 21, 74.85, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S24_2360', 35, 60.95, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S32_4485', 22, 102.05, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S12_2823', 40, 131.04, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S10_1678', 29, 76.56, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S24_1578', 48, 98.05, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S10_4698', 41, 164.61, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S10_2016', 42, 99.91, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S18_2625', 25, 48.46, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10180, N'S24_2000', 28, 61.7, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S24_1628', 34, 45.28, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S18_1589', 42, 124.44, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S18_2870', 27, 130.68, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S18_3685', 39, 137.04, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S18_1984', 21, 129.45, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S18_1129', 44, 124.56, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S18_3232', 45, 147.33, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S24_2972', 37, 32.85, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S24_3856', 25, 122.17, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S18_1889', 22, 74.69, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S12_4675', 36, 107.1, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S12_3380', 28, 113.92, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S24_3371', 23, 54.49, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S12_1099', 27, 155.66, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S12_3990', 20, 67.03, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S18_3482', 22, 120.53, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10181, N'S18_3278', 30, 73.17, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S18_3320', 33, 86.31, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S18_1367', 32, 44.21, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S18_1342', 25, 83.22, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S18_2795', 21, 135, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S24_2022', 31, 39.87, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S24_1937', 39, 31.86, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S18_2325', 20, 105.52, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S24_3969', 23, 34.88, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S18_2248', 38, 54.49, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S18_1749', 44, 159.8, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S18_4409', 36, 88.35, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S18_4933', 44, 61.29, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S24_2887', 20, 116.27, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S24_2766', 36, 87.24, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S24_3191', 33, 73.62, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S24_1046', 47, 63.2, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10182, N'S24_3432', 49, 95.3, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S10_4962', 28, 127.06, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S18_4600', 21, 118.66, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S700_2824', 23, 85.98, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S32_3522', 49, 52.36, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S12_1666', 41, 114.8, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S18_4668', 40, 42.26, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S18_1097', 21, 108.5, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S10_1949', 23, 180.01, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S18_2949', 37, 91.18, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S18_3136', 22, 90.06, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S18_2957', 39, 51.22, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10183, N'S24_4258', 47, 81.81, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S32_3207', 48, 59.03, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S24_4048', 49, 114.73, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S24_1444', 31, 57.22, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S50_1392', 45, 92.6, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S18_2238', 46, 145.72, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S12_4473', 37, 105.47, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S24_2840', 42, 30.06, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S32_2509', 33, 52.49, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S18_2319', 46, 119.05, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S18_3232', 28, 165.95, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S24_2300', 24, 117.57, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S18_2432', 44, 60.77, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10184, N'S32_1268', 46, 84.75, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S700_2610', 39, 61.44, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S24_3151', 33, 83.2, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S700_1138', 21, 64.67, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S700_3505', 37, 99.17, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S700_3962', 22, 93.35, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S72_3212', 28, 47.5, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S24_2011', 30, 105.69, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S18_4522', 47, 87.77, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S18_3140', 28, 124.3, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S700_1938', 30, 79.68, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S18_3259', 49, 94.79, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S12_3891', 43, 147.07, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S12_1108', 21, 195.33, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S12_3148', 33, 146.55, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S50_1514', 20, 46.86, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10185, N'S18_4027', 39, 127.82, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10186, N'S18_1662', 32, 137.19, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10186, N'S24_2841', 22, 60.29, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10186, N'S24_3420', 21, 59.83, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10186, N'S72_1253', 28, 42.71, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10186, N'S700_2047', 24, 80.56, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10186, N'S18_3856', 46, 98.46, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10186, N'S18_3029', 32, 73.12, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10186, N'S24_3816', 36, 68.77, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10186, N'S10_4757', 26, 108.8, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S18_2581', 45, 70.12, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S24_4278', 33, 64.48, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S24_1785', 46, 96.29, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S32_4289', 31, 61.22, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S50_1341', 41, 39.71, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S700_1691', 34, 84.95, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S700_3167', 34, 72, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S700_2466', 44, 95.73, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S700_4002', 44, 70.33, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10187, N'S24_3949', 43, 55.96, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10188, N'S10_1678', 48, 95.7, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10188, N'S24_1578', 25, 95.8, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10188, N'S10_4698', 45, 182.04, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10188, N'S10_2016', 38, 111.8, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10188, N'S18_2625', 32, 52.09, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10188, N'S24_2000', 40, 61.7, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10188, N'S32_1374', 44, 81.91, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10188, N'S700_2834', 29, 96.11, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10189, N'S12_2823', 28, 138.57, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10190, N'S32_2206', 46, 38.62, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10190, N'S50_4713', 40, 67.53, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10190, N'S24_2360', 42, 58.87, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10190, N'S32_4485', 42, 89.8, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10191, N'S12_3380', 40, 104.52, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10191, N'S24_3371', 48, 53.27, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10191, N'S12_1099', 21, 155.66, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10191, N'S12_3990', 30, 70.22, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10191, N'S18_3482', 23, 119.06, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10191, N'S18_3278', 36, 75.59, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10191, N'S24_4620', 44, 77.61, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10191, N'S18_4721', 32, 136.9, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10191, N'S18_3782', 43, 60.93, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S24_2887', 23, 112.74, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S24_2766', 46, 86.33, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S24_3191', 32, 69.34, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S24_1046', 37, 72.02, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S24_3432', 46, 93.16, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S24_1628', 47, 49.3, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S18_1589', 29, 100.8, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S18_2870', 38, 110.88, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S18_3685', 45, 125.74, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S18_1984', 47, 128.03, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S18_1129', 22, 140.12, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S18_3232', 26, 137.17, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S24_2972', 30, 33.23, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S24_3856', 45, 112.34, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S18_1889', 45, 70.84, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10192, N'S12_4675', 27, 99.04, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_2949', 28, 87.13, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_3136', 23, 97.39, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_2957', 24, 53.09, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S24_4258', 20, 92.52, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_3320', 32, 79.37, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_1367', 46, 46.36, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_1342', 28, 92.47, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_2795', 22, 143.44, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S24_2022', 20, 44.8, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S24_1937', 26, 32.19, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_2325', 44, 115.69, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S24_3969', 22, 38.16, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_2248', 42, 60.54, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_1749', 21, 153, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_4409', 24, 92.03, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10193, N'S18_4933', 25, 66.28, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S24_2300', 49, 112.46, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S18_2432', 45, 51.05, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S32_1268', 37, 77.05, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S10_4962', 26, 134.44, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S18_4600', 32, 113.82, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S700_2824', 26, 80.92, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S32_3522', 39, 61.41, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S12_1666', 38, 124.37, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S18_4668', 41, 47.79, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S18_1097', 21, 103.84, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10194, N'S10_1949', 42, 203.59, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S32_3207', 33, 59.03, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S24_4048', 34, 95.81, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S24_1444', 44, 54.33, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S50_1392', 49, 97.23, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S18_2238', 27, 139.17, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S12_4473', 49, 118.5, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S24_2840', 32, 31.82, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S32_2509', 32, 51.95, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S18_2319', 35, 112.91, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10195, N'S18_3232', 50, 150.71, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10196, N'S18_3140', 49, 127.03, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10196, N'S700_1938', 50, 84.88, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10196, N'S18_3259', 35, 81.68, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10196, N'S12_3891', 38, 147.07, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10196, N'S12_1108', 47, 203.64, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10196, N'S12_3148', 24, 151.08, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10196, N'S50_1514', 46, 56.82, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10196, N'S18_4027', 27, 126.39, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S72_1253', 29, 39.73, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S700_2047', 24, 78.75, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S18_3856', 22, 85.75, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S18_3029', 46, 83.44, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S24_3816', 22, 67.93, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S10_4757', 45, 118.32, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S700_2610', 50, 66.5, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S24_3151', 47, 83.2, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S700_1138', 23, 60, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S700_3505', 27, 100.17, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S700_3962', 35, 88.39, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S72_3212', 42, 48.59, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S24_2011', 41, 109.37, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10197, N'S18_4522', 50, 78.99, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10198, N'S700_2466', 42, 94.73, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10198, N'S700_4002', 40, 74.03, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10198, N'S24_3949', 43, 65.51, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10198, N'S18_1662', 42, 149.81, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10198, N'S24_2841', 48, 60.97, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10198, N'S24_3420', 27, 61.81, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10199, N'S50_1341', 29, 37.97, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10199, N'S700_1691', 48, 81.29, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10199, N'S700_3167', 38, 70.4, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10200, N'S32_1374', 35, 80.91, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10200, N'S700_2834', 39, 115.09, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10200, N'S18_2581', 28, 74.34, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10200, N'S24_4278', 39, 70.28, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10200, N'S24_1785', 33, 99.57, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10200, N'S32_4289', 27, 65.35, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10201, N'S12_2823', 25, 126.52, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10201, N'S10_1678', 22, 82.3, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10201, N'S24_1578', 39, 93.54, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10201, N'S10_4698', 49, 191.72, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10201, N'S10_2016', 24, 116.56, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10201, N'S18_2625', 30, 48.46, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10201, N'S24_2000', 25, 66.27, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10202, N'S24_4620', 50, 75.18, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10202, N'S18_4721', 43, 124.99, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10202, N'S18_3782', 30, 55.33, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10202, N'S32_2206', 27, 33.39, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10202, N'S50_4713', 40, 79.73, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10202, N'S24_2360', 50, 56.1, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10202, N'S32_4485', 31, 81.64, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S18_3232', 48, 157.49, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S24_2972', 21, 33.23, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S24_3856', 47, 140.43, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S18_1889', 45, 73.15, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S12_4675', 47, 115.16, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S12_3380', 20, 111.57, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S24_3371', 34, 56.94, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S12_1099', 20, 161.49, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S12_3990', 44, 63.84, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S18_3482', 32, 127.88, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10203, N'S18_3278', 33, 66.74, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_2325', 26, 119.5, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S24_3969', 39, 34.88, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_2248', 23, 59.33, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_1749', 33, 153, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_4409', 29, 83.75, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_4933', 45, 69.84, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S24_2887', 42, 112.74, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S24_2766', 47, 79.06, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S24_3191', 40, 84.75, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S24_1046', 20, 69.82, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S24_3432', 48, 104.94, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S24_1628', 45, 46.79, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_1589', 40, 113.24, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_2870', 27, 106.92, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_3685', 35, 132.8, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_1984', 38, 133.72, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10204, N'S18_1129', 42, 114.65, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10205, N'S18_1367', 48, 45.82, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10205, N'S18_1342', 36, 98.63, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10205, N'S18_2795', 40, 138.38, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10205, N'S24_2022', 24, 36.74, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10205, N'S24_1937', 32, 27.88, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S700_2824', 33, 89.01, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S32_3522', 36, 54.94, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S12_1666', 28, 109.34, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S18_4668', 21, 45.78, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S18_1097', 34, 115.5, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S10_1949', 47, 203.59, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S18_2949', 37, 98.27, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S18_3136', 30, 102.63, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S18_2957', 28, 51.84, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S24_4258', 33, 95.44, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10206, N'S18_3320', 28, 99.21, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S18_4027', 40, 143.62, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S32_3207', 45, 55.3, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S24_4048', 28, 108.82, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S24_1444', 49, 57.8, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S50_1392', 28, 106.49, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S18_2238', 44, 140.81, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S12_4473', 34, 95.99, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S24_2840', 42, 30.76, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S32_2509', 27, 51.95, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S18_2319', 43, 109.23, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S18_3232', 25, 140.55, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S24_2300', 46, 127.79, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S18_2432', 37, 60.77, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S32_1268', 49, 84.75, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S10_4962', 31, 125.58, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10207, N'S18_4600', 47, 119.87, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S700_2610', 46, 63.61, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S24_3151', 20, 80.54, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S700_1138', 38, 56.67, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S700_3505', 37, 95.16, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S700_3962', 33, 95.34, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S72_3212', 42, 48.05, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S24_2011', 35, 122.89, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S18_4522', 45, 72.85, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S18_3140', 24, 117.47, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S700_1938', 40, 73.62, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S18_3259', 48, 96.81, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S12_3891', 20, 152.26, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S12_1108', 46, 176.63, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S12_3148', 26, 128.42, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10208, N'S50_1514', 30, 57.99, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10209, N'S24_2841', 43, 66.45, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10209, N'S24_3420', 36, 56.55, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10209, N'S72_1253', 48, 44.2, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10209, N'S700_2047', 33, 90.52, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10209, N'S18_3856', 20, 97.4, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10209, N'S18_3029', 28, 82.58, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10209, N'S24_3816', 22, 79.67, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10209, N'S10_4757', 39, 129.2, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S10_4698', 34, 189.79, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S10_2016', 23, 112.99, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S18_2625', 40, 51.48, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S24_2000', 30, 63.22, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S32_1374', 46, 84.91, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S700_2834', 25, 98.48, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S18_2581', 50, 68.43, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S24_4278', 40, 68.1, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S24_1785', 27, 100.67, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S32_4289', 39, 57.1, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S50_1341', 43, 43.2, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S700_1691', 21, 87.69, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S700_3167', 31, 64, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S700_2466', 26, 93.74, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S700_4002', 42, 60.7, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S24_3949', 29, 56.64, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10210, N'S18_1662', 31, 141.92, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S24_3371', 48, 52.66, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S12_1099', 41, 171.22, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S12_3990', 28, 79.8, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S18_3482', 28, 138.17, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S18_3278', 35, 73.17, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S24_4620', 22, 80.84, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S18_4721', 41, 148.8, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S18_3782', 46, 60.3, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S32_2206', 41, 39.83, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S50_4713', 40, 70.78, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S24_2360', 21, 62.33, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S32_4485', 37, 94.91, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S12_2823', 36, 126.52, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S10_1678', 41, 90.92, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10211, N'S24_1578', 25, 109.32, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S24_2766', 45, 81.78, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S24_3191', 27, 77.91, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S24_1046', 41, 61.73, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S24_3432', 46, 100.66, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S24_1628', 45, 43.27, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S18_1589', 38, 105.77, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S18_2870', 40, 117.48, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S18_3685', 45, 115.85, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S18_1984', 41, 133.72, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S18_1129', 29, 117.48, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S18_3232', 40, 155.79, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S24_2972', 34, 37.38, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S24_3856', 49, 117.96, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S18_1889', 20, 64.68, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S12_4675', 33, 110.55, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10212, N'S12_3380', 39, 99.82, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10213, N'S18_4409', 38, 84.67, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10213, N'S18_4933', 25, 58.44, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10213, N'S24_2887', 27, 97.48, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10214, N'S18_2795', 50, 167.06, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10214, N'S24_2022', 49, 39.87, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10214, N'S24_1937', 20, 32.19, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10214, N'S18_2325', 27, 125.86, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10214, N'S24_3969', 44, 38.57, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10214, N'S18_2248', 21, 53.28, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10214, N'S18_1749', 30, 166.6, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S18_4668', 46, 42.76, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S18_1097', 46, 100.34, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S10_1949', 35, 205.73, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S18_2949', 49, 97.26, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S18_3136', 49, 89.01, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S18_2957', 31, 56.21, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S24_4258', 39, 94.47, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S18_3320', 41, 84.33, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S18_1367', 33, 53.91, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10215, N'S18_1342', 27, 92.47, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10216, N'S12_1666', 43, 133.94, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10217, N'S24_2300', 28, 103.51, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10217, N'S18_2432', 35, 58.34, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10217, N'S32_1268', 21, 78.97, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10217, N'S10_4962', 48, 132.97, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10217, N'S18_4600', 38, 118.66, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10217, N'S700_2824', 31, 90.02, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10217, N'S32_3522', 39, 56.24, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10218, N'S18_2319', 22, 110.46, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10218, N'S18_3232', 34, 152.41, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10219, N'S18_2238', 43, 132.62, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10219, N'S12_4473', 48, 94.8, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10219, N'S24_2840', 21, 31.12, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10219, N'S32_2509', 35, 47.62, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10220, N'S12_3891', 27, 166.1, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10220, N'S12_1108', 32, 189.1, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10220, N'S12_3148', 30, 151.08, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10220, N'S50_1514', 30, 56.82, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10220, N'S18_4027', 50, 126.39, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10220, N'S32_3207', 20, 49.71, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10220, N'S24_4048', 37, 101.72, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10220, N'S24_1444', 26, 48.55, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10220, N'S50_1392', 37, 92.6, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10221, N'S24_2011', 49, 113.06, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10221, N'S18_4522', 39, 84.26, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10221, N'S18_3140', 33, 133.86, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10221, N'S700_1938', 23, 69.29, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10221, N'S18_3259', 23, 89.75, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S700_2466', 37, 90.75, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S700_4002', 43, 66.63, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S24_3949', 48, 55.27, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S18_1662', 49, 137.19, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S24_2841', 32, 56.86, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S24_3420', 43, 61.15, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S72_1253', 31, 45.19, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S700_2047', 26, 80.56, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S18_3856', 45, 88.93, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S18_3029', 49, 79.14, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S24_3816', 46, 77.99, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S10_4757', 49, 133.28, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S700_2610', 36, 69.39, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S24_3151', 47, 74.35, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S700_1138', 31, 58.67, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S700_3505', 38, 84.14, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S700_3962', 31, 81.43, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10222, N'S72_3212', 36, 48.59, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S10_1678', 37, 80.39, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S24_1578', 32, 104.81, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S10_4698', 49, 189.79, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S10_2016', 47, 110.61, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S18_2625', 28, 58.75, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S24_2000', 38, 60.94, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S32_1374', 21, 90.9, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S700_2834', 29, 113.9, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S18_2581', 47, 67.58, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S24_4278', 23, 68.1, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S24_1785', 34, 87.54, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S32_4289', 20, 66.73, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S50_1341', 41, 41.02, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S700_1691', 25, 84.03, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10223, N'S700_3167', 26, 79.2, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10224, N'S18_3782', 38, 57.2, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10224, N'S32_2206', 43, 37.01, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10224, N'S50_4713', 50, 81.36, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10224, N'S24_2360', 37, 60.26, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10224, N'S32_4485', 30, 94.91, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10224, N'S12_2823', 43, 141.58, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S18_1129', 32, 116.06, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S18_3232', 43, 162.57, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S24_2972', 42, 34.74, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S24_3856', 40, 130.6, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S18_1889', 47, 71.61, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S12_4675', 21, 100.19, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S12_3380', 25, 101, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S24_3371', 24, 51.43, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S12_1099', 27, 157.6, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S12_3990', 37, 64.64, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S18_3482', 27, 119.06, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S18_3278', 37, 69.96, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S24_4620', 46, 77.61, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10225, N'S18_4721', 35, 135.41, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10226, N'S24_1046', 21, 65.41, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10226, N'S24_3432', 48, 95.3, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10226, N'S24_1628', 36, 47.79, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10226, N'S18_1589', 38, 108.26, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10226, N'S18_2870', 24, 125.4, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10226, N'S18_3685', 46, 122.91, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10226, N'S18_1984', 24, 129.45, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S18_3320', 33, 99.21, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S18_1367', 31, 50.14, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S18_1342', 25, 85.27, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S18_2795', 29, 146.81, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S24_2022', 24, 39.42, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S24_1937', 42, 27.22, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S18_2325', 46, 118.23, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S24_3969', 27, 34.88, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S18_2248', 28, 59.93, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S18_1749', 26, 136, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S18_4409', 34, 87.43, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S18_4933', 37, 70.56, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S24_2887', 33, 102.17, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S24_2766', 47, 84.51, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10227, N'S24_3191', 40, 78.76, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10228, N'S18_1097', 32, 100.34, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10228, N'S10_1949', 29, 214.3, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10228, N'S18_2949', 24, 101.31, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10228, N'S18_3136', 31, 100.53, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10228, N'S18_2957', 45, 57.46, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10228, N'S24_4258', 33, 84.73, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S12_4473', 36, 95.99, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S24_2840', 33, 34.65, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S32_2509', 23, 49.78, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S18_2319', 26, 104.32, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S18_3232', 22, 157.49, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S24_2300', 48, 115.01, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S18_2432', 28, 53.48, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S32_1268', 25, 78.97, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S10_4962', 50, 138.88, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S18_4600', 41, 119.87, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S700_2824', 50, 91.04, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S32_3522', 30, 52.36, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S12_1666', 25, 110.7, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10229, N'S18_4668', 39, 43.77, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10230, N'S12_3148', 43, 128.42, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10230, N'S50_1514', 43, 57.41, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10230, N'S18_4027', 42, 142.18, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10230, N'S32_3207', 46, 59.03, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10230, N'S24_4048', 45, 99.36, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10230, N'S24_1444', 36, 47.4, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10230, N'S50_1392', 34, 100.7, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10230, N'S18_2238', 49, 153.91, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10231, N'S12_3891', 49, 147.07, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10231, N'S12_1108', 42, 193.25, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10232, N'S700_3505', 48, 86.15, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10232, N'S700_3962', 35, 81.43, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10232, N'S72_3212', 24, 48.59, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10232, N'S24_2011', 46, 113.06, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10232, N'S18_4522', 23, 78.12, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10232, N'S18_3140', 22, 133.86, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10232, N'S700_1938', 26, 84.88, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10232, N'S18_3259', 48, 97.81, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10233, N'S700_2610', 29, 67.94, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10233, N'S24_3151', 40, 70.81, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10233, N'S700_1138', 36, 66, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10234, N'S18_1662', 50, 146.65, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10234, N'S24_2841', 44, 67.14, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10234, N'S24_3420', 25, 65.09, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10234, N'S72_1253', 40, 45.69, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10234, N'S700_2047', 29, 83.28, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10234, N'S18_3856', 39, 85.75, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10234, N'S18_3029', 48, 84.3, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10234, N'S24_3816', 31, 78.83, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10234, N'S10_4757', 48, 118.32, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S32_1374', 41, 90.9, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S700_2834', 25, 116.28, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S18_2581', 24, 81.95, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S24_4278', 40, 63.03, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S24_1785', 23, 89.72, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S32_4289', 34, 66.73, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S50_1341', 41, 37.09, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S700_1691', 25, 88.6, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S700_3167', 32, 73.6, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S700_2466', 38, 92.74, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S700_4002', 34, 70.33, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10235, N'S24_3949', 33, 55.27, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10236, N'S10_2016', 22, 105.86, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10236, N'S18_2625', 23, 52.7, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10236, N'S24_2000', 36, 65.51, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10237, N'S18_3782', 26, 49.74, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10237, N'S32_2206', 26, 35, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10237, N'S50_4713', 20, 78.92, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10237, N'S24_2360', 26, 62.33, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10237, N'S32_4485', 27, 94.91, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10237, N'S12_2823', 32, 129.53, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10237, N'S10_1678', 23, 91.87, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10237, N'S24_1578', 20, 109.32, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10237, N'S10_4698', 39, 158.8, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10238, N'S12_3380', 29, 104.52, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10238, N'S24_3371', 47, 53.88, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10238, N'S12_1099', 28, 161.49, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10238, N'S12_3990', 20, 73.42, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10238, N'S18_3482', 49, 144.05, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10238, N'S18_3278', 41, 68.35, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10238, N'S24_4620', 22, 67.91, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10238, N'S18_4721', 44, 120.53, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10239, N'S18_3232', 47, 135.47, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10239, N'S24_2972', 20, 32.47, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10239, N'S24_3856', 29, 133.41, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10239, N'S18_1889', 46, 70.07, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10239, N'S12_4675', 21, 100.19, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10240, N'S18_3685', 37, 134.22, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10240, N'S18_1984', 37, 136.56, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10240, N'S18_1129', 41, 125.97, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S18_2248', 33, 55.7, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S18_1749', 41, 153, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S18_4409', 42, 77.31, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S18_4933', 30, 62.72, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S24_2887', 28, 117.44, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S24_2766', 47, 89.05, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S24_3191', 26, 69.34, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S24_1046', 22, 72.02, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S24_3432', 27, 107.08, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S24_1628', 21, 47.29, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S18_1589', 21, 119.46, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10241, N'S18_2870', 44, 126.72, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10242, N'S24_3969', 46, 36.52, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10243, N'S24_1937', 33, 30.87, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10243, N'S18_2325', 47, 111.87, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10244, N'S18_2949', 30, 87.13, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10244, N'S18_3136', 29, 85.87, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10244, N'S18_2957', 24, 54.96, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10244, N'S24_4258', 40, 97.39, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10244, N'S18_3320', 36, 87.3, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10244, N'S18_1367', 20, 48.52, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10244, N'S18_1342', 40, 99.66, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10244, N'S18_2795', 43, 141.75, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10244, N'S24_2022', 39, 42.11, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10245, N'S32_1268', 37, 81.86, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10245, N'S10_4962', 28, 147.74, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10245, N'S18_4600', 21, 111.39, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10245, N'S700_2824', 44, 81.93, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10245, N'S32_3522', 44, 54.94, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10245, N'S12_1666', 38, 120.27, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10245, N'S18_4668', 45, 48.8, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10245, N'S18_1097', 29, 114.34, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10245, N'S10_1949', 34, 195.01, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S24_4048', 46, 100.54, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S24_1444', 44, 46.24, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S50_1392', 22, 113.44, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S18_2238', 40, 144.08, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S12_4473', 46, 99.54, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S24_2840', 49, 34.65, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S32_2509', 35, 45.45, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S18_2319', 22, 100.64, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S18_3232', 36, 145.63, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S24_2300', 29, 118.84, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10246, N'S18_2432', 30, 57.73, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10247, N'S12_3891', 27, 167.83, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10247, N'S12_1108', 44, 195.33, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10247, N'S12_3148', 25, 140.5, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10247, N'S50_1514', 49, 51.55, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10247, N'S18_4027', 48, 143.62, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10247, N'S32_3207', 40, 58.41, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S18_3029', 21, 80.86, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S24_3816', 23, 83.02, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S10_4757', 20, 126.48, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S700_2610', 32, 69.39, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S24_3151', 30, 85.85, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S700_1138', 36, 66, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S700_3505', 30, 84.14, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S700_3962', 35, 92.36, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S72_3212', 23, 53.51, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S24_2011', 48, 122.89, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S18_4522', 42, 87.77, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S18_3140', 32, 133.86, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S700_1938', 40, 81.41, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10248, N'S18_3259', 42, 95.8, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10249, N'S24_2841', 20, 54.81, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10249, N'S24_3420', 25, 65.75, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10249, N'S72_1253', 32, 49.16, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10249, N'S700_2047', 40, 85.99, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10249, N'S18_3856', 46, 88.93, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S24_2000', 32, 63.22, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S32_1374', 31, 99.89, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S700_2834', 44, 98.48, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S18_2581', 27, 84.48, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S24_4278', 37, 72.45, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S24_1785', 31, 95.2, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S32_4289', 50, 62.6, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S50_1341', 36, 36.66, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S700_1691', 31, 91.34, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S700_3167', 44, 76, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S700_2466', 35, 90.75, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S700_4002', 38, 65.89, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S24_3949', 40, 61.42, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10250, N'S18_1662', 45, 148.23, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10251, N'S12_2823', 46, 129.53, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10251, N'S10_1678', 59, 93.79, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10251, N'S24_1578', 50, 91.29, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10251, N'S10_4698', 43, 172.36, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10251, N'S10_2016', 44, 115.37, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10251, N'S18_2625', 44, 58.15, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10252, N'S18_3482', 41, 145.52, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10252, N'S18_3278', 20, 74.78, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10252, N'S24_4620', 38, 69.52, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10252, N'S18_4721', 26, 127.97, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10252, N'S18_3782', 31, 50.36, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10252, N'S32_2206', 36, 36.21, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10252, N'S50_4713', 48, 72.41, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10252, N'S24_2360', 47, 63.03, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10252, N'S32_4485', 25, 93.89, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S18_1589', 24, 103.29, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S18_2870', 37, 114.84, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S18_3685', 31, 139.87, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S18_1984', 33, 130.87, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S18_1129', 26, 130.22, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S18_3232', 40, 145.63, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S24_2972', 40, 34.74, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S24_3856', 39, 115.15, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S18_1889', 23, 67.76, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S12_4675', 41, 109.4, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S12_3380', 22, 102.17, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S24_3371', 24, 50.82, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S12_1099', 24, 157.6, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10253, N'S12_3990', 25, 67.03, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S24_1937', 38, 28.88, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S18_2325', 41, 102.98, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S24_3969', 20, 39.8, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S18_2248', 36, 55.09, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S18_1749', 49, 137.7, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S18_4409', 34, 80.99, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S18_4933', 30, 59.87, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S24_2887', 33, 111.57, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S24_2766', 31, 85.42, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S24_3191', 42, 69.34, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S24_1046', 34, 66.88, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S24_3432', 49, 101.73, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10254, N'S24_1628', 32, 43.27, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10255, N'S18_2795', 24, 135, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10255, N'S24_2022', 37, 37.63, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10256, N'S18_1367', 29, 52.83, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10256, N'S18_1342', 34, 93.49, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10257, N'S18_2949', 50, 92.19, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10257, N'S18_3136', 37, 83.78, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10257, N'S18_2957', 49, 59.34, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10257, N'S24_4258', 46, 81.81, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10257, N'S18_3320', 26, 91.27, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10258, N'S700_2824', 45, 86.99, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10258, N'S32_3522', 20, 62.7, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10258, N'S12_1666', 41, 133.94, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10258, N'S18_4668', 21, 49.81, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10258, N'S18_1097', 41, 113.17, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10258, N'S10_1949', 32, 177.87, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S24_1444', 28, 46.82, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S50_1392', 29, 105.33, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S18_2238', 30, 134.26, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S12_4473', 46, 117.32, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S24_2840', 31, 31.47, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S32_2509', 40, 45.99, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S18_2319', 34, 120.28, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S18_3232', 27, 152.41, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S24_2300', 47, 121.4, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S18_2432', 30, 59.55, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S32_1268', 45, 95.35, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S10_4962', 26, 121.15, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10259, N'S18_4600', 41, 107.76, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S18_3140', 32, 121.57, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S700_1938', 33, 80.55, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S18_3259', 29, 92.77, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S12_3891', 44, 169.56, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S12_1108', 46, 180.79, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S12_3148', 30, 140.5, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S50_1514', 21, 56.24, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S18_4027', 23, 137.88, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S32_3207', 27, 55.3, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10260, N'S24_4048', 23, 117.1, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10261, N'S10_4757', 27, 116.96, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10261, N'S700_2610', 44, 58.55, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10261, N'S24_3151', 22, 79.66, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10261, N'S700_1138', 34, 64, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10261, N'S700_3505', 25, 89.15, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10261, N'S700_3962', 50, 88.39, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10261, N'S72_3212', 29, 43.68, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10261, N'S24_2011', 36, 105.69, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10261, N'S18_4522', 20, 80.75, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S24_1785', 34, 98.48, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S32_4289', 40, 63.97, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S50_1341', 49, 35.78, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S700_1691', 40, 87.69, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S700_3167', 27, 64.8, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S700_2466', 33, 81.77, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S700_4002', 35, 64.41, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S24_3949', 48, 58.69, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S18_1662', 49, 157.69, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S24_2841', 24, 63.71, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S24_3420', 46, 65.75, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S72_1253', 21, 41.71, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S700_2047', 44, 83.28, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S18_3856', 34, 85.75, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S18_3029', 32, 81.72, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10262, N'S24_3816', 49, 82.18, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S12_2823', 48, 123.51, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S10_1678', 34, 89, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S24_1578', 42, 109.32, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S10_4698', 41, 193.66, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S10_2016', 40, 107.05, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S18_2625', 34, 50.27, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S24_2000', 37, 67.03, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S32_1374', 31, 93.9, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S700_2834', 47, 117.46, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S18_2581', 33, 67.58, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10263, N'S24_4278', 24, 59.41, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10264, N'S24_4620', 47, 75.18, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10264, N'S18_4721', 20, 124.99, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10264, N'S18_3782', 48, 58.44, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10264, N'S32_2206', 20, 39.02, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10264, N'S50_4713', 47, 67.53, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10264, N'S24_2360', 37, 61.64, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10264, N'S32_4485', 34, 100.01, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10265, N'S18_3482', 49, 123.47, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10265, N'S18_3278', 45, 74.78, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S24_1628', 28, 40.25, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S18_1589', 36, 99.55, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S18_2870', 20, 113.52, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S18_3685', 33, 127.15, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S18_1984', 49, 139.41, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S18_1129', 21, 131.63, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S18_3232', 29, 137.17, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S24_2972', 34, 35.12, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S24_3856', 24, 119.37, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S18_1889', 33, 77, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S12_4675', 40, 112.86, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S12_3380', 22, 110.39, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S24_3371', 47, 56.33, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S12_1099', 44, 188.73, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10266, N'S12_3990', 35, 67.83, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10267, N'S18_4933', 36, 71.27, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10267, N'S24_2887', 43, 93.95, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10267, N'S24_2766', 38, 76.33, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10267, N'S24_3191', 44, 83.9, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10267, N'S24_1046', 40, 72.02, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10267, N'S24_3432', 43, 98.51, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S18_3320', 39, 96.23, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S18_1367', 26, 45.82, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S18_1342', 49, 93.49, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S18_2795', 35, 148.5, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S24_2022', 40, 36.29, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S24_1937', 33, 31.86, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S18_2325', 50, 124.59, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S24_3969', 30, 37.75, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S18_2248', 31, 60.54, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S18_1749', 34, 164.9, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10268, N'S18_4409', 35, 84.67, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10269, N'S18_2957', 32, 57.46, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10269, N'S24_4258', 48, 95.44, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S32_1268', 32, 93.42, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S10_4962', 32, 124.1, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S18_4600', 38, 107.76, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S700_2824', 46, 101.15, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S32_3522', 21, 52.36, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S12_1666', 28, 135.3, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S18_4668', 44, 40.25, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S18_1097', 43, 94.5, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S10_1949', 21, 171.44, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S18_2949', 31, 81.05, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10270, N'S18_3136', 38, 85.87, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S24_4048', 22, 110, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S24_1444', 45, 49.71, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S50_1392', 34, 93.76, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S18_2238', 50, 147.36, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S12_4473', 31, 99.54, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S24_2840', 38, 28.64, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S32_2509', 35, 51.95, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S18_2319', 50, 121.5, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S18_3232', 20, 169.34, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S24_2300', 43, 122.68, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10271, N'S18_2432', 25, 59.55, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10272, N'S12_3891', 39, 148.8, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10272, N'S12_1108', 35, 187.02, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10272, N'S12_3148', 27, 123.89, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10272, N'S50_1514', 43, 53.89, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10272, N'S18_4027', 25, 126.39, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10272, N'S32_3207', 45, 56.55, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S18_3856', 50, 105.87, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S18_3029', 34, 84.3, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S24_3816', 48, 83.86, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S10_4757', 30, 136, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S700_2610', 42, 57.82, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S24_3151', 27, 84.08, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S700_1138', 21, 66, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S700_3505', 40, 91.15, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S700_3962', 26, 89.38, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S72_3212', 37, 51.32, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S24_2011', 22, 103.23, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S18_4522', 33, 72.85, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S18_3140', 40, 117.47, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S700_1938', 21, 77.95, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10273, N'S18_3259', 47, 87.73, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10274, N'S18_1662', 41, 129.31, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10274, N'S24_2841', 40, 56.86, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10274, N'S24_3420', 24, 65.09, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10274, N'S72_1253', 32, 49.66, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10274, N'S700_2047', 24, 75.13, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S10_1678', 45, 81.35, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S24_1578', 21, 105.94, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S10_4698', 36, 154.93, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S10_2016', 22, 115.37, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S18_2625', 37, 52.09, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S24_2000', 30, 61.7, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S32_1374', 23, 89.9, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S700_2834', 48, 102.04, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S18_2581', 35, 70.12, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S24_4278', 27, 67.38, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S24_1785', 25, 97.38, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S32_4289', 28, 58.47, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S50_1341', 38, 40.15, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S700_1691', 32, 85.86, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S700_3167', 43, 72, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S700_2466', 39, 82.77, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S700_4002', 31, 59.96, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10275, N'S24_3949', 41, 58, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S12_3380', 47, 104.52, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S24_3371', 20, 58.17, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S12_1099', 50, 184.84, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S12_3990', 38, 67.83, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S18_3482', 30, 139.64, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S18_3278', 38, 78, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S24_4620', 48, 67.1, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S18_4721', 48, 120.53, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S18_3782', 33, 54.71, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S32_2206', 27, 35.4, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S50_4713', 21, 67.53, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S24_2360', 46, 61.64, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S32_4485', 38, 94.91, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10276, N'S12_2823', 43, 150.62, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10277, N'S12_4675', 28, 93.28, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S24_1628', 35, 48.8, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S18_1589', 23, 107.02, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S18_2870', 39, 117.48, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S18_3685', 31, 114.44, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S18_1984', 29, 118.07, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S18_1129', 34, 114.65, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S18_3232', 42, 167.65, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S24_2972', 31, 37.38, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S24_3856', 25, 136.22, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10278, N'S18_1889', 29, 73.15, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10279, N'S18_4933', 26, 68.42, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10279, N'S24_2887', 48, 106.87, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10279, N'S24_2766', 49, 76.33, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10279, N'S24_3191', 33, 78.76, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10279, N'S24_1046', 32, 68.35, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10279, N'S24_3432', 48, 95.3, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_1097', 24, 98, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S10_1949', 34, 205.73, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_2949', 46, 82.06, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_3136', 29, 102.63, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_2957', 43, 54.34, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S24_4258', 21, 79.86, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_3320', 34, 99.21, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_1367', 27, 47.44, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_1342', 50, 87.33, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_2795', 22, 158.63, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S24_2022', 45, 36.29, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S24_1937', 20, 29.87, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_2325', 37, 109.33, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S24_3969', 33, 35.29, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_2248', 25, 53.28, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_1749', 26, 161.5, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10280, N'S18_4409', 35, 77.31, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S12_4473', 41, 98.36, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S24_2840', 20, 33.95, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S32_2509', 31, 44.91, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S18_2319', 48, 114.14, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S18_3232', 25, 135.47, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S24_2300', 25, 112.46, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S18_2432', 29, 56.52, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S32_1268', 29, 80.9, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S10_4962', 44, 132.97, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S18_4600', 25, 96.86, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S700_2824', 27, 89.01, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S32_3522', 36, 59.47, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S12_1666', 25, 127.1, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10281, N'S18_4668', 44, 42.76, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S18_3140', 43, 122.93, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S700_1938', 43, 77.95, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S18_3259', 36, 88.74, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S12_3891', 24, 169.56, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S12_1108', 41, 176.63, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S12_3148', 27, 142.02, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S50_1514', 37, 56.24, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S18_4027', 31, 132.13, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S32_3207', 36, 51.58, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S24_4048', 39, 96.99, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S24_1444', 29, 49.71, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S50_1392', 38, 114.59, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10282, N'S18_2238', 23, 147.36, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S72_1253', 43, 41.22, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S700_2047', 20, 74.23, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S18_3856', 46, 100.58, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S18_3029', 21, 78.28, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S24_3816', 33, 77.15, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S10_4757', 25, 130.56, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S700_2610', 47, 68.67, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S24_3151', 34, 80.54, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S700_1138', 45, 62, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S700_3505', 22, 88.15, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S700_3962', 38, 85.41, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S72_3212', 33, 49.14, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S24_2011', 42, 99.54, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10283, N'S18_4522', 34, 71.97, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S18_2581', 31, 68.43, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S24_4278', 21, 66.65, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S24_1785', 22, 101.76, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S32_4289', 50, 60.54, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S50_1341', 33, 35.78, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S700_1691', 24, 87.69, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S700_3167', 25, 68, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S700_2466', 45, 95.73, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S700_4002', 32, 73.29, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S24_3949', 21, 65.51, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S18_1662', 45, 137.19, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S24_2841', 30, 65.08, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10284, N'S24_3420', 39, 59.83, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S32_2206', 37, 36.61, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S50_4713', 39, 76.48, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S24_2360', 38, 64.41, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S32_4485', 26, 100.01, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S12_2823', 49, 131.04, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S10_1678', 36, 95.7, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S24_1578', 34, 91.29, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S10_4698', 27, 166.55, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S10_2016', 47, 110.61, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S18_2625', 20, 50.88, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S24_2000', 39, 61.7, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S32_1374', 37, 82.91, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10285, N'S700_2834', 45, 102.04, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10286, N'S18_3782', 38, 51.6, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S18_2870', 44, 114.84, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S18_3685', 27, 139.87, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S18_1984', 24, 123.76, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S18_1129', 41, 113.23, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S18_3232', 36, 137.17, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S24_2972', 36, 31.34, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S24_3856', 36, 137.62, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S18_1889', 44, 61.6, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S12_4675', 23, 107.1, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S12_3380', 45, 117.44, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S24_3371', 20, 58.17, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S12_1099', 21, 190.68, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S12_3990', 41, 74.21, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S18_3482', 40, 127.88, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S18_3278', 43, 68.35, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S24_4620', 40, 79.22, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10287, N'S18_4721', 34, 119.04, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S24_1937', 29, 32.19, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S18_2325', 31, 102.98, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S24_3969', 33, 37.75, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S18_2248', 28, 50.25, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S18_1749', 32, 168.3, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S18_4409', 35, 90.19, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S18_4933', 23, 57.02, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S24_2887', 48, 109.22, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S24_2766', 35, 81.78, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S24_3191', 34, 76.19, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S24_1046', 36, 66.88, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S24_3432', 41, 101.73, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S24_1628', 50, 49.3, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10288, N'S18_1589', 20, 120.71, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10289, N'S18_1367', 24, 44.75, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10289, N'S18_1342', 38, 92.47, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10289, N'S18_2795', 43, 141.75, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10289, N'S24_2022', 45, 41.22, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10290, N'S24_4258', 45, 83.76, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10290, N'S18_3320', 26, 80.36, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S24_2300', 48, 109.9, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S18_2432', 26, 52.26, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S32_1268', 26, 82.83, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S10_4962', 30, 141.83, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S18_4600', 48, 96.86, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S700_2824', 28, 86.99, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S32_3522', 32, 53, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S12_1666', 41, 123, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S18_4668', 29, 45.28, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S18_1097', 41, 96.84, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S10_1949', 37, 210.01, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S18_2949', 47, 99.28, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S18_3136', 23, 93.2, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10291, N'S18_2957', 37, 56.21, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S50_1514', 35, 49.79, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S18_4027', 44, 114.9, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S32_3207', 31, 59.65, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S24_4048', 27, 113.55, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S24_1444', 40, 48.55, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S50_1392', 41, 113.44, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S18_2238', 26, 140.81, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S12_4473', 21, 94.8, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S24_2840', 39, 34.3, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S32_2509', 50, 54.11, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S18_2319', 41, 103.09, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10292, N'S18_3232', 21, 147.33, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10293, N'S72_3212', 32, 51.32, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10293, N'S24_2011', 21, 111.83, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10293, N'S18_4522', 49, 72.85, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10293, N'S18_3140', 24, 110.64, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10293, N'S700_1938', 29, 77.95, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10293, N'S18_3259', 22, 91.76, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10293, N'S12_3891', 45, 171.29, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10293, N'S12_1108', 46, 187.02, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10293, N'S12_3148', 24, 129.93, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10294, N'S700_3962', 45, 98.32, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10295, N'S10_4757', 24, 136, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10295, N'S700_2610', 44, 71.56, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10295, N'S24_3151', 46, 84.08, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10295, N'S700_1138', 26, 62, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10295, N'S700_3505', 34, 93.16, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S50_1341', 26, 41.02, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S700_1691', 42, 75.81, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S700_3167', 22, 74.4, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S700_2466', 24, 96.73, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S700_4002', 47, 61.44, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S24_3949', 32, 63.46, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S18_1662', 36, 146.65, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S24_2841', 21, 60.97, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S24_3420', 31, 63.78, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S72_1253', 21, 46.68, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S700_2047', 34, 89.61, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S18_3856', 22, 105.87, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S18_3029', 21, 69.68, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10296, N'S24_3816', 22, 83.02, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10297, N'S24_2000', 32, 70.08, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10297, N'S32_1374', 26, 88.9, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10297, N'S700_2834', 35, 111.53, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10297, N'S18_2581', 25, 81.95, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10297, N'S24_4278', 23, 71.73, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10297, N'S24_1785', 32, 107.23, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10297, N'S32_4289', 28, 63.29, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10298, N'S10_2016', 39, 105.86, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10298, N'S18_2625', 32, 60.57, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S24_4620', 32, 66.29, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S18_4721', 49, 119.04, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S18_3782', 39, 62.17, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S32_2206', 24, 36.21, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S50_4713', 44, 77.29, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S24_2360', 33, 58.87, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S32_4485', 38, 84.7, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S12_2823', 24, 123.51, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S10_1678', 23, 76.56, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S24_1578', 47, 107.07, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10299, N'S10_4698', 29, 164.61, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10300, N'S18_1889', 41, 63.14, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10300, N'S12_4675', 23, 95.58, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10300, N'S12_3380', 29, 116.27, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10300, N'S24_3371', 31, 52.05, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10300, N'S12_1099', 33, 184.84, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10300, N'S12_3990', 22, 76.61, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10300, N'S18_3482', 23, 144.05, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10300, N'S18_3278', 49, 65.94, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S24_1046', 27, 64.67, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S24_3432', 22, 86.73, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S24_1628', 22, 40.75, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S18_1589', 32, 118.22, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S18_2870', 22, 113.52, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S18_3685', 39, 137.04, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S18_1984', 47, 119.49, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S18_1129', 37, 114.65, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S18_3232', 23, 135.47, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S24_2972', 48, 32.1, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10301, N'S24_3856', 50, 122.17, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10302, N'S18_1749', 43, 166.6, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10302, N'S18_4409', 38, 82.83, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10302, N'S18_4933', 23, 70.56, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10302, N'S24_2887', 45, 104.52, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10302, N'S24_2766', 49, 75.42, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10302, N'S24_3191', 48, 74.48, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10303, N'S24_3969', 24, 35.7, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10303, N'S18_2248', 46, 56.91, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S700_2824', 40, 80.92, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S32_3522', 36, 52.36, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S12_1666', 39, 117.54, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_4668', 34, 44.27, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_1097', 46, 106.17, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S10_1949', 47, 201.44, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_2949', 46, 98.27, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_3136', 26, 90.06, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_2957', 24, 54.34, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S24_4258', 33, 80.83, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_3320', 38, 95.24, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_1367', 37, 46.9, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_1342', 37, 95.55, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_2795', 20, 141.75, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S24_2022', 44, 42.11, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S24_1937', 23, 29.21, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10304, N'S18_2325', 24, 102.98, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S24_4048', 36, 118.28, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S24_1444', 45, 48.55, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S50_1392', 42, 109.96, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S18_2238', 27, 132.62, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S12_4473', 38, 107.84, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S24_2840', 48, 30.76, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S32_2509', 40, 48.7, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S18_2319', 36, 117.82, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S18_3232', 37, 160.87, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S24_2300', 24, 107.34, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S18_2432', 41, 58.95, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S32_1268', 28, 94.38, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S10_4962', 38, 130.01, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10305, N'S18_4600', 22, 112.6, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S700_2610', 43, 62.16, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S24_3151', 31, 76.12, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S700_1138', 50, 61.34, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S700_3505', 32, 99.17, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S700_3962', 30, 87.39, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S72_3212', 35, 48.05, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S24_2011', 29, 109.37, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S18_4522', 39, 85.14, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S18_3140', 32, 114.74, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S700_1938', 38, 73.62, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S18_3259', 40, 83.7, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S12_3891', 20, 145.34, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S12_1108', 31, 182.86, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S12_3148', 34, 145.04, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S50_1514', 34, 51.55, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S18_4027', 23, 126.39, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10306, N'S32_3207', 46, 60.28, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10307, N'S18_1662', 39, 135.61, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10307, N'S24_2841', 25, 58.23, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10307, N'S24_3420', 22, 64.44, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10307, N'S72_1253', 34, 44.2, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10307, N'S700_2047', 34, 81.47, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10307, N'S18_3856', 48, 92.11, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10307, N'S18_3029', 31, 71.4, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10307, N'S24_3816', 22, 75.47, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10307, N'S10_4757', 22, 118.32, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S10_4698', 20, 187.85, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S10_2016', 34, 115.37, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S18_2625', 34, 48.46, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S24_2000', 47, 68.55, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S32_1374', 24, 99.89, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S700_2834', 31, 100.85, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S18_2581', 27, 81.95, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S24_4278', 44, 71.73, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S24_1785', 31, 99.57, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S32_4289', 46, 61.22, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S50_1341', 47, 37.09, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S700_1691', 21, 73.07, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S700_3167', 21, 79.2, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S700_2466', 35, 88.75, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S700_4002', 39, 62.93, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10308, N'S24_3949', 43, 58, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10309, N'S50_4713', 28, 74.04, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10309, N'S24_2360', 24, 59.56, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10309, N'S32_4485', 50, 93.89, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10309, N'S12_2823', 26, 144.6, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10309, N'S10_1678', 41, 94.74, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10309, N'S24_1578', 21, 96.92, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S18_1984', 24, 129.45, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S18_1129', 37, 128.8, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S18_3232', 48, 159.18, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S24_2972', 33, 33.23, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S24_3856', 45, 139.03, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S18_1889', 20, 66.99, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S12_4675', 25, 101.34, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S12_3380', 24, 105.7, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S24_3371', 38, 50.21, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S12_1099', 33, 165.38, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S12_3990', 49, 77.41, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S18_3482', 49, 122, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S18_3278', 27, 70.76, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S24_4620', 49, 75.18, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S18_4721', 40, 133.92, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S18_3782', 42, 59.06, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10310, N'S32_2206', 36, 38.62, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S18_4409', 41, 92.03, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S18_4933', 25, 66.99, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S24_2887', 43, 116.27, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S24_2766', 28, 89.05, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S24_3191', 25, 85.61, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S24_1046', 26, 70.55, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S24_3432', 46, 91.02, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S24_1628', 45, 48.8, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S18_1589', 29, 124.44, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S18_2870', 43, 114.84, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10311, N'S18_3685', 32, 134.22, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_4668', 39, 44.27, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_1097', 32, 101.5, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S10_1949', 48, 214.3, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_2949', 37, 91.18, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_3136', 38, 93.2, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_2957', 35, 54.34, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S24_4258', 44, 96.42, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_3320', 33, 84.33, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_1367', 25, 43.67, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_1342', 43, 102.74, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_2795', 25, 150.19, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S24_2022', 23, 43.46, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S24_1937', 39, 27.88, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_2325', 31, 111.87, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S24_3969', 31, 40.21, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_2248', 30, 48.43, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10312, N'S18_1749', 48, 146.2, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S32_2509', 38, 48.7, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S18_2319', 29, 109.23, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S18_3232', 25, 143.94, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S24_2300', 42, 102.23, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S18_2432', 34, 52.87, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S32_1268', 27, 96.31, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S10_4962', 40, 141.83, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S18_4600', 28, 110.18, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S700_2824', 30, 96.09, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S32_3522', 34, 55.59, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10313, N'S12_1666', 21, 131.2, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S18_3140', 20, 129.76, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S700_1938', 23, 83.15, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S18_3259', 23, 84.71, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S12_3891', 36, 169.56, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S12_1108', 38, 176.63, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S12_3148', 46, 125.4, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S50_1514', 38, 50.38, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S18_4027', 29, 129.26, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S32_3207', 35, 58.41, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S24_4048', 38, 111.18, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S24_1444', 44, 51.44, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S50_1392', 28, 115.75, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S18_2238', 42, 135.9, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S12_4473', 45, 95.99, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10314, N'S24_2840', 39, 31.82, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10315, N'S24_3151', 24, 78.77, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10315, N'S700_1138', 41, 60.67, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10315, N'S700_3505', 31, 99.17, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10315, N'S700_3962', 37, 88.39, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10315, N'S72_3212', 40, 51.32, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10315, N'S24_2011', 35, 111.83, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10315, N'S18_4522', 36, 78.12, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S24_1785', 25, 93.01, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S32_4289', 24, 59.16, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S50_1341', 34, 36.66, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S700_1691', 34, 74.9, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S700_3167', 48, 77.6, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S700_2466', 23, 85.76, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S700_4002', 44, 68.11, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S24_3949', 30, 67.56, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S18_1662', 27, 140.34, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S24_2841', 34, 67.14, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S24_3420', 47, 55.23, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S72_1253', 34, 43.7, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S700_2047', 45, 73.32, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S18_3856', 47, 89.99, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S18_3029', 21, 72.26, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S24_3816', 25, 77.15, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S10_4757', 33, 126.48, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10316, N'S700_2610', 48, 67.22, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10317, N'S24_4278', 35, 69.55, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10318, N'S10_1678', 46, 84.22, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10318, N'S24_1578', 48, 93.54, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10318, N'S10_4698', 37, 189.79, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10318, N'S10_2016', 45, 102.29, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10318, N'S18_2625', 42, 49.67, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10318, N'S24_2000', 26, 60.94, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10318, N'S32_1374', 47, 81.91, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10318, N'S700_2834', 50, 102.04, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10318, N'S18_2581', 31, 81.95, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10319, N'S18_3278', 46, 77.19, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10319, N'S24_4620', 43, 78.41, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10319, N'S18_4721', 45, 120.53, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10319, N'S18_3782', 44, 54.71, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10319, N'S32_2206', 29, 35, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10319, N'S50_4713', 45, 79.73, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10319, N'S24_2360', 31, 65.8, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10319, N'S32_4485', 22, 96.95, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10319, N'S12_2823', 30, 134.05, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10320, N'S12_3380', 35, 102.17, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10320, N'S24_3371', 26, 60.62, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10320, N'S12_1099', 31, 184.84, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10320, N'S12_3990', 38, 63.84, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10320, N'S18_3482', 25, 139.64, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S24_2766', 30, 74.51, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S24_3191', 39, 81.33, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S24_1046', 30, 68.35, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S24_3432', 21, 103.87, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S24_1628', 48, 42.76, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S18_1589', 44, 120.71, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S18_2870', 27, 126.72, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S18_3685', 28, 138.45, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S18_1984', 25, 142.25, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S18_1129', 41, 123.14, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S18_3232', 33, 164.26, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S24_2972', 37, 31.72, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S24_3856', 26, 137.62, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S18_1889', 37, 73.92, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10321, N'S12_4675', 24, 105.95, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S10_1949', 40, 180.01, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S18_2795', 36, 158.63, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S24_1937', 20, 26.55, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S24_2022', 30, 40.77, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S18_1367', 41, 44.21, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S18_2325', 50, 120.77, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S18_3136', 48, 90.06, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S10_4962', 46, 141.83, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S12_1666', 27, 136.67, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S18_1097', 22, 101.5, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S18_2432', 35, 57.12, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S18_2949', 33, 100.3, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S18_2957', 41, 54.34, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10322, N'S18_1342', 43, 92.47, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10323, N'S18_4600', 47, 96.86, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10323, N'S18_3320', 33, 88.3, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S12_3148', 27, 148.06, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S24_2300', 31, 107.34, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S24_4258', 33, 95.44, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S32_3522', 48, 60.76, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S700_2824', 34, 80.92, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S18_4668', 38, 49.81, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S12_4473', 26, 100.73, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S18_2238', 47, 142.45, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S24_2840', 30, 29.35, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S18_2319', 33, 105.55, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S32_1268', 20, 91.49, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S18_3232', 27, 137.17, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S18_4027', 49, 120.64, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10324, N'S24_1444', 25, 49.71, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10325, N'S12_3891', 24, 166.1, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10325, N'S32_3207', 28, 55.3, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10325, N'S32_2509', 38, 44.37, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10325, N'S50_1392', 38, 99.55, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10325, N'S24_4048', 44, 114.73, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10325, N'S10_4757', 47, 111.52, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10325, N'S50_1514', 44, 56.24, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10325, N'S12_1108', 42, 193.25, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10325, N'S18_3140', 24, 114.74, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10326, N'S700_1138', 39, 60.67, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10326, N'S24_3816', 20, 81.34, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10326, N'S24_3151', 41, 86.74, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10326, N'S24_2011', 41, 120.43, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10326, N'S18_4522', 50, 73.73, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10326, N'S18_3259', 32, 94.79, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10327, N'S700_2610', 21, 65.05, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10327, N'S700_3505', 43, 85.14, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10327, N'S700_3962', 37, 83.42, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10327, N'S72_3212', 37, 48.05, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10327, N'S18_3029', 25, 74.84, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10327, N'S18_1662', 25, 154.54, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10327, N'S700_1938', 20, 79.68, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10327, N'S18_2581', 45, 74.34, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S24_2841', 48, 67.82, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S24_3420', 20, 56.55, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S24_3949', 35, 55.96, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S24_4278', 43, 69.55, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S32_4289', 24, 57.1, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S18_3856', 34, 104.81, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S50_1341', 34, 42.33, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S700_1691', 27, 84.03, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S700_2047', 41, 75.13, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S700_2466', 37, 95.73, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S700_2834', 33, 117.46, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S700_4002', 39, 69.59, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S700_3167', 33, 71.2, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10328, N'S24_1785', 47, 87.54, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S10_1678', 42, 80.39, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S10_2016', 20, 109.42, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S10_4698', 26, 164.61, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S24_2000', 37, 71.6, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S12_1099', 41, 182.9, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S12_2823', 24, 128.03, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S24_1578', 30, 104.81, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S72_1253', 44, 41.22, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S18_1889', 29, 66.22, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S18_3278', 38, 65.13, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S32_1374', 45, 80.91, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S18_2625', 38, 55.72, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S12_3380', 46, 117.44, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S12_3990', 33, 74.21, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10329, N'S12_4675', 39, 102.49, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10330, N'S24_2360', 42, 56.1, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10330, N'S18_3782', 29, 59.06, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10330, N'S18_3482', 37, 136.7, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10330, N'S18_4721', 50, 133.92, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S24_3856', 21, 139.03, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S24_4620', 41, 70.33, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S32_2206', 28, 33.39, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S32_4485', 32, 100.01, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S50_4713', 20, 74.04, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S18_1129', 46, 120.31, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S18_1749', 44, 154.7, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S18_1984', 30, 135.14, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S24_3371', 25, 55.11, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S18_2870', 26, 130.68, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S18_3232', 27, 169.34, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S18_3685', 26, 132.8, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S24_2972', 27, 37, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10331, N'S18_1589', 44, 99.55, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S18_2795', 24, 138.38, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S18_4409', 50, 92.03, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S18_4933', 21, 70.56, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S24_1046', 23, 61.73, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S24_1628', 20, 47.29, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S24_1937', 45, 29.87, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S24_2766', 39, 84.51, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S18_2325', 35, 116.96, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S18_2248', 38, 53.88, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S24_2022', 26, 43.01, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S24_2887', 44, 108.04, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S24_3191', 45, 77.91, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S24_3432', 31, 94.23, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S24_3969', 41, 34.47, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S18_1342', 46, 89.38, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S18_1367', 27, 51.21, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S18_2957', 26, 53.09, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10332, N'S18_3136', 40, 100.53, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10333, N'S24_4258', 39, 95.44, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10333, N'S18_3320', 46, 95.24, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10333, N'S10_1949', 26, 188.58, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10333, N'S32_3522', 33, 62.05, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10333, N'S18_2949', 31, 95.23, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10333, N'S12_1666', 33, 121.64, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10333, N'S18_1097', 29, 110.84, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10333, N'S18_4668', 24, 42.26, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10334, N'S18_2432', 34, 52.87, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10334, N'S10_4962', 26, 130.01, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10334, N'S18_3232', 20, 147.33, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10334, N'S18_4600', 49, 101.71, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10334, N'S24_2300', 42, 117.57, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10334, N'S18_2319', 46, 108, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10335, N'S32_1268', 44, 77.05, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10335, N'S24_2840', 33, 32.88, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10335, N'S32_2509', 40, 49.78, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S12_3891', 49, 141.88, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S700_2824', 46, 94.07, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S12_4473', 38, 95.99, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S24_1444', 45, 49.71, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S24_4048', 31, 113.55, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S18_2238', 49, 153.91, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S18_3259', 21, 100.84, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S50_1392', 23, 109.96, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S32_3207', 31, 59.03, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S12_1108', 33, 176.63, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S12_3148', 33, 126.91, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10336, N'S18_3140', 48, 135.22, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10337, N'S700_3505', 31, 84.14, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10337, N'S18_4522', 29, 76.36, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10337, N'S18_4027', 36, 140.75, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10337, N'S24_2011', 29, 119.2, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10337, N'S72_3212', 42, 49.14, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10337, N'S50_1514', 21, 54.48, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10337, N'S700_3962', 36, 83.42, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10337, N'S10_4757', 25, 131.92, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10337, N'S700_1938', 36, 73.62, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10338, N'S18_1662', 41, 137.19, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10338, N'S18_3856', 45, 93.17, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10338, N'S18_3029', 28, 80.86, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S18_2625', 30, 48.46, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S18_2581', 27, 79.41, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S10_4698', 39, 178.17, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S10_2016', 40, 117.75, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S700_1138', 22, 53.34, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S72_1253', 27, 49.66, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S24_1785', 21, 106.14, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S700_4002', 50, 66.63, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S700_2610', 50, 62.16, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S24_1578', 27, 96.92, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S24_3949', 45, 57.32, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S24_2841', 55, 67.82, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S24_3151', 55, 73.46, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S24_3420', 29, 57.86, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S700_2047', 55, 86.9, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10339, N'S24_3816', 42, 72.96, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10340, N'S24_4278', 40, 63.76, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10340, N'S32_1374', 55, 95.89, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10340, N'S32_4289', 39, 67.41, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10340, N'S50_1341', 40, 37.09, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10340, N'S700_1691', 30, 73.99, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10340, N'S700_2834', 29, 98.48, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10340, N'S700_2466', 55, 81.77, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10340, N'S24_2000', 55, 62.46, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S12_3380', 44, 111.57, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S12_1099', 45, 192.62, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S50_4713', 38, 78.11, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S32_4485', 31, 95.93, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S700_3167', 34, 70.4, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S24_2360', 32, 63.03, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S12_4675', 55, 109.4, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S12_2823', 55, 120.5, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S10_1678', 41, 84.22, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10341, N'S12_3990', 36, 77.41, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S18_1889', 55, 63.14, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S18_1129', 40, 118.89, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S18_1984', 22, 115.22, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S18_3232', 30, 167.65, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S18_3278', 25, 76.39, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S24_3856', 42, 112.34, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S18_3482', 55, 136.7, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S18_3782', 26, 57.82, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S24_2972', 39, 30.59, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S24_3371', 48, 60.01, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10342, N'S18_4721', 38, 124.99, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10343, N'S24_4620', 30, 76.8, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10343, N'S18_3685', 44, 127.15, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10343, N'S18_2870', 25, 118.8, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10343, N'S18_1589', 36, 109.51, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10343, N'S32_2206', 29, 37.41, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10343, N'S24_1628', 27, 44.78, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10344, N'S18_1749', 45, 168.3, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10344, N'S18_2248', 40, 49.04, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10344, N'S18_2325', 30, 118.23, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10344, N'S18_4409', 21, 80.99, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10344, N'S18_4933', 26, 68.42, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10344, N'S24_1937', 20, 27.88, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10344, N'S24_1046', 29, 61, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10345, N'S24_2022', 43, 38.98, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10346, N'S24_2766', 25, 87.24, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10346, N'S24_3191', 24, 80.47, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10346, N'S18_1342', 42, 88.36, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10346, N'S24_3969', 22, 38.57, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10346, N'S24_2887', 24, 117.44, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10346, N'S24_3432', 26, 103.87, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S10_1949', 30, 188.58, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S10_4962', 27, 132.97, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S12_1666', 29, 132.57, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S18_4600', 45, 115.03, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S18_1097', 42, 113.17, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S18_2795', 21, 136.69, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S18_1367', 21, 46.36, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S18_2432', 50, 51.05, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S18_2949', 48, 84.09, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S18_2957', 34, 60.59, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S18_3136', 45, 95.3, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10347, N'S18_3320', 26, 84.33, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10348, N'S24_2300', 37, 107.34, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10348, N'S24_4258', 39, 82.78, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10348, N'S32_1268', 42, 90.53, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10348, N'S12_3148', 47, 122.37, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10348, N'S32_3522', 31, 62.7, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10348, N'S18_4668', 29, 43.77, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10348, N'S700_2824', 32, 100.14, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10348, N'S12_1108', 48, 207.8, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S32_2509', 33, 44.37, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S24_4048', 23, 111.18, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S24_2840', 36, 31.47, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S24_1444', 48, 50.29, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S18_4027', 34, 140.75, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S18_3232', 48, 164.26, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S18_2319', 38, 117.82, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S18_2238', 38, 142.45, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S12_4473', 48, 114.95, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10349, N'S12_3891', 26, 166.1, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S18_3140', 44, 135.22, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S18_3259', 41, 94.79, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S18_4522', 30, 70.22, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S700_1938', 28, 76.22, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S10_4757', 26, 110.16, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S18_3029', 43, 84.3, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S24_2011', 34, 98.31, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S50_1392', 31, 104.18, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S24_3151', 30, 86.74, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S24_3816', 25, 77.15, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S700_1138', 46, 56, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S700_2610', 29, 68.67, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S700_3505', 31, 87.15, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S32_3207', 27, 61.52, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S72_3212', 20, 48.05, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S700_3962', 25, 97.32, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10350, N'S50_1514', 44, 56.82, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10351, N'S18_1662', 39, 143.5, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10351, N'S18_3856', 20, 104.81, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10351, N'S24_3949', 34, 68.24, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10351, N'S24_3420', 38, 53.92, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10351, N'S24_2841', 25, 64.4, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10352, N'S700_4002', 22, 62.19, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10352, N'S700_2466', 49, 87.75, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10352, N'S700_2047', 23, 75.13, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10352, N'S72_1253', 49, 46.18, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10353, N'S18_2581', 27, 71.81, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10353, N'S24_1785', 28, 107.23, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10353, N'S24_4278', 35, 69.55, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10353, N'S700_2834', 48, 98.48, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10353, N'S32_1374', 46, 86.9, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10353, N'S700_3167', 43, 74.4, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10353, N'S32_4289', 40, 68.1, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10353, N'S50_1341', 40, 35.78, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10353, N'S700_1691', 39, 73.07, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S24_2000', 28, 62.46, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S10_2016', 20, 95.15, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S10_4698', 42, 178.17, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S12_2823', 35, 141.58, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S24_1578', 21, 96.92, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S10_1678', 42, 84.22, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S18_3278', 36, 69.15, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S18_1889', 21, 76.23, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S12_1099', 31, 157.6, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S18_2625', 28, 49.06, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S12_3380', 29, 98.65, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S12_3990', 23, 76.61, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10354, N'S12_4675', 28, 100.19, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S18_3782', 31, 60.3, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S18_4721', 25, 124.99, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S24_2360', 41, 56.1, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S24_2972', 36, 37.38, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S32_4485', 40, 93.89, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S24_3371', 44, 60.62, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S18_3482', 23, 117.59, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S24_3856', 32, 137.62, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S24_4620', 28, 75.18, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10355, N'S32_2206', 38, 32.99, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10356, N'S18_2795', 30, 158.63, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10356, N'S18_1984', 27, 130.87, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10356, N'S18_2325', 29, 106.79, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10356, N'S50_4713', 26, 78.11, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10356, N'S24_1937', 48, 31.86, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10356, N'S18_1367', 22, 44.75, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10356, N'S24_2022', 26, 42.11, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10356, N'S18_1129', 43, 120.31, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10356, N'S18_1342', 50, 82.19, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S18_1097', 39, 112, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S18_4600', 28, 105.34, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S18_3320', 25, 84.33, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S18_3136', 44, 104.72, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S18_2957', 49, 59.34, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S18_2949', 41, 91.18, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S18_2432', 41, 58.95, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S12_1666', 49, 109.34, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S10_4962', 43, 135.92, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10357, N'S10_1949', 32, 199.3, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S32_1268', 41, 82.83, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S32_3522', 36, 51.71, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S700_2824', 27, 85.98, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S24_2840', 36, 33.59, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S12_3148', 49, 129.93, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S24_4258', 41, 88.62, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S24_2300', 41, 127.79, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S18_4668', 30, 46.29, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S12_4473', 42, 98.36, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S18_2238', 20, 142.45, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S18_2319', 20, 99.41, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S18_3232', 32, 137.17, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S18_4027', 25, 117.77, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10358, N'S24_1444', 44, 56.07, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10359, N'S32_3207', 22, 62.14, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10359, N'S50_1392', 46, 99.55, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10359, N'S32_2509', 36, 45.45, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10359, N'S50_1514', 25, 47.45, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10359, N'S12_3891', 49, 162.64, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10359, N'S10_4757', 48, 122.4, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10359, N'S24_4048', 22, 108.82, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10359, N'S12_1108', 42, 180.79, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S18_4522', 40, 76.36, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S24_2011', 31, 100.77, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S24_3151', 36, 70.81, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S24_3816', 22, 78.83, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S700_1138', 32, 64.67, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S700_1938', 26, 86.61, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S700_2610', 30, 70.11, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S18_3140', 29, 122.93, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S700_3505', 35, 83.14, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S700_3962', 31, 92.36, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S72_3212', 31, 54.05, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S18_1662', 50, 126.15, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S18_2581', 41, 68.43, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S18_3029', 46, 71.4, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S18_3856', 40, 101.64, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S24_2841', 49, 55.49, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S24_1785', 22, 106.14, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10360, N'S18_3259', 29, 94.79, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S24_4278', 25, 68.83, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S32_4289', 49, 56.41, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S50_1341', 33, 35.78, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S700_1691', 20, 88.6, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S700_2834', 44, 107.97, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S24_3420', 34, 62.46, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S24_3949', 26, 61.42, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S10_2016', 26, 114.18, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S700_2466', 26, 91.74, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S700_3167', 44, 76.8, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S700_4002', 35, 62.19, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S72_1253', 23, 47.67, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S10_1678', 20, 92.83, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10361, N'S700_2047', 24, 85.99, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10362, N'S12_2823', 22, 131.04, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10362, N'S24_1578', 50, 91.29, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10362, N'S18_2625', 23, 53.91, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10362, N'S10_4698', 22, 182.04, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S24_3856', 31, 113.75, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S32_1374', 50, 92.9, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S12_1099', 33, 180.95, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S12_3380', 34, 106.87, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S12_3990', 34, 68.63, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S12_4675', 46, 103.64, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S18_1889', 22, 61.6, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S24_2000', 21, 70.08, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S24_4620', 43, 75.99, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S18_3278', 46, 69.15, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S18_3482', 24, 124.94, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S18_3782', 32, 52.22, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S18_4721', 28, 123.5, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S24_2360', 43, 56.1, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10363, N'S24_3371', 21, 52.05, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10364, N'S32_2206', 48, 38.22, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10365, N'S18_1129', 30, 116.06, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10365, N'S50_4713', 44, 68.34, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10365, N'S32_4485', 22, 82.66, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10366, N'S18_3232', 34, 154.1, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10366, N'S18_2870', 49, 105.6, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10366, N'S18_1984', 34, 116.65, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S18_1589', 49, 105.77, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S24_2972', 36, 36.25, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S18_1749', 37, 144.5, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S18_2248', 45, 50.25, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S18_2325', 27, 124.59, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S18_3685', 46, 131.39, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S18_2795', 32, 140.06, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S18_4409', 43, 77.31, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S18_4933', 44, 66.99, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S24_1046', 21, 72.76, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S24_1628', 38, 50.31, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S24_2022', 28, 43.01, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10367, N'S24_1937', 23, 29.54, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10368, N'S24_3191', 46, 83.04, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10368, N'S24_2766', 40, 73.6, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10368, N'S24_3969', 46, 36.52, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10368, N'S24_3432', 20, 93.16, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10368, N'S24_2887', 31, 115.09, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10369, N'S18_2949', 42, 100.3, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10369, N'S10_1949', 41, 195.01, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10369, N'S24_4258', 40, 93.49, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10369, N'S18_3320', 45, 80.36, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10369, N'S18_3136', 21, 90.06, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10369, N'S18_2957', 28, 51.84, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10369, N'S18_1367', 32, 46.36, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10369, N'S18_1342', 44, 89.38, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10370, N'S18_1097', 27, 100.34, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10370, N'S18_4668', 20, 41.76, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10370, N'S32_3522', 25, 63.99, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10370, N'S10_4962', 35, 128.53, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10370, N'S18_2319', 22, 101.87, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10370, N'S18_4600', 29, 105.34, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10370, N'S18_2432', 22, 60.16, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10370, N'S12_1666', 49, 128.47, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10370, N'S18_3232', 27, 167.65, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S32_1268', 26, 82.83, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S32_2509', 20, 44.37, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S700_2824', 34, 83.95, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S12_4473', 49, 104.28, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S24_2300', 20, 126.51, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S12_1108', 32, 178.71, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S18_2238', 25, 160.46, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S24_2840', 45, 35.01, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S24_4048', 28, 95.81, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S50_1392', 48, 97.23, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S32_3207', 30, 53.44, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10371, N'S24_1444', 25, 53.75, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10372, N'S12_3891', 34, 140.15, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10372, N'S700_1938', 44, 74.48, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10372, N'S18_3140', 28, 131.13, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10372, N'S12_3148', 40, 146.55, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10372, N'S18_3259', 25, 91.76, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10372, N'S18_4027', 48, 119.2, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10372, N'S18_4522', 41, 78.99, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10372, N'S24_2011', 37, 102, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10372, N'S50_1514', 24, 56.82, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S72_3212', 29, 48.05, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S700_3505', 34, 94.16, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S10_4757', 39, 118.32, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S18_1662', 28, 143.5, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S18_3029', 22, 75.7, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S18_3856', 50, 99.52, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S24_2841', 38, 58.92, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S700_3962', 37, 83.42, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S72_1253', 25, 44.2, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S24_3816', 23, 83.86, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S24_3420', 46, 53.92, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S24_3151', 33, 82.31, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S24_3949', 39, 62.1, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S700_1138', 44, 58, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S700_2047', 32, 76.94, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S700_2610', 41, 69.39, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10373, N'S700_4002', 45, 68.11, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10374, N'S10_4698', 22, 158.8, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10374, N'S18_2581', 42, 75.19, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10374, N'S24_1785', 46, 107.23, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10374, N'S18_2625', 22, 48.46, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10374, N'S10_2016', 39, 115.37, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10374, N'S24_1578', 38, 112.7, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S700_2466', 33, 94.73, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S24_4278', 43, 60.13, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S32_1374', 37, 87.9, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S32_4289', 44, 59.85, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S50_1341', 49, 36.22, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S700_1691', 37, 86.77, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S12_1099', 45, 184.84, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S50_4713', 49, 69.16, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S24_2000', 23, 67.03, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S700_2834', 25, 98.48, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S700_3167', 44, 69.6, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S10_1678', 21, 76.56, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S12_2823', 49, 150.62, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S24_2360', 20, 60.26, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10375, N'S32_4485', 41, 96.95, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10376, N'S12_3380', 35, 98.65, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10377, N'S12_4675', 50, 112.86, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10377, N'S18_1129', 35, 124.56, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10377, N'S18_3232', 39, 143.94, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10377, N'S18_1889', 31, 61.6, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10377, N'S12_3990', 24, 65.44, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10377, N'S18_1984', 36, 125.18, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S32_2206', 40, 35.8, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S24_4620', 41, 80.84, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S24_3856', 33, 129.2, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S18_3278', 22, 66.74, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S18_1589', 34, 121.95, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S24_3371', 46, 52.66, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S24_2972', 41, 30.59, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S18_4721', 49, 122.02, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S18_3782', 28, 60.3, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10378, N'S18_3482', 43, 146.99, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10379, N'S18_2248', 27, 50.85, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10379, N'S18_1749', 39, 156.4, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10379, N'S24_1628', 32, 48.8, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10379, N'S18_3685', 32, 134.22, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10379, N'S18_2870', 29, 113.52, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S18_4409', 32, 78.23, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S18_4933', 24, 66.99, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S24_1046', 34, 66.88, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S24_1937', 32, 29.87, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S24_2022', 27, 37.63, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S24_2766', 36, 77.24, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S24_2887', 44, 111.57, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S18_2795', 21, 156.94, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S24_3191', 44, 77.05, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S18_2325', 40, 119.5, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S24_3432', 34, 91.02, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S24_3969', 43, 32.82, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10380, N'S18_1342', 27, 88.36, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10381, N'S12_1666', 20, 132.57, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10381, N'S18_1097', 48, 114.34, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10381, N'S10_1949', 36, 182.16, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10381, N'S18_2957', 40, 51.22, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10381, N'S18_3136', 35, 93.2, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10381, N'S10_4962', 37, 138.88, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10381, N'S18_2432', 35, 60.77, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10381, N'S18_2949', 41, 100.3, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10381, N'S18_1367', 25, 49.6, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S18_4600', 39, 115.03, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S18_4668', 39, 46.29, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S24_2300', 20, 120.12, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S24_4258', 33, 97.39, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S18_2238', 25, 160.46, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S32_1268', 26, 85.72, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S18_3320', 50, 84.33, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S32_3522', 48, 57.53, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S700_2824', 34, 101.15, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S12_1108', 34, 166.24, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S12_3148', 37, 145.04, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S12_3891', 34, 143.61, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10382, N'S12_4473', 32, 103.1, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S18_4027', 38, 137.88, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S24_1444', 22, 52.6, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S24_2840', 40, 33.24, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S24_4048', 21, 117.1, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S32_2509', 32, 53.57, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S18_3232', 47, 155.79, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S18_4522', 28, 77.24, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S32_3207', 44, 55.93, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S18_3140', 24, 125.66, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S50_1514', 38, 48.62, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S18_2319', 27, 119.05, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S18_3259', 26, 83.7, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10383, N'S50_1392', 29, 94.92, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10384, N'S700_1938', 49, 71.02, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10384, N'S24_3151', 43, 71.69, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10384, N'S24_2011', 28, 114.29, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10384, N'S10_4757', 34, 129.2, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10385, N'S700_1138', 25, 62, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10385, N'S24_3816', 37, 78.83, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S24_2841', 39, 56.86, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S700_3505', 45, 83.14, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S700_3962', 30, 80.44, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S72_3212', 43, 52.42, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S18_3029', 37, 73.12, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S18_3856', 22, 100.58, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S18_1662', 25, 130.88, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S24_4278', 50, 71.73, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S24_3420', 35, 54.57, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S700_2610', 37, 67.22, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S24_1785', 33, 101.76, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S24_3949', 41, 55.96, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S700_2047', 29, 85.09, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S700_2466', 37, 90.75, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S700_4002', 44, 59.22, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S72_1253', 50, 47.67, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S700_3167', 32, 68, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10386, N'S18_2581', 21, 72.65, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10387, N'S32_1374', 44, 79.91, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10388, N'S50_1341', 27, 41.02, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10388, N'S700_1691', 46, 74.9, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10388, N'S700_2834', 50, 111.53, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10388, N'S10_1678', 42, 80.39, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10388, N'S10_2016', 50, 118.94, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10388, N'S12_2823', 44, 125.01, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10388, N'S10_4698', 21, 156.86, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10388, N'S32_4289', 35, 58.47, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10389, N'S24_1578', 45, 112.7, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10389, N'S24_2000', 49, 61.7, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10389, N'S18_1889', 49, 63.91, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10389, N'S12_1099', 26, 182.9, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10389, N'S18_2625', 39, 52.09, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10389, N'S12_3380', 25, 95.13, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10389, N'S12_3990', 36, 76.61, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10389, N'S12_4675', 47, 102.49, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S18_3482', 50, 135.23, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S18_3782', 36, 54.09, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S18_4721', 49, 122.02, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S24_2360', 35, 67.87, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S24_2972', 37, 35.87, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S24_3371', 46, 51.43, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S18_2795', 26, 162, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S24_3856', 45, 134.81, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S18_3278', 40, 75.59, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S24_4620', 30, 66.29, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S32_2206', 41, 39.02, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S32_4485', 45, 101.03, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S50_4713', 22, 81.36, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S18_1129', 36, 117.48, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S18_1984', 34, 132.29, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10390, N'S18_2325', 31, 102.98, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S24_2022', 24, 36.29, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S18_1342', 35, 102.74, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S18_1367', 42, 47.44, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S10_1949', 24, 195.01, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S18_2432', 44, 57.73, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S18_2949', 32, 99.28, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S10_4962', 37, 121.15, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S24_1937', 33, 26.55, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S12_1666', 39, 110.7, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10391, N'S18_1097', 29, 114.34, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10392, N'S18_3320', 36, 98.22, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10392, N'S18_3136', 29, 103.67, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10392, N'S18_2957', 37, 61.21, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S18_4668', 44, 41.76, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S24_2300', 33, 112.46, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S24_4258', 33, 88.62, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S32_1268', 38, 84.75, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S32_3522', 31, 63.35, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S700_2824', 21, 83.95, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S18_2319', 38, 104.32, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S12_3148', 35, 145.04, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S18_4600', 30, 106.55, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S12_4473', 32, 99.54, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10393, N'S18_2238', 20, 137.53, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10394, N'S18_4027', 37, 124.95, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10394, N'S24_1444', 31, 53.18, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10394, N'S32_2509', 36, 47.08, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10394, N'S32_3207', 30, 55.93, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10394, N'S18_3232', 22, 135.47, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10394, N'S24_2840', 46, 35.36, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10394, N'S24_4048', 37, 104.09, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10395, N'S12_1108', 33, 205.72, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10395, N'S10_4757', 32, 125.12, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10395, N'S50_1514', 45, 57.99, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10395, N'S50_1392', 46, 98.39, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10396, N'S700_1138', 39, 62, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10396, N'S18_3140', 33, 129.76, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10396, N'S12_3891', 33, 155.72, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10396, N'S18_3259', 24, 91.76, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10396, N'S18_4522', 45, 83.38, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10396, N'S24_2011', 49, 100.77, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10396, N'S24_3151', 27, 77, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10396, N'S24_3816', 37, 77.99, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10397, N'S72_3212', 34, 52.96, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10397, N'S700_3962', 36, 80.44, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10397, N'S700_3505', 48, 86.15, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10397, N'S700_2610', 22, 62.88, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10397, N'S700_1938', 32, 69.29, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S72_1253', 34, 41.22, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S24_3949', 41, 56.64, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S24_2841', 28, 60.29, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S32_4289', 22, 60.54, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S50_1341', 49, 38.84, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S700_1691', 47, 78.55, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S700_2047', 36, 75.13, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S700_2466', 22, 98.72, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S700_2834', 23, 102.04, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S700_3167', 29, 76.8, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S18_1662', 33, 130.88, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S700_4002', 36, 62.19, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S24_3420', 34, 61.15, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S24_4278', 45, 65.93, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S18_2581', 34, 82.79, 15)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S24_1785', 43, 100.67, 16)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S18_3856', 45, 92.11, 17)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10398, N'S18_3029', 28, 70.54, 18)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10399, N'S32_1374', 32, 97.89, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10399, N'S24_2000', 58, 75.41, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10399, N'S24_1578', 57, 104.81, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10399, N'S18_2625', 30, 51.48, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10399, N'S12_2823', 29, 123.51, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10399, N'S10_4698', 22, 156.86, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10399, N'S10_2016', 51, 99.91, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10399, N'S10_1678', 40, 77.52, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10400, N'S18_1662', 34, 129.31, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10400, N'S24_2841', 24, 55.49, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10400, N'S24_3420', 38, 59.18, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10400, N'S72_1253', 20, 41.71, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10400, N'S700_2047', 46, 82.37, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10400, N'S18_3856', 58, 88.93, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10400, N'S18_3029', 30, 74.84, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10400, N'S24_3816', 42, 74.64, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10400, N'S10_4757', 64, 134.64, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S32_1374', 49, 81.91, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S700_2834', 21, 96.11, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S18_2581', 42, 75.19, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S24_4278', 52, 65.93, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S24_1785', 38, 87.54, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S32_4289', 62, 62.6, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S50_1341', 56, 41.46, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S700_1691', 11, 77.64, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S700_3167', 77, 73.6, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S700_2466', 85, 98.72, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S700_4002', 40, 66.63, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10401, N'S24_3949', 64, 59.37, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10402, N'S10_2016', 45, 118.94, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10402, N'S18_2625', 55, 58.15, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10402, N'S24_2000', 59, 61.7, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10403, N'S18_3782', 36, 55.33, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10403, N'S32_2206', 30, 35.8, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10403, N'S50_4713', 31, 65.09, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10403, N'S24_2360', 27, 57.49, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10403, N'S32_4485', 45, 88.78, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10403, N'S12_2823', 66, 122, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10403, N'S10_1678', 24, 85.17, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10403, N'S24_1578', 46, 109.32, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10403, N'S10_4698', 66, 174.29, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10404, N'S12_3380', 43, 102.17, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10404, N'S24_3371', 49, 53.27, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10404, N'S12_1099', 64, 163.44, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10404, N'S12_3990', 77, 67.03, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10404, N'S18_3482', 28, 127.88, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10404, N'S18_3278', 90, 67.54, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10404, N'S24_4620', 48, 65.48, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10404, N'S18_4721', 48, 124.99, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10405, N'S18_3232', 55, 147.33, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10405, N'S24_2972', 47, 37.38, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10405, N'S24_3856', 76, 127.79, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10405, N'S18_1889', 61, 72.38, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10405, N'S12_4675', 97, 115.16, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10406, N'S18_3685', 65, 117.26, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10406, N'S18_1984', 48, 133.72, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10406, N'S18_1129', 61, 124.56, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S18_2248', 42, 58.12, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S18_1749', 76, 141.1, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S18_4409', 6, 91.11, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S18_4933', 66, 64.14, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S24_2887', 59, 98.65, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S24_2766', 76, 81.78, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S24_3191', 13, 77.05, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S24_1046', 26, 68.35, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S24_3432', 43, 101.73, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S24_1628', 64, 45.78, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S18_1589', 59, 114.48, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10407, N'S18_2870', 41, 132, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10408, N'S24_3969', 15, 41.03, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10409, N'S24_1937', 61, 27.88, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10409, N'S18_2325', 6, 104.25, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10410, N'S18_2949', 47, 93.21, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10410, N'S18_3136', 34, 84.82, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10410, N'S18_2957', 53, 49.97, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10410, N'S24_4258', 50, 95.44, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10410, N'S18_3320', 44, 81.35, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10410, N'S18_1367', 44, 51.21, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10410, N'S18_1342', 65, 99.66, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10410, N'S18_2795', 56, 145.13, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10410, N'S24_2022', 31, 42.56, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10411, N'S32_1268', 26, 78.01, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10411, N'S10_4962', 27, 144.79, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10411, N'S18_4600', 46, 106.55, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10411, N'S700_2824', 34, 89.01, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10411, N'S32_3522', 27, 60.76, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10411, N'S12_1666', 40, 110.7, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10411, N'S18_4668', 35, 41.25, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10411, N'S18_1097', 27, 109.67, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10411, N'S10_1949', 23, 205.73, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S24_4048', 31, 108.82, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S24_1444', 21, 47.4, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S50_1392', 26, 105.33, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S18_2238', 41, 150.63, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S12_4473', 54, 100.73, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S24_2840', 30, 32.88, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S32_2509', 19, 50.86, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S18_2319', 56, 120.28, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S18_3232', 60, 157.49, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S24_2300', 70, 109.9, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10412, N'S18_2432', 47, 49.83, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10413, N'S12_3891', 22, 173.02, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10413, N'S12_1108', 36, 201.57, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10413, N'S12_3148', 47, 145.04, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10413, N'S50_1514', 51, 53.31, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10413, N'S18_4027', 49, 133.57, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10413, N'S32_3207', 24, 56.55, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S18_3029', 44, 77.42, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S24_3816', 51, 72.96, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S10_4757', 49, 114.24, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S700_2610', 31, 61.44, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S24_3151', 60, 72.58, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S700_1138', 37, 62, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S700_3505', 28, 84.14, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S700_3962', 40, 84.41, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S72_3212', 47, 54.6, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S24_2011', 43, 108.14, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S18_4522', 56, 83.38, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S18_3140', 41, 128.39, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S700_1938', 34, 74.48, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10414, N'S18_3259', 48, 85.71, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10415, N'S24_2841', 21, 60.97, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10415, N'S24_3420', 18, 59.83, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10415, N'S72_1253', 42, 43.2, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10415, N'S700_2047', 32, 73.32, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10415, N'S18_3856', 51, 86.81, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S24_2000', 32, 62.46, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S32_1374', 45, 86.9, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S700_2834', 41, 98.48, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S18_2581', 15, 70.96, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S24_4278', 48, 70.28, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S24_1785', 47, 90.82, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S32_4289', 26, 68.1, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S50_1341', 37, 39.71, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S700_1691', 23, 88.6, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S700_3167', 39, 65.6, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S700_2466', 22, 84.76, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S700_4002', 43, 63.67, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S24_3949', 18, 64.83, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10416, N'S18_1662', 24, 129.31, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10417, N'S12_2823', 21, 144.6, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10417, N'S10_1678', 66, 79.43, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10417, N'S24_1578', 35, 109.32, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10417, N'S10_4698', 56, 162.67, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10417, N'S10_2016', 45, 116.56, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10417, N'S18_2625', 36, 58.75, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10418, N'S18_3482', 27, 139.64, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10418, N'S18_3278', 16, 70.76, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10418, N'S24_4620', 10, 66.29, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10418, N'S18_4721', 28, 120.53, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10418, N'S18_3782', 33, 56.57, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10418, N'S32_2206', 43, 36.61, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10418, N'S50_4713', 40, 72.41, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10418, N'S24_2360', 52, 64.41, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10418, N'S32_4485', 50, 100.01, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S18_1589', 37, 100.8, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S18_2870', 55, 116.16, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S18_3685', 43, 114.44, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S18_1984', 34, 133.72, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S18_1129', 38, 117.48, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S18_3232', 35, 165.95, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S24_2972', 15, 32.1, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S24_3856', 70, 112.34, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S18_1889', 39, 67.76, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S12_4675', 32, 99.04, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S12_3380', 10, 111.57, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S24_3371', 55, 52.66, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S12_1099', 12, 182.9, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10419, N'S12_3990', 34, 64.64, 14)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S24_1937', 45, 32.19, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S18_2325', 45, 116.96, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S24_3969', 15, 35.29, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S18_2248', 36, 52.06, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S18_1749', 37, 153, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S18_4409', 66, 73.62, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S18_4933', 36, 68.42, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S24_2887', 55, 115.09, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S24_2766', 39, 76.33, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S24_3191', 35, 77.05, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S24_1046', 60, 60.26, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S24_3432', 26, 104.94, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10420, N'S24_1628', 37, 48.8, 13)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10421, N'S18_2795', 35, 167.06, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10421, N'S24_2022', 40, 44.8, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10422, N'S18_1367', 25, 47.44, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10422, N'S18_1342', 51, 91.44, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10423, N'S18_2949', 10, 89.15, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10423, N'S18_3136', 21, 98.44, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10423, N'S18_2957', 31, 56.21, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10423, N'S24_4258', 28, 78.89, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10423, N'S18_3320', 21, 80.36, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10424, N'S700_2824', 46, 85.98, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10424, N'S32_3522', 44, 54.94, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10424, N'S12_1666', 49, 121.64, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10424, N'S18_4668', 26, 40.25, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10424, N'S18_1097', 54, 108.5, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10424, N'S10_1949', 50, 201.44, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S24_1444', 55, 53.75, 1)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S50_1392', 18, 94.92, 2)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S18_2238', 28, 147.36, 3)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S12_4473', 33, 95.99, 4)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S24_2840', 31, 31.82, 5)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S32_2509', 11, 50.32, 6)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S18_2319', 38, 117.82, 7)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S18_3232', 28, 140.55, 8)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S24_2300', 49, 127.79, 9)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S18_2432', 19, 48.62, 10)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S32_1268', 41, 83.79, 11)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S10_4962', 38, 131.49, 12)
GO
INSERT [dbo].[SalesOrderLine] ([orderID], [productID], [quantity], [unitPrice], [orderLineNumber]) VALUES (10425, N'S18_4600', 38, 107.76, 13)
GO
ALTER TABLE [dbo].[Customer] WITH CHECK ADD FOREIGN KEY([salesRepemployeeID])
REFERENCES [dbo].[Employee] ([employeeID])
GO
ALTER TABLE [dbo].[Employee] WITH CHECK ADD FOREIGN KEY([officeID])
REFERENCES [dbo].[Office] ([officeID])
GO
ALTER TABLE [dbo].[Employee] WITH CHECK ADD FOREIGN KEY([reportsTo])
REFERENCES [dbo].[Employee] ([employeeID])
GO
ALTER TABLE [dbo].[Payment] WITH CHECK ADD FOREIGN KEY([customerID])
REFERENCES [dbo].[Customer] ([customerID])
GO
ALTER TABLE [dbo].[Product] WITH CHECK ADD FOREIGN KEY([productLineID])
REFERENCES [dbo].[ProductLine] ([productLineID])
GO
ALTER TABLE [dbo].[Product] WITH CHECK ADD FOREIGN KEY([productVendorCode])
REFERENCES [dbo].[ProductVendor] ([productVendorID])
GO
ALTER TABLE [dbo].[SalesOrderHeader] WITH CHECK ADD FOREIGN KEY([customerID])
REFERENCES [dbo].[Customer] ([customerID])
GO
ALTER TABLE [dbo].[SalesOrderLine] WITH CHECK ADD FOREIGN KEY([orderID])
REFERENCES [dbo].[SalesOrderHeader] ([orderID])
GO
ALTER TABLE [dbo].[SalesOrderLine] WITH CHECK ADD FOREIGN KEY([productID])
REFERENCES [dbo].[Product] ([productID])
GO
USE [master]
GO
ALTER DATABASE [SalesDB] SET READ_WRITE
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment