/****** Object: Table [dbo].[configs] Script Date: 2/7/2023 2:04:32 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[configs]( [Id] [int] IDENTITY(1,1) NOT NULL, [key] [varchar](255) NOT NULL, [value] [nvarchar](1000) NOT NULL, PRIMARY KEY CLUSTERED ( [Id] 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].[customers] Script Date: 2/7/2023 2:04:32 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[customers]( [id] [int] IDENTITY(1,1) NOT NULL, [last_name] [nvarchar](50) NULL, [first_name] [nvarchar](50) NULL, [email] [nvarchar](50) NULL, [company] [nvarchar](50) NULL, [phone] [nvarchar](25) NULL, [address1] [nvarchar](150) NULL, [address2] [nvarchar](150) NULL, [city] [nvarchar](50) NULL, [state] [nvarchar](50) NULL, [postal_code] [nvarchar](15) NULL, [country] [nvarchar](50) NULL, [password] [nvarchar](500) NULL, PRIMARY KEY CLUSTERED ( [id] 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].[employees] Script Date: 2/7/2023 2:04:32 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[employees]( [id] [int] IDENTITY(1,1) NOT NULL, [last_name] [nvarchar](50) NULL, [first_name] [nvarchar](50) NULL, [email] [nvarchar](50) NULL, [password] [nvarchar](500) NULL, [avatar] [nvarchar](250) NULL, [job_title] [nvarchar](50) NULL, [department] [nvarchar](50) NULL, [manager_id] [int] NULL, [phone] [nvarchar](25) NULL, [address1] [nvarchar](150) NULL, [address2] [nvarchar](150) NULL, [city] [nvarchar](50) NULL, [state] [nvarchar](50) NULL, [postal_code] [nvarchar](15) NULL, [country] [nvarchar](50) NULL, PRIMARY KEY CLUSTERED ( [id] 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].[order_details] Script Date: 2/7/2023 2:04:32 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[order_details]( [order_id] [int] IDENTITY(1,1) NOT NULL, [product_id] [int] NOT NULL, [quantity] [decimal](18, 4) NOT NULL, [unit_price] [decimal](19, 4) NULL, [discount] [decimal](18, 0) NOT NULL, [order_detail_status] [nvarchar](25) NULL, [date_allocated] [datetime] NULL, PRIMARY KEY CLUSTERED ( [order_id] ASC, [product_id] 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].[orders] Script Date: 2/7/2023 2:04:32 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[orders]( [id] [int] IDENTITY(1,1) NOT NULL, [employee_id] [int] NULL, [customer_id] [int] NULL, [order_date] [datetime] NULL, [shipped_date] [datetime] NULL, [ship_name] [nvarchar](50) NULL, [ship_address1] [nvarchar](150) NULL, [ship_address2] [nvarchar](150) NULL, [ship_city] [nvarchar](50) NULL, [ship_state] [nvarchar](50) NULL, [ship_postal_code] [nvarchar](50) NULL, [ship_country] [nvarchar](50) NULL, [shipping_fee] [decimal](19, 4) NULL, [payment_type] [nvarchar](50) NULL, [paid_date] [datetime] NULL, [order_status] [nvarchar](25) NULL, PRIMARY KEY CLUSTERED ( [id] 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].[products] Script Date: 2/7/2023 2:04:32 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[products]( [id] [int] IDENTITY(1,1) NOT NULL, [product_code] [nvarchar](25) NULL, [product_name] [nvarchar](50) NULL, [description] [nvarchar](250) NULL, [standard_cost] [decimal](19, 4) NULL, [list_price] [decimal](19, 4) NOT NULL, [target_level] [int] NULL, [reorder_level] [int] NULL, [minimum_reorder_quantity] [int] NULL, [quantity_per_unit] [nvarchar](50) NULL, [discontinued] [tinyint] NOT NULL, [category] [nvarchar](50) NULL, [image] [text] NULL, PRIMARY KEY CLUSTERED ( [id] 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 SET IDENTITY_INSERT [dbo].[configs] ON GO INSERT [dbo].[configs] ([Id], [key], [value]) VALUES (1, N'company.name', N'Công ty TNHH Nền Tảng') GO INSERT [dbo].[configs] ([Id], [key], [value]) VALUES (2, N'company.address', N'Cần Thơ') GO SET IDENTITY_INSERT [dbo].[configs] OFF GO SET IDENTITY_INSERT [dbo].[customers] ON GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (1, N'Gray', N'Clarence', N'cgray0@rambler.ru', N'Jetpulse', N'1-(260)601-5114', N'02937 Merrick Avenue', NULL, N'Fort Wayne', N'Indiana', N'46805', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (2, N'Cooper', N'Emily', N'ecooper1@macromedia.com', N'Skippad', N'1-(251)614-5034', N'60 Forster Crossing', NULL, N'Mobile', N'Alabama', N'36605', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (3, N'Wilson', N'George', N'gwilson2@xinhuanet.com', N'Riffpath', N'1-(901)445-9881', N'52 Browning Center', NULL, N'Memphis', N'Tennessee', N'38181', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (4, N'Mcdonald', N'Michael', N'mmcdonald3@twitter.com', N'Feedfire', N'1-(419)743-7314', N'85093 Jackson Park', NULL, N'Toledo', N'Ohio', N'43610', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (5, N'Tucker', N'Lori', N'ltucker4@etsy.com', N'Oyondu', N'1-(202)381-2663', N'0706 Heffernan Pass', NULL, N'Washington', N'District of Columbia', N'20380', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (6, N'Hansen', N'Lois', N'lhansen5@stumbleupon.com', N'Yozio', N'1-(315)385-6866', N'2 Ruskin Pass', NULL, N'Syracuse', N'New York', N'13251', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (7, N'Grant', N'Frances', N'fgrant6@yale.edu', N'Eire', N'1-(863)799-9068', N'61402 Morning Court', NULL, N'Lakeland', N'Florida', N'33811', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (8, N'Lewis', N'Catherine', N'clewis7@unesco.org', N'Realpoint', N'1-(915)208-4997', N'775 Messerschmidt Junction', NULL, N'El Paso', N'Texas', N'88563', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (9, N'Rogers', N'Edward', N'erogers8@guardian.co.uk', N'Quinu', N'1-(971)934-2404', N'7074 Montana Place', NULL, N'Portland', N'Oregon', N'97271', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (10, N'Owens', N'Tina', N'towens9@earthlink.net', N'Blogtag', N'1-(712)989-9002', N'59039 Sachtjen Street', NULL, N'Sioux City', N'Iowa', N'51105', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (11, N'Peterson', N'Fred', N'fpetersona@home.pl', N'Meedoo', N'1-(202)228-9380', N'55 Knutson Street', NULL, N'Washington', N'District of Columbia', N'20099', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (12, N'Cox', N'Jason', N'jcoxb@slashdot.org', N'Tagcat', N'1-(651)991-0172', N'19 Hoffman Avenue', NULL, N'Saint Paul', N'Minnesota', N'55114', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (13, N'Perez', N'Paul', N'pperezc@ask.com', N'Kazu', N'1-(405)290-7944', N'6336 Continental Circle', NULL, N'Oklahoma City', N'Oklahoma', N'73167', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (14, N'Duncan', N'Anthony', N'aduncand@disqus.com', N'Aibox', N'1-(727)705-8400', N'17794 Northport Point', NULL, N'Clearwater', N'Florida', N'33763', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (15, N'Graham', N'Sean', N'sgrahame@google.com.br', N'Tekfly', N'1-(901)443-0731', N'47493 Reinke Drive', NULL, N'Memphis', N'Tennessee', N'38131', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (16, N'Simpson', N'Jose', N'jsimpsonf@youtube.com', N'Youspan', N'1-(518)381-4659', N'498 Carey Lane', NULL, N'Albany', N'New York', N'12262', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (17, N'Simmons', N'Frances', N'fsimmonsg@merriam-webster.com', N'Feednation', N'1-(251)473-1327', N'44102 Montana Crossing', NULL, N'Mobile', N'Alabama', N'36641', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (18, N'Schmidt', N'John', N'jschmidth@vinaora.com', N'Topicblab', N'1-(202)945-2079', N'384 Goodland Pass', NULL, N'Washington', N'District of Columbia', N'20210', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (19, N'West', N'Roger', N'rwesti@cornell.edu', N'Skilith', N'1-(716)707-3907', N'74 Nancy Pass', NULL, N'Buffalo', N'New York', N'14215', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (20, N'Fields', N'Jesse', N'jfieldsj@shop-pro.jp', N'Vinte', N'1-(617)810-9493', N'602 Laurel Park', NULL, N'Boston', N'Massachusetts', N'02203', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (21, N'Patterson', N'Kathy', N'kpattersonk@simplemachines.org', N'Brainverse', N'1-(806)803-9725', N'67063 Spenser Junction', NULL, N'Amarillo', N'Texas', N'79188', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (22, N'Bell', N'Stephanie', N'sbelll@gravatar.com', N'DabZ', N'1-(801)924-1975', N'05 Gina Crossing', NULL, N'Salt Lake City', N'Utah', N'84145', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (23, N'Turner', N'Martha', N'mturnerm@hp.com', N'Yadel', N'1-(225)880-9134', N'97789 Scofield Point', NULL, N'Baton Rouge', N'Louisiana', N'70894', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (24, N'Ross', N'Richard', N'rrossn@weebly.com', N'Voolith', N'1-(415)690-1916', N'19 Briar Crest Alley', NULL, N'San Francisco', N'California', N'94164', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (25, N'Stephens', N'Stephanie', N'sstephenso@timesonline.co.uk', N'BlogXS', N'1-(501)827-1408', N'63291 Huxley Drive', NULL, N'North Little Rock', N'Arkansas', N'72118', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (26, N'Sanchez', N'Diane', N'dsanchezp@sun.com', N'Tagtune', N'1-(315)979-6793', N'13 Oneill Junction', NULL, N'Syracuse', N'New York', N'13224', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (27, N'Lawrence', N'Douglas', N'dlawrenceq@flickr.com', N'Browsetype', N'1-(610)622-4045', N'83224 Mallard Center', NULL, N'Philadelphia', N'Pennsylvania', N'19109', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (28, N'Hansen', N'Lori', N'lhansenr@patch.com', N'Einti', N'1-(915)266-1989', N'48410 Westport Circle', NULL, N'El Paso', N'Texas', N'88546', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (29, N'Medina', N'Robert', N'rmedinas@uiuc.edu', N'Tambee', N'1-(216)752-7216', N'0562 Muir Trail', NULL, N'Cleveland', N'Ohio', N'44197', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (30, N'Harrison', N'Shawn', N'sharrisont@webnode.com', N'Youopia', N'1-(205)595-8085', N'20 Mayer Center', NULL, N'Birmingham', N'Alabama', N'35205', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (31, N'Alexander', N'Julia', N'jalexanderu@networksolutions.com', N'Oodoo', N'1-(864)349-2185', N'61859 West Point', NULL, N'Greenville', N'South Carolina', N'29610', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (32, N'Stanley', N'Victor', N'vstanleyv@wikipedia.org', N'Centimia', N'1-(561)507-7317', N'08229 Glacier Hill Avenue', NULL, N'Boynton Beach', N'Florida', N'33436', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (33, N'Wheeler', N'Dennis', N'dwheelerw@indiatimes.com', N'Dynabox', N'1-(419)889-2883', N'409 American Ash Plaza', NULL, N'Lima', N'Ohio', N'45807', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (34, N'Frazier', N'Rachel', N'rfrazierx@sfgate.com', N'Skivee', N'1-(314)249-1796', N'7 Waxwing Court', NULL, N'Saint Louis', N'Missouri', N'63131', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (35, N'Brooks', N'Shawn', N'sbrooksy@mediafire.com', N'Omba', N'1-(971)854-8478', N'614 Monica Terrace', NULL, N'Portland', N'Oregon', N'97240', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (36, N'Coleman', N'Frank', N'fcolemanz@un.org', N'Agimba', N'1-(318)446-4337', N'4 Browning Park', NULL, N'Shreveport', N'Louisiana', N'71151', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (37, N'Wright', N'Frank', N'fwright10@flickr.com', N'Meedoo', N'1-(504)852-2553', N'03446 Sheridan Trail', NULL, N'New Orleans', N'Louisiana', N'70183', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (38, N'Perkins', N'Tina', N'tperkins11@va.gov', N'Rhybox', N'1-(571)497-0755', N'62 Grayhawk Lane', NULL, N'Fairfax', N'Virginia', N'22036', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (39, N'Griffin', N'Ruth', N'rgriffin12@pcworld.com', N'Trudoo', N'1-(504)312-7448', N'29701 Jenifer Junction', NULL, N'Metairie', N'Louisiana', N'70033', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (40, N'Sanchez', N'Sean', N'ssanchez13@bandcamp.com', N'Chatterpoint', N'1-(316)535-7647', N'10 Stuart Road', NULL, N'Wichita', N'Kansas', N'67260', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (41, N'Harris', N'Linda', N'lharris14@ask.com', N'Blogpad', N'1-(913)258-6547', N'17635 Elka Alley', NULL, N'Shawnee Mission', N'Kansas', N'66205', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (42, N'Wood', N'George', N'gwood15@imdb.com', N'Feednation', N'1-(865)482-7169', N'210 Anhalt Drive', NULL, N'Knoxville', N'Tennessee', N'37924', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (43, N'Bennett', N'Nancy', N'nbennett16@networksolutions.com', N'Yodo', N'1-(210)749-3167', N'97861 Harper Pass', NULL, N'San Antonio', N'Texas', N'78260', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (44, N'Pierce', N'Jesse', N'jpierce17@cyberchimps.com', N'Divanoodle', N'1-(501)518-2300', N'0 Columbus Terrace', NULL, N'Little Rock', N'Arkansas', N'72231', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (45, N'Larson', N'Jerry', N'jlarson18@ustream.tv', N'Kazu', N'1-(916)702-0977', N'0422 Merry Court', NULL, N'Sacramento', N'California', N'95852', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (46, N'Williams', N'Norma', N'nwilliams19@spiegel.de', N'Yacero', N'1-(562)631-4036', N'5779 Burning Wood Crossing', NULL, N'Long Beach', N'California', N'90847', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (47, N'Kelley', N'Louis', N'lkelley1a@wsj.com', N'Linkbuzz', N'1-(432)286-2200', N'04321 Northport Pass', NULL, N'Odessa', N'Texas', N'79764', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (48, N'Mason', N'Ruby', N'rmason1b@census.gov', N'Trudeo', N'1-(763)835-7627', N'99219 5th Place', NULL, N'Monticello', N'Minnesota', N'55565', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (49, N'Carr', N'Nicole', N'ncarr1c@yellowbook.com', N'Plajo', N'1-(330)154-9245', N'41 Monica Parkway', NULL, N'Youngstown', N'Ohio', N'44511', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (50, N'Franklin', N'Michelle', N'mfranklin1d@ucoz.com', N'Wikivu', N'1-(405)751-8906', N'62 Rutledge Alley', NULL, N'Oklahoma City', N'Oklahoma', N'73147', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (51, N'Hawkins', N'Larry', N'lhawkins1e@typepad.com', N'Tagpad', N'1-(240)796-9270', N'48 Columbus Road', NULL, N'Hagerstown', N'Maryland', N'21747', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (52, N'Adams', N'Lillian', N'ladams1f@smugmug.com', N'Avamm', N'1-(419)394-2363', N'69708 West Avenue', NULL, N'Toledo', N'Ohio', N'43605', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (53, N'Williamson', N'Janice', N'jwilliamson1g@sbwire.com', N'Wordware', N'1-(212)576-0309', N'311 Clemons Crossing', NULL, N'New York City', N'New York', N'10090', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (54, N'Mitchell', N'Lisa', N'lmitchell1h@live.com', N'Trudoo', N'1-(225)794-6979', N'17242 Eagan Terrace', NULL, N'Baton Rouge', N'Louisiana', N'70820', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (55, N'Lawrence', N'Anna', N'alawrence1i@list-manage.com', N'Pixope', N'1-(818)505-8262', N'51241 Tennessee Point', NULL, N'Santa Monica', N'California', N'90405', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (56, N'Scott', N'Margaret', N'mscott1j@arizona.edu', N'Mynte', N'1-(202)265-0994', N'117 Arapahoe Crossing', NULL, N'Washington', N'District of Columbia', N'20051', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (57, N'Harper', N'Timothy', N'tharper1k@loc.gov', N'Trudoo', N'1-(212)348-5025', N'137 Commercial Court', NULL, N'New York City', N'New York', N'10175', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (58, N'Frazier', N'Mary', N'mfrazier1l@mapy.cz', N'Photobug', N'1-(214)939-0299', N'281 Briar Crest Way', NULL, N'Garland', N'Texas', N'75049', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (59, N'Young', N'Margaret', N'myoung1m@ehow.com', N'Realmix', N'1-(318)144-2666', N'537 Memorial Way', NULL, N'Shreveport', N'Louisiana', N'71105', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (60, N'Sullivan', N'Phyllis', N'psullivan1n@jiathis.com', N'Demivee', N'1-(518)361-7505', N'117 Onsgard Crossing', NULL, N'Albany', N'New York', N'12227', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (61, N'Knight', N'Roy', N'rknight1o@qq.com', N'Meezzy', N'1-(478)438-2599', N'60 Kinsman Drive', NULL, N'Macon', N'Georgia', N'31210', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (62, N'Ruiz', N'Andrea', N'aruiz1p@domainmarket.com', N'Fivespan', N'1-(415)374-7204', N'55455 Heffernan Plaza', NULL, N'San Francisco', N'California', N'94142', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (63, N'Hayes', N'Heather', N'hhayes1q@odnoklassniki.ru', N'Twitternation', N'1-(601)919-6350', N'31 Banding Plaza', NULL, N'Jackson', N'Mississippi', N'39296', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (64, N'Chapman', N'Roy', N'rchapman1r@theguardian.com', N'BlogXS', N'1-(941)329-4488', N'27487 Fair Oaks Crossing', NULL, N'Sarasota', N'Florida', N'34233', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (65, N'Moore', N'Daniel', N'dmoore1s@google.co.uk', N'Twitterbridge', N'1-(408)838-8747', N'52377 Everett Court', NULL, N'San Jose', N'California', N'95194', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (66, N'Day', N'Amy', N'aday1t@indiegogo.com', N'Brainverse', N'1-(336)903-6679', N'50107 Northport Circle', NULL, N'Winston Salem', N'North Carolina', N'27157', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (67, N'Kelley', N'Jesse', N'jkelley1u@who.int', N'Zoomzone', N'1-(304)183-6041', N'31740 Bayside Trail', NULL, N'Huntington', N'West Virginia', N'25711', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (68, N'Andrews', N'Andrea', N'aandrews1v@patch.com', N'Fanoodle', N'1-(206)996-3516', N'544 Lakewood Gardens Alley', NULL, N'Seattle', N'Washington', N'98148', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (69, N'Willis', N'Robert', N'rwillis1w@si.edu', N'Tazz', N'1-(678)738-3382', N'0998 Bellgrove Circle', NULL, N'Duluth', N'Georgia', N'30195', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (70, N'Reid', N'Daniel', N'dreid1x@miitbeian.gov.cn', N'Babbleblab', N'1-(786)539-0220', N'2 New Castle Avenue', NULL, N'Miami', N'Florida', N'33111', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (71, N'Roberts', N'Louise', N'lroberts1y@cpanel.net', N'Skippad', N'1-(316)418-5043', N'598 Mayfield Road', NULL, N'Wichita', N'Kansas', N'67210', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (72, N'Harrison', N'Margaret', N'mharrison1z@biglobe.ne.jp', N'Zoovu', N'1-(775)625-5357', N'636 Maple Point', NULL, N'Reno', N'Nevada', N'89550', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (73, N'Chapman', N'Peter', N'pchapman20@eventbrite.com', N'Linkbuzz', N'1-(574)707-4449', N'1 Vermont Plaza', NULL, N'South Bend', N'Indiana', N'46620', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (74, N'Tucker', N'Willie', N'wtucker21@hubpages.com', N'Eazzy', N'1-(814)593-2963', N'3 Dryden Trail', NULL, N'Erie', N'Pennsylvania', N'16505', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (75, N'Bradley', N'Adam', N'abradley22@cnet.com', N'Yabox', N'1-(903)334-0845', N'15 Veith Center', NULL, N'Tyler', N'Texas', N'75705', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (76, N'Armstrong', N'Juan', N'jarmstrong23@archive.org', N'Gevee', N'1-(916)285-8157', N'95 Claremont Crossing', NULL, N'Sacramento', N'California', N'95865', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (77, N'Payne', N'Kenneth', N'kpayne24@com.com', N'Skinte', N'1-(770)150-8423', N'75 Beilfuss Court', NULL, N'Alpharetta', N'Georgia', N'30022', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (78, N'Jacobs', N'Louis', N'ljacobs25@intel.com', N'Photolist', N'1-(404)386-3449', N'542 Browning Park', NULL, N'Atlanta', N'Georgia', N'30343', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (79, N'Cooper', N'Marilyn', N'mcooper26@whitehouse.gov', N'Yotz', N'1-(520)875-3539', N'03 Transport Point', NULL, N'Tucson', N'Arizona', N'85710', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (80, N'Watkins', N'William', N'wwatkins27@pbs.org', N'Brightbean', N'1-(719)568-3678', N'0316 La Follette Drive', NULL, N'Colorado Springs', N'Colorado', N'80920', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (81, N'Baker', N'Douglas', N'dbaker28@exblog.jp', N'Voonix', N'1-(619)121-6070', N'99 Kedzie Terrace', NULL, N'Chula Vista', N'California', N'91913', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (82, N'Cunningham', N'Daniel', N'dcunningham29@oakley.com', N'Leexo', N'1-(619)609-6206', N'53540 Hallows Place', NULL, N'San Diego', N'California', N'92137', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (83, N'Mitchell', N'Edward', N'emitchell2a@amazon.com', N'Jatri', N'1-(502)427-5275', N'3 Jana Junction', NULL, N'Louisville', N'Kentucky', N'40280', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (84, N'Matthews', N'Adam', N'amatthews2b@live.com', N'Muxo', N'1-(316)764-9074', N'5 Arapahoe Plaza', NULL, N'Wichita', N'Kansas', N'67220', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (85, N'Jacobs', N'Diane', N'djacobs2c@jimdo.com', N'Youspan', N'1-(804)398-4775', N'6 Moose Street', NULL, N'Richmond', N'Virginia', N'23285', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (86, N'Frazier', N'Mary', N'mfrazier2d@forbes.com', N'Zoomdog', N'1-(716)502-4243', N'713 Continental Trail', NULL, N'Buffalo', N'New York', N'14210', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (87, N'Howard', N'Anthony', N'ahoward2e@disqus.com', N'Katz', N'1-(805)800-7968', N'006 Elka Center', NULL, N'Bakersfield', N'California', N'93311', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (88, N'Kelly', N'Anna', N'akelly2f@unc.edu', N'Trilia', N'1-(804)117-9707', N'292 Browning Circle', NULL, N'Richmond', N'Virginia', N'23228', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (89, N'Clark', N'Kathy', N'kclark2g@businesswire.com', N'Gigabox', N'1-(831)755-4869', N'45 Walton Parkway', NULL, N'Salinas', N'California', N'93907', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (90, N'Carpenter', N'Gerald', N'gcarpenter2h@foxnews.com', N'Yakidoo', N'1-(213)344-9608', N'84560 Stephen Parkway', NULL, N'Los Angeles', N'California', N'90055', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (91, N'Hart', N'Albert', N'ahart2i@scribd.com', N'Jaloo', N'1-(415)201-5281', N'0 Washington Place', NULL, N'Oakland', N'California', N'94611', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (92, N'Young', N'Julia', N'jyoung2j@craigslist.org', N'Oloo', N'1-(601)660-1203', N'0623 Gale Drive', NULL, N'Jackson', N'Mississippi', N'39210', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (93, N'Pierce', N'Tammy', N'tpierce2k@psu.edu', N'Ntags', N'1-(703)772-3155', N'501 Leroy Parkway', NULL, N'Washington', N'District of Columbia', N'20041', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (94, N'Washington', N'Ronald', N'rwashington2l@drupal.org', N'Livetube', N'1-(202)828-6093', N'6220 Del Sol Alley', NULL, N'Washington', N'District of Columbia', N'20551', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (95, N'Carter', N'Alan', N'acarter2m@simplemachines.org', N'Centizu', N'1-(952)234-1678', N'043 Sunnyside Center', NULL, N'Young America', N'Minnesota', N'55551', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (96, N'Freeman', N'Stephanie', N'sfreeman2n@redcross.org', N'Feednation', N'1-(504)126-8245', N'1120 Veith Parkway', NULL, N'New Orleans', N'Louisiana', N'70165', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (97, N'Price', N'Sara', N'sprice2o@irs.gov', N'Izio', N'1-(415)668-5714', N'96394 Bonner Hill', NULL, N'San Francisco', N'California', N'94116', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (98, N'Parker', N'Emily', N'eparker2p@4shared.com', N'Skalith', N'1-(330)637-4894', N'0 Old Shore Center', NULL, N'Akron', N'Ohio', N'44310', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (99, N'Chavez', N'Jeremy', N'jchavez2q@businessweek.com', N'Topicware', N'1-(515)769-2045', N'8584 Jay Street', NULL, N'Des Moines', N'Iowa', N'50335', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO INSERT [dbo].[customers] ([id], [last_name], [first_name], [email], [company], [phone], [address1], [address2], [city], [state], [postal_code], [country], [password]) VALUES (100, N'Kim', N'Pamela', N'pkim2r@stumbleupon.com', N'Photolist', N'1-(510)144-4318', N'3688 Gerald Trail', NULL, N'Sacramento', N'California', N'95823', N'United States', N'e10adc3949ba59abbe56e057f20f883e') GO SET IDENTITY_INSERT [dbo].[customers] OFF GO SET IDENTITY_INSERT [dbo].[employees] ON GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (201, N'Harris', N'George', N'gharris0@pagesperso-orange.fr', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/modilaboriosammolestiae.bmp?size=50x50&set=set1', N'Administrative Assistant I', N'Toys', NULL, N'1-(210)270-8536', N'2 Bayside Drive', NULL, N'San Antonio', N'Texas', N'78240', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (202, N'Hayes', N'Rachel', N'rhayes1@si.edu', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/seddistinctiodolorem.jpg?size=50x50&set=set1', N'Design Engineer', N'Books', NULL, N'1-(971)797-2729', N'30 Anhalt Street', NULL, N'Portland', N'Oregon', N'97232', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (203, N'Palmer', N'Anthony', N'apalmer2@posterous.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/vitaererumdolore.png?size=50x50&set=set1', N'Health Coach II', N'Toys', NULL, N'1-(702)984-2108', N'02809 4th Pass', NULL, N'North Las Vegas', N'Nevada', N'89036', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (204, N'Alvarez', N'Laura', N'lalvarez3@time.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/nobisplaceatquisquam.jpg?size=50x50&set=set1', N'Computer Systems Analyst II', N'Health', NULL, N'1-(518)328-2658', N'647 Lakeland Road', NULL, N'Albany', N'New York', N'12210', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (205, N'Reynolds', N'Annie', N'areynolds4@nasa.gov', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/praesentiumdoloremrerum.png?size=50x50&set=set1', N'Senior Quality Engineer', N'Kids', NULL, N'1-(775)838-2203', N'163 Carey Street', NULL, N'Reno', N'Nevada', N'89550', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (206, N'Henry', N'Joe', N'jhenry5@bbb.org', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/earumiurevoluptas.jpg?size=50x50&set=set1', N'Chief Design Engineer', N'Electronics', NULL, N'1-(682)563-2229', N'1 Harper Circle', NULL, N'Fort Worth', N'Texas', N'76178', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (207, N'Willis', N'Willie', N'wwillis6@berkeley.edu', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/suntsitnecessitatibus.png?size=50x50&set=set1', N'Structural Analysis Engineer', N'Shoes', NULL, N'1-(317)654-6888', N'641 Kropf Parkway', NULL, N'Indianapolis', N'Indiana', N'46216', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (208, N'Lawrence', N'Keith', N'klawrence7@discovery.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/delenitiomnisconsequatur.jpg?size=50x50&set=set1', N'VP Quality Control', N'Outdoors', NULL, N'1-(501)583-8851', N'2184 Melby Crossing', NULL, N'Little Rock', N'Arkansas', N'72222', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (209, N'Johnston', N'Tina', N'tjohnston8@alexa.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/voluptasautmaiores.png?size=50x50&set=set1', N'Assistant Media Planner', N'Electronics', NULL, N'1-(901)128-9976', N'72 Hauk Road', NULL, N'Memphis', N'Tennessee', N'38114', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (210, N'Burns', N'Lisa', N'lburns9@taobao.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/illumsinttempore.jpg?size=50x50&set=set1', N'Operator', N'Industrial', NULL, N'1-(585)113-8402', N'99 Manufacturers Drive', NULL, N'Rochester', N'New York', N'14624', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (211, N'Stone', N'Howard', N'hstonea@ucsd.edu', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/eautet.bmp?size=50x50&set=set1', N'Account Executive', N'Electronics', NULL, N'1-(202)958-2516', N'03 Anthes Center', NULL, N'Washington', N'District of Columbia', N'20425', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (212, N'Brown', N'Julie', N'jbrownb@squidoo.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/laborumtotameveniet.png?size=50x50&set=set1', N'Analog Circuit Design manager', N'Electronics', NULL, N'1-(217)741-6449', N'37574 4th Drive', NULL, N'Springfield', N'Illinois', N'62705', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (213, N'Turner', N'Edward', N'eturnerc@theatlantic.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/sedutporro.png?size=50x50&set=set1', N'Structural Engineer', N'Computers', NULL, N'1-(701)353-1996', N'3 Bultman Circle', NULL, N'Fargo', N'North Dakota', N'58122', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (214, N'Nichols', N'Douglas', N'dnicholsd@fda.gov', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/blanditiiscommodiet.png?size=50x50&set=set1', N'Editor', N'Outdoors', NULL, N'1-(302)771-6486', N'5150 Holmberg Way', NULL, N'Wilmington', N'Delaware', N'19805', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (215, N'Gilbert', N'Jessica', N'jgilberte@infoseek.co.jp', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/providentaccusamussed.bmp?size=50x50&set=set1', N'Account Executive', N'Baby', NULL, N'1-(320)607-0289', N'32 Summit Park', NULL, N'Saint Cloud', N'Minnesota', N'56372', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (216, N'Hernandez', N'Kathy', N'khernandezf@shinystat.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/utfaciliset.png?size=50x50&set=set1', N'Junior Executive', N'Movies', NULL, N'1-(210)733-3380', N'24 Merrick Way', NULL, N'San Antonio', N'Texas', N'78225', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (217, N'Sullivan', N'Lillian', N'lsullivang@flavors.me', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/quiaetaut.jpg?size=50x50&set=set1', N'Engineer I', N'Sports', NULL, N'1-(904)885-2053', N'42 Manufacturers Pass', NULL, N'Jacksonville', N'Florida', N'32215', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (218, N'Jenkins', N'Frances', N'fjenkinsh@huffingtonpost.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/voluptatemnamaliquam.bmp?size=50x50&set=set1', N'Developer IV', N'Baby', NULL, N'1-(512)764-3809', N'69255 Dakota Plaza', NULL, N'Austin', N'Texas', N'78769', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (219, N'Myers', N'Roger', N'rmyersi@alexa.com', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/consequaturutquo.png?size=50x50&set=set1', N'Account Executive', N'Beauty', NULL, N'1-(480)583-9583', N'3 Eagle Crest Place', NULL, N'Gilbert', N'Arizona', N'85297', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (220, N'Hunter', N'Bonnie', N'bhunterj@ucsd.edu', N'e10adc3949ba59abbe56e057f20f883e', N'https://robohash.org/etfacilisquo.bmp?size=50x50&set=set1', N'Analog Circuit Design manager', N'Baby', NULL, N'1-(320)933-5140', N'99 Arapahoe Terrace', NULL, N'Saint Cloud', N'Minnesota', N'56372', N'United States') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (221, N'a', N'b', N'c', N'd', N'e', N'f', N'g', 1, N'2', N'3', N'4', N'5', N'6', N'7', N'8') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (222, N'a', N'b', N'c', N'a', N'QRCode_NenTangUrl.png', N'e', N'f', 1, N'2', N'3', N'4', N'5', N'6', N'7', N'8') GO INSERT [dbo].[employees] ([id], [last_name], [first_name], [email], [password], [avatar], [job_title], [department], [manager_id], [phone], [address1], [address2], [city], [state], [postal_code], [country]) VALUES (223, N'a', N'b', N'c', N'2', N'201911122038/logo-nentang.jpg', N'a', N's', 1, N'2', N'3', N'4', N'5', N'6', N'7', N'8') GO SET IDENTITY_INSERT [dbo].[employees] OFF GO SET IDENTITY_INSERT [dbo].[order_details] ON GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4001, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(97.3400 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4001, 609, CAST(2.0000 AS Decimal(18, 4)), CAST(58.4600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4002, 604, CAST(3.0000 AS Decimal(18, 4)), CAST(88.9700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4002, 610, CAST(4.0000 AS Decimal(18, 4)), CAST(37.1900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4003, 602, CAST(7.0000 AS Decimal(18, 4)), CAST(87.1500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4003, 609, CAST(8.0000 AS Decimal(18, 4)), CAST(92.8700 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4008, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(57.2000 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4009, 601, CAST(9.0000 AS Decimal(18, 4)), CAST(51.2100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4009, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(62.1600 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4009, 610, CAST(6.0000 AS Decimal(18, 4)), CAST(19.3100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4010, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(32.1800 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4010, 602, CAST(1.0000 AS Decimal(18, 4)), CAST(31.3500 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4010, 603, CAST(10.0000 AS Decimal(18, 4)), CAST(24.2400 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4010, 610, CAST(6.0000 AS Decimal(18, 4)), CAST(9.0900 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4011, 601, CAST(9.0000 AS Decimal(18, 4)), CAST(20.8400 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4011, 604, CAST(10.0000 AS Decimal(18, 4)), CAST(58.2500 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4011, 606, CAST(5.0000 AS Decimal(18, 4)), CAST(73.3400 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4011, 608, CAST(3.0000 AS Decimal(18, 4)), CAST(95.0700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4012, 604, CAST(5.0000 AS Decimal(18, 4)), CAST(19.8200 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4014, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(37.5700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4015, 601, CAST(8.0000 AS Decimal(18, 4)), CAST(69.0300 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4015, 608, CAST(2.0000 AS Decimal(18, 4)), CAST(89.6300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4015, 609, CAST(8.0000 AS Decimal(18, 4)), CAST(95.2700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4017, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(75.8800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4017, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(77.9100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4017, 610, CAST(4.0000 AS Decimal(18, 4)), CAST(26.4300 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4021, 604, CAST(3.0000 AS Decimal(18, 4)), CAST(20.1400 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4022, 604, CAST(7.0000 AS Decimal(18, 4)), CAST(41.6100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4022, 607, CAST(1.0000 AS Decimal(18, 4)), CAST(10.4500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4023, 601, CAST(7.0000 AS Decimal(18, 4)), CAST(89.4000 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4023, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(7.6800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4025, 602, CAST(4.0000 AS Decimal(18, 4)), CAST(14.0700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4025, 608, CAST(6.0000 AS Decimal(18, 4)), CAST(81.2400 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4028, 601, CAST(8.0000 AS Decimal(18, 4)), CAST(74.5600 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4028, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(95.0400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4029, 604, CAST(1.0000 AS Decimal(18, 4)), CAST(11.0600 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4031, 605, CAST(7.0000 AS Decimal(18, 4)), CAST(75.4200 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4033, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(45.5500 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4036, 604, CAST(1.0000 AS Decimal(18, 4)), CAST(46.6300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4036, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(66.7500 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4037, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(44.7600 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2017-03-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4038, 602, CAST(7.0000 AS Decimal(18, 4)), CAST(13.2500 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4039, 609, CAST(1.0000 AS Decimal(18, 4)), CAST(99.6800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4040, 608, CAST(2.0000 AS Decimal(18, 4)), CAST(79.6400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4041, 601, CAST(9.0000 AS Decimal(18, 4)), CAST(42.7900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4043, 609, CAST(8.0000 AS Decimal(18, 4)), CAST(87.9500 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4044, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(47.3000 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4044, 608, CAST(3.0000 AS Decimal(18, 4)), CAST(79.4200 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4045, 603, CAST(3.0000 AS Decimal(18, 4)), CAST(31.0100 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4045, 604, CAST(10.0000 AS Decimal(18, 4)), CAST(43.5400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4045, 608, CAST(7.0000 AS Decimal(18, 4)), CAST(15.2000 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4047, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(81.1100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4047, 606, CAST(8.0000 AS Decimal(18, 4)), CAST(1.5400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4048, 605, CAST(7.0000 AS Decimal(18, 4)), CAST(13.5200 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4049, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(40.9900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4049, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(24.2800 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4049, 609, CAST(10.0000 AS Decimal(18, 4)), CAST(90.4500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4050, 606, CAST(4.0000 AS Decimal(18, 4)), CAST(27.8400 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4050, 607, CAST(2.0000 AS Decimal(18, 4)), CAST(72.7200 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4050, 608, CAST(2.0000 AS Decimal(18, 4)), CAST(76.8500 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4051, 603, CAST(1.0000 AS Decimal(18, 4)), CAST(57.6000 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4052, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(50.7400 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4054, 601, CAST(10.0000 AS Decimal(18, 4)), CAST(55.4800 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4055, 606, CAST(10.0000 AS Decimal(18, 4)), CAST(57.1700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4057, 608, CAST(3.0000 AS Decimal(18, 4)), CAST(68.9900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4057, 609, CAST(1.0000 AS Decimal(18, 4)), CAST(79.3000 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4057, 610, CAST(5.0000 AS Decimal(18, 4)), CAST(41.2100 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4058, 604, CAST(6.0000 AS Decimal(18, 4)), CAST(36.7800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4058, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(79.0100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4060, 603, CAST(10.0000 AS Decimal(18, 4)), CAST(40.3800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4060, 604, CAST(9.0000 AS Decimal(18, 4)), CAST(41.9800 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4061, 605, CAST(1.0000 AS Decimal(18, 4)), CAST(41.1200 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4062, 604, CAST(1.0000 AS Decimal(18, 4)), CAST(71.7700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4063, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(62.8500 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4064, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(68.2700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4065, 610, CAST(5.0000 AS Decimal(18, 4)), CAST(99.7600 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4066, 601, CAST(7.0000 AS Decimal(18, 4)), CAST(25.1400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4066, 604, CAST(9.0000 AS Decimal(18, 4)), CAST(2.6300 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4068, 602, CAST(4.0000 AS Decimal(18, 4)), CAST(12.6700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4068, 603, CAST(1.0000 AS Decimal(18, 4)), CAST(87.8100 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4069, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(89.8500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4070, 601, CAST(5.0000 AS Decimal(18, 4)), CAST(94.0800 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4072, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(89.9500 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4072, 602, CAST(5.0000 AS Decimal(18, 4)), CAST(34.5100 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4074, 606, CAST(10.0000 AS Decimal(18, 4)), CAST(98.2000 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4075, 605, CAST(8.0000 AS Decimal(18, 4)), CAST(69.3600 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4075, 606, CAST(1.0000 AS Decimal(18, 4)), CAST(3.9500 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4077, 601, CAST(9.0000 AS Decimal(18, 4)), CAST(86.2000 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4077, 602, CAST(10.0000 AS Decimal(18, 4)), CAST(90.5800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4077, 609, CAST(1.0000 AS Decimal(18, 4)), CAST(8.2500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4079, 601, CAST(7.0000 AS Decimal(18, 4)), CAST(1.9500 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2017-03-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4080, 608, CAST(5.0000 AS Decimal(18, 4)), CAST(26.8400 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4080, 609, CAST(3.0000 AS Decimal(18, 4)), CAST(41.7600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4081, 604, CAST(9.0000 AS Decimal(18, 4)), CAST(5.4900 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4083, 602, CAST(1.0000 AS Decimal(18, 4)), CAST(44.8500 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4084, 604, CAST(4.0000 AS Decimal(18, 4)), CAST(58.2700 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4085, 605, CAST(8.0000 AS Decimal(18, 4)), CAST(93.5400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4086, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(94.0200 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4087, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(79.3900 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4088, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(14.0300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4090, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(46.1100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4092, 602, CAST(5.0000 AS Decimal(18, 4)), CAST(42.6800 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4093, 601, CAST(8.0000 AS Decimal(18, 4)), CAST(75.2700 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4094, 605, CAST(7.0000 AS Decimal(18, 4)), CAST(91.0500 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4095, 602, CAST(6.0000 AS Decimal(18, 4)), CAST(58.5000 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4095, 604, CAST(3.0000 AS Decimal(18, 4)), CAST(80.1300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4095, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(23.9600 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4096, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(9.8400 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4097, 605, CAST(4.0000 AS Decimal(18, 4)), CAST(45.0300 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4097, 606, CAST(3.0000 AS Decimal(18, 4)), CAST(41.3900 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4098, 607, CAST(8.0000 AS Decimal(18, 4)), CAST(11.8600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4099, 606, CAST(2.0000 AS Decimal(18, 4)), CAST(54.0900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4100, 608, CAST(3.0000 AS Decimal(18, 4)), CAST(6.6200 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4102, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(2.5400 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4102, 609, CAST(9.0000 AS Decimal(18, 4)), CAST(92.5600 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4102, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(26.8100 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4103, 606, CAST(6.0000 AS Decimal(18, 4)), CAST(71.3200 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4103, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(73.9100 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4104, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(33.8500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4105, 601, CAST(5.0000 AS Decimal(18, 4)), CAST(49.1700 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4105, 606, CAST(9.0000 AS Decimal(18, 4)), CAST(93.8000 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4107, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(24.9500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4107, 604, CAST(5.0000 AS Decimal(18, 4)), CAST(43.7500 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4107, 606, CAST(8.0000 AS Decimal(18, 4)), CAST(26.7800 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4107, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(49.0900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4108, 604, CAST(8.0000 AS Decimal(18, 4)), CAST(36.8900 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4108, 609, CAST(1.0000 AS Decimal(18, 4)), CAST(6.4300 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4109, 604, CAST(9.0000 AS Decimal(18, 4)), CAST(89.1900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4109, 609, CAST(2.0000 AS Decimal(18, 4)), CAST(3.7100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4110, 605, CAST(3.0000 AS Decimal(18, 4)), CAST(61.6500 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4110, 606, CAST(2.0000 AS Decimal(18, 4)), CAST(63.6200 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4112, 607, CAST(5.0000 AS Decimal(18, 4)), CAST(63.7000 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4112, 610, CAST(1.0000 AS Decimal(18, 4)), CAST(22.5400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4113, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(22.4900 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4113, 604, CAST(6.0000 AS Decimal(18, 4)), CAST(86.0100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4113, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(7.6000 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4113, 609, CAST(5.0000 AS Decimal(18, 4)), CAST(39.6400 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4114, 610, CAST(6.0000 AS Decimal(18, 4)), CAST(3.7700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4116, 610, CAST(5.0000 AS Decimal(18, 4)), CAST(54.2100 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4117, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(91.8100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4117, 610, CAST(9.0000 AS Decimal(18, 4)), CAST(79.1500 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4118, 601, CAST(8.0000 AS Decimal(18, 4)), CAST(1.5500 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4121, 602, CAST(2.0000 AS Decimal(18, 4)), CAST(7.0900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4122, 606, CAST(5.0000 AS Decimal(18, 4)), CAST(44.9900 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4123, 607, CAST(10.0000 AS Decimal(18, 4)), CAST(4.7800 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4124, 604, CAST(1.0000 AS Decimal(18, 4)), CAST(18.7900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4125, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(59.3700 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4125, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(72.4900 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4126, 601, CAST(10.0000 AS Decimal(18, 4)), CAST(71.7700 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4126, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(13.8300 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4128, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(94.6100 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4128, 606, CAST(3.0000 AS Decimal(18, 4)), CAST(4.6700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4129, 610, CAST(5.0000 AS Decimal(18, 4)), CAST(73.8900 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4130, 608, CAST(6.0000 AS Decimal(18, 4)), CAST(47.4200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4131, 602, CAST(5.0000 AS Decimal(18, 4)), CAST(28.6200 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4132, 602, CAST(7.0000 AS Decimal(18, 4)), CAST(38.8600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4132, 604, CAST(4.0000 AS Decimal(18, 4)), CAST(89.3900 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4132, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(29.9700 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4134, 606, CAST(1.0000 AS Decimal(18, 4)), CAST(73.5700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4134, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(65.6100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4135, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(7.2400 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4135, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(15.9900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4135, 608, CAST(8.0000 AS Decimal(18, 4)), CAST(17.9900 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4135, 609, CAST(6.0000 AS Decimal(18, 4)), CAST(26.5500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4136, 606, CAST(10.0000 AS Decimal(18, 4)), CAST(16.8200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4137, 605, CAST(2.0000 AS Decimal(18, 4)), CAST(39.9600 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4138, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(4.6000 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4139, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(87.7400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4140, 601, CAST(8.0000 AS Decimal(18, 4)), CAST(82.8600 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4140, 603, CAST(10.0000 AS Decimal(18, 4)), CAST(90.3100 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4141, 609, CAST(7.0000 AS Decimal(18, 4)), CAST(20.2800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4142, 607, CAST(5.0000 AS Decimal(18, 4)), CAST(75.6300 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4142, 608, CAST(7.0000 AS Decimal(18, 4)), CAST(55.4700 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4143, 606, CAST(3.0000 AS Decimal(18, 4)), CAST(99.6100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4144, 604, CAST(6.0000 AS Decimal(18, 4)), CAST(80.7500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4145, 603, CAST(3.0000 AS Decimal(18, 4)), CAST(57.9700 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4146, 601, CAST(8.0000 AS Decimal(18, 4)), CAST(69.7000 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4148, 602, CAST(4.0000 AS Decimal(18, 4)), CAST(67.8900 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4152, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(97.8200 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4155, 606, CAST(7.0000 AS Decimal(18, 4)), CAST(42.6200 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4155, 607, CAST(2.0000 AS Decimal(18, 4)), CAST(83.0400 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4155, 610, CAST(6.0000 AS Decimal(18, 4)), CAST(90.5600 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4157, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(93.0900 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4157, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(40.0500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4158, 602, CAST(1.0000 AS Decimal(18, 4)), CAST(17.5000 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4160, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(87.7800 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4160, 610, CAST(8.0000 AS Decimal(18, 4)), CAST(42.6700 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4164, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(80.5600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4165, 604, CAST(8.0000 AS Decimal(18, 4)), CAST(72.6700 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4166, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(34.3600 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4166, 602, CAST(10.0000 AS Decimal(18, 4)), CAST(33.9900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4167, 603, CAST(5.0000 AS Decimal(18, 4)), CAST(58.2000 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4167, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(20.0100 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4168, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(59.4500 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4169, 604, CAST(2.0000 AS Decimal(18, 4)), CAST(93.4300 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4170, 607, CAST(10.0000 AS Decimal(18, 4)), CAST(68.2700 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4171, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(49.3800 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4172, 606, CAST(6.0000 AS Decimal(18, 4)), CAST(88.2600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4172, 609, CAST(7.0000 AS Decimal(18, 4)), CAST(60.9700 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4173, 601, CAST(10.0000 AS Decimal(18, 4)), CAST(11.2200 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4174, 607, CAST(8.0000 AS Decimal(18, 4)), CAST(53.9500 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4174, 608, CAST(2.0000 AS Decimal(18, 4)), CAST(13.5600 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4176, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(70.2400 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4177, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(17.8600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4177, 604, CAST(8.0000 AS Decimal(18, 4)), CAST(18.3900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4178, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(23.5900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4178, 607, CAST(9.0000 AS Decimal(18, 4)), CAST(62.5900 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4180, 602, CAST(7.0000 AS Decimal(18, 4)), CAST(48.1900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4181, 602, CAST(2.0000 AS Decimal(18, 4)), CAST(64.2000 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4181, 603, CAST(3.0000 AS Decimal(18, 4)), CAST(41.4500 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4181, 604, CAST(5.0000 AS Decimal(18, 4)), CAST(86.4200 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4183, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(68.3400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4184, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(95.1800 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4184, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(99.4100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4184, 604, CAST(1.0000 AS Decimal(18, 4)), CAST(29.5200 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4185, 602, CAST(2.0000 AS Decimal(18, 4)), CAST(22.8400 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4185, 607, CAST(9.0000 AS Decimal(18, 4)), CAST(64.9700 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4185, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(85.3200 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4185, 609, CAST(10.0000 AS Decimal(18, 4)), CAST(34.5700 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4186, 605, CAST(2.0000 AS Decimal(18, 4)), CAST(80.0800 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4187, 602, CAST(9.0000 AS Decimal(18, 4)), CAST(87.9200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4187, 606, CAST(3.0000 AS Decimal(18, 4)), CAST(73.3900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4188, 604, CAST(8.0000 AS Decimal(18, 4)), CAST(30.3600 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4188, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(70.9500 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4188, 609, CAST(3.0000 AS Decimal(18, 4)), CAST(23.1800 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4189, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(52.2300 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4190, 601, CAST(6.0000 AS Decimal(18, 4)), CAST(34.2900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4190, 602, CAST(10.0000 AS Decimal(18, 4)), CAST(17.3000 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4192, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(11.6100 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4192, 602, CAST(4.0000 AS Decimal(18, 4)), CAST(90.2900 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4192, 605, CAST(8.0000 AS Decimal(18, 4)), CAST(1.0300 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4197, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(60.3600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4198, 606, CAST(1.0000 AS Decimal(18, 4)), CAST(58.7100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4199, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(12.5900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4199, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(5.5000 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4200, 605, CAST(10.0000 AS Decimal(18, 4)), CAST(92.8100 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4201, 606, CAST(3.0000 AS Decimal(18, 4)), CAST(46.4800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4201, 608, CAST(2.0000 AS Decimal(18, 4)), CAST(97.2900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4202, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(56.7000 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4203, 610, CAST(2.0000 AS Decimal(18, 4)), CAST(29.1200 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4205, 610, CAST(4.0000 AS Decimal(18, 4)), CAST(78.2300 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4206, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(40.4900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4206, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(80.1900 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4207, 604, CAST(9.0000 AS Decimal(18, 4)), CAST(84.4800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4207, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(41.7900 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4207, 610, CAST(5.0000 AS Decimal(18, 4)), CAST(12.3000 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4208, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(37.2600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4208, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(82.6500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4208, 607, CAST(1.0000 AS Decimal(18, 4)), CAST(84.8800 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4208, 609, CAST(1.0000 AS Decimal(18, 4)), CAST(88.0100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4208, 610, CAST(6.0000 AS Decimal(18, 4)), CAST(88.8500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4209, 606, CAST(6.0000 AS Decimal(18, 4)), CAST(46.3100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4210, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(92.1200 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4210, 609, CAST(7.0000 AS Decimal(18, 4)), CAST(70.3700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4214, 608, CAST(3.0000 AS Decimal(18, 4)), CAST(37.4300 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4214, 609, CAST(7.0000 AS Decimal(18, 4)), CAST(84.9900 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4214, 610, CAST(9.0000 AS Decimal(18, 4)), CAST(35.4800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4215, 610, CAST(5.0000 AS Decimal(18, 4)), CAST(4.3500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4216, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(55.1100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4216, 606, CAST(3.0000 AS Decimal(18, 4)), CAST(79.9100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4216, 608, CAST(8.0000 AS Decimal(18, 4)), CAST(45.7500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4217, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(40.6700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4217, 610, CAST(5.0000 AS Decimal(18, 4)), CAST(20.0000 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4218, 601, CAST(7.0000 AS Decimal(18, 4)), CAST(34.1400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4218, 607, CAST(9.0000 AS Decimal(18, 4)), CAST(62.6100 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4219, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(26.6300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4219, 604, CAST(9.0000 AS Decimal(18, 4)), CAST(46.2400 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4219, 607, CAST(1.0000 AS Decimal(18, 4)), CAST(98.5800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4220, 604, CAST(5.0000 AS Decimal(18, 4)), CAST(66.7800 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4220, 609, CAST(6.0000 AS Decimal(18, 4)), CAST(62.8200 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4221, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(8.4400 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4222, 601, CAST(10.0000 AS Decimal(18, 4)), CAST(84.1400 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4222, 604, CAST(9.0000 AS Decimal(18, 4)), CAST(39.1500 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4223, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(58.8500 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4223, 602, CAST(2.0000 AS Decimal(18, 4)), CAST(74.3500 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4225, 605, CAST(7.0000 AS Decimal(18, 4)), CAST(88.0800 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4226, 606, CAST(1.0000 AS Decimal(18, 4)), CAST(84.2200 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4226, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(97.1000 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4227, 606, CAST(9.0000 AS Decimal(18, 4)), CAST(74.3700 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4231, 609, CAST(6.0000 AS Decimal(18, 4)), CAST(36.0500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4232, 601, CAST(8.0000 AS Decimal(18, 4)), CAST(16.9900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4233, 608, CAST(6.0000 AS Decimal(18, 4)), CAST(70.7100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4234, 604, CAST(5.0000 AS Decimal(18, 4)), CAST(15.2600 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4236, 607, CAST(8.0000 AS Decimal(18, 4)), CAST(46.9700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4237, 602, CAST(1.0000 AS Decimal(18, 4)), CAST(27.7900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4238, 602, CAST(3.0000 AS Decimal(18, 4)), CAST(32.5000 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4238, 608, CAST(8.0000 AS Decimal(18, 4)), CAST(88.3000 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4239, 606, CAST(7.0000 AS Decimal(18, 4)), CAST(99.6500 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4240, 606, CAST(10.0000 AS Decimal(18, 4)), CAST(43.6600 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4240, 609, CAST(2.0000 AS Decimal(18, 4)), CAST(56.9500 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4242, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(52.3700 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4243, 604, CAST(2.0000 AS Decimal(18, 4)), CAST(6.3300 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4244, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(67.6200 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4245, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(32.4700 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4246, 603, CAST(10.0000 AS Decimal(18, 4)), CAST(53.9400 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4246, 606, CAST(7.0000 AS Decimal(18, 4)), CAST(6.1600 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4246, 607, CAST(3.0000 AS Decimal(18, 4)), CAST(27.3400 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4246, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(73.0600 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4247, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(66.4100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4247, 605, CAST(2.0000 AS Decimal(18, 4)), CAST(61.2400 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4249, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(74.5200 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4250, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(75.0600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4250, 606, CAST(7.0000 AS Decimal(18, 4)), CAST(63.8900 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4251, 602, CAST(1.0000 AS Decimal(18, 4)), CAST(1.7500 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4251, 604, CAST(8.0000 AS Decimal(18, 4)), CAST(43.9800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4252, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(29.9100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4252, 603, CAST(10.0000 AS Decimal(18, 4)), CAST(41.4600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4252, 606, CAST(4.0000 AS Decimal(18, 4)), CAST(94.2400 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4254, 610, CAST(3.0000 AS Decimal(18, 4)), CAST(5.0100 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4255, 610, CAST(7.0000 AS Decimal(18, 4)), CAST(45.4900 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4256, 604, CAST(9.0000 AS Decimal(18, 4)), CAST(6.7400 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4256, 605, CAST(2.0000 AS Decimal(18, 4)), CAST(31.7100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4256, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(42.0200 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4258, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(69.1200 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4258, 605, CAST(7.0000 AS Decimal(18, 4)), CAST(22.4500 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4258, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(62.3200 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4260, 603, CAST(1.0000 AS Decimal(18, 4)), CAST(27.6800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4260, 604, CAST(3.0000 AS Decimal(18, 4)), CAST(59.6500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4262, 602, CAST(4.0000 AS Decimal(18, 4)), CAST(51.7300 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4263, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(18.4600 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4264, 604, CAST(8.0000 AS Decimal(18, 4)), CAST(82.0200 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4266, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(66.5700 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4267, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(44.7800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4267, 610, CAST(4.0000 AS Decimal(18, 4)), CAST(19.0800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4268, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(24.7200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4271, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(80.4700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4271, 604, CAST(8.0000 AS Decimal(18, 4)), CAST(38.6500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4272, 610, CAST(7.0000 AS Decimal(18, 4)), CAST(66.2800 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4273, 602, CAST(10.0000 AS Decimal(18, 4)), CAST(85.3800 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4275, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(24.0100 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4275, 610, CAST(8.0000 AS Decimal(18, 4)), CAST(1.1200 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4276, 603, CAST(3.0000 AS Decimal(18, 4)), CAST(44.7600 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4277, 610, CAST(9.0000 AS Decimal(18, 4)), CAST(40.0100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4278, 603, CAST(6.0000 AS Decimal(18, 4)), CAST(32.0000 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4278, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(38.0100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4278, 609, CAST(5.0000 AS Decimal(18, 4)), CAST(31.9900 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4280, 606, CAST(5.0000 AS Decimal(18, 4)), CAST(7.5200 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4280, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(37.0900 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4281, 610, CAST(9.0000 AS Decimal(18, 4)), CAST(37.0700 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4282, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(19.1400 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4282, 606, CAST(3.0000 AS Decimal(18, 4)), CAST(88.9400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4282, 609, CAST(6.0000 AS Decimal(18, 4)), CAST(25.3500 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4283, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(14.7800 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4284, 606, CAST(5.0000 AS Decimal(18, 4)), CAST(32.5700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4285, 601, CAST(8.0000 AS Decimal(18, 4)), CAST(9.2800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4285, 604, CAST(5.0000 AS Decimal(18, 4)), CAST(47.8800 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4286, 609, CAST(5.0000 AS Decimal(18, 4)), CAST(63.2400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4287, 602, CAST(6.0000 AS Decimal(18, 4)), CAST(2.9000 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4287, 604, CAST(3.0000 AS Decimal(18, 4)), CAST(34.4000 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2017-03-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4287, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(7.6300 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4287, 609, CAST(1.0000 AS Decimal(18, 4)), CAST(8.9800 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4288, 604, CAST(6.0000 AS Decimal(18, 4)), CAST(57.6700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4289, 601, CAST(7.0000 AS Decimal(18, 4)), CAST(19.3200 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4289, 605, CAST(10.0000 AS Decimal(18, 4)), CAST(89.1600 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4291, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(68.5000 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4291, 603, CAST(5.0000 AS Decimal(18, 4)), CAST(11.2700 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4291, 606, CAST(1.0000 AS Decimal(18, 4)), CAST(76.8200 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4292, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(27.4500 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4292, 610, CAST(9.0000 AS Decimal(18, 4)), CAST(16.7800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4293, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(69.2100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4294, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(81.5000 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4297, 604, CAST(4.0000 AS Decimal(18, 4)), CAST(19.2100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4297, 606, CAST(4.0000 AS Decimal(18, 4)), CAST(71.2400 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4299, 603, CAST(8.0000 AS Decimal(18, 4)), CAST(81.7000 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4300, 601, CAST(5.0000 AS Decimal(18, 4)), CAST(35.5100 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4300, 607, CAST(5.0000 AS Decimal(18, 4)), CAST(46.9400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4301, 604, CAST(7.0000 AS Decimal(18, 4)), CAST(96.6700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4301, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(99.3200 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4303, 605, CAST(8.0000 AS Decimal(18, 4)), CAST(31.9200 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4305, 602, CAST(9.0000 AS Decimal(18, 4)), CAST(31.5800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4305, 606, CAST(1.0000 AS Decimal(18, 4)), CAST(2.5300 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4305, 609, CAST(1.0000 AS Decimal(18, 4)), CAST(76.4100 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4307, 601, CAST(7.0000 AS Decimal(18, 4)), CAST(36.6300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4307, 606, CAST(10.0000 AS Decimal(18, 4)), CAST(56.4700 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4309, 606, CAST(6.0000 AS Decimal(18, 4)), CAST(84.2500 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4310, 605, CAST(7.0000 AS Decimal(18, 4)), CAST(15.8800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4311, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(67.2600 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4312, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(87.5000 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4313, 602, CAST(3.0000 AS Decimal(18, 4)), CAST(87.0100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4313, 610, CAST(7.0000 AS Decimal(18, 4)), CAST(54.9200 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4314, 602, CAST(9.0000 AS Decimal(18, 4)), CAST(49.1900 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4314, 607, CAST(10.0000 AS Decimal(18, 4)), CAST(32.1900 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4315, 602, CAST(7.0000 AS Decimal(18, 4)), CAST(9.2500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4318, 607, CAST(5.0000 AS Decimal(18, 4)), CAST(81.6300 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4318, 609, CAST(5.0000 AS Decimal(18, 4)), CAST(29.1700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4318, 610, CAST(4.0000 AS Decimal(18, 4)), CAST(41.7500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4322, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(21.0900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4323, 608, CAST(8.0000 AS Decimal(18, 4)), CAST(24.0500 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4324, 607, CAST(7.0000 AS Decimal(18, 4)), CAST(83.2300 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4325, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(35.2800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4326, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(69.1800 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4326, 610, CAST(2.0000 AS Decimal(18, 4)), CAST(24.4400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4327, 608, CAST(3.0000 AS Decimal(18, 4)), CAST(22.5700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4328, 604, CAST(1.0000 AS Decimal(18, 4)), CAST(55.5300 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4328, 605, CAST(2.0000 AS Decimal(18, 4)), CAST(38.7800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4328, 607, CAST(5.0000 AS Decimal(18, 4)), CAST(28.9400 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4329, 603, CAST(6.0000 AS Decimal(18, 4)), CAST(65.9300 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4331, 602, CAST(5.0000 AS Decimal(18, 4)), CAST(37.3700 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4332, 606, CAST(5.0000 AS Decimal(18, 4)), CAST(93.9600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4332, 610, CAST(5.0000 AS Decimal(18, 4)), CAST(3.7700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4333, 608, CAST(7.0000 AS Decimal(18, 4)), CAST(14.2900 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4335, 609, CAST(6.0000 AS Decimal(18, 4)), CAST(63.1500 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4337, 610, CAST(1.0000 AS Decimal(18, 4)), CAST(52.9800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4338, 610, CAST(1.0000 AS Decimal(18, 4)), CAST(83.9400 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4339, 604, CAST(10.0000 AS Decimal(18, 4)), CAST(78.0600 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4341, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(9.4400 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4341, 609, CAST(6.0000 AS Decimal(18, 4)), CAST(52.0400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4342, 601, CAST(6.0000 AS Decimal(18, 4)), CAST(67.4100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4344, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(61.5300 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4348, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(96.4200 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4348, 609, CAST(6.0000 AS Decimal(18, 4)), CAST(38.5900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4348, 610, CAST(3.0000 AS Decimal(18, 4)), CAST(38.0000 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4350, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(81.7200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4350, 604, CAST(6.0000 AS Decimal(18, 4)), CAST(95.3100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4350, 608, CAST(9.0000 AS Decimal(18, 4)), CAST(43.5700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4351, 602, CAST(1.0000 AS Decimal(18, 4)), CAST(37.6300 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4351, 607, CAST(9.0000 AS Decimal(18, 4)), CAST(83.2200 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4352, 602, CAST(3.0000 AS Decimal(18, 4)), CAST(13.0900 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4352, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(88.5800 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2017-03-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4352, 604, CAST(4.0000 AS Decimal(18, 4)), CAST(47.6200 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4353, 608, CAST(9.0000 AS Decimal(18, 4)), CAST(28.8000 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4355, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(20.2500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4355, 608, CAST(9.0000 AS Decimal(18, 4)), CAST(73.3000 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4355, 609, CAST(7.0000 AS Decimal(18, 4)), CAST(26.1600 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4356, 604, CAST(8.0000 AS Decimal(18, 4)), CAST(93.9700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4357, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(24.3900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4357, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(71.2800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4361, 601, CAST(6.0000 AS Decimal(18, 4)), CAST(45.2700 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4361, 609, CAST(10.0000 AS Decimal(18, 4)), CAST(39.7500 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4362, 603, CAST(4.0000 AS Decimal(18, 4)), CAST(42.9200 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4364, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(90.0100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4365, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(92.9600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4365, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(86.6700 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4366, 604, CAST(6.0000 AS Decimal(18, 4)), CAST(52.0100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4366, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(88.2100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4366, 609, CAST(8.0000 AS Decimal(18, 4)), CAST(80.7800 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4368, 604, CAST(4.0000 AS Decimal(18, 4)), CAST(53.4600 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4369, 608, CAST(2.0000 AS Decimal(18, 4)), CAST(8.5000 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4370, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(46.2200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4370, 604, CAST(10.0000 AS Decimal(18, 4)), CAST(10.3800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4371, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(23.3300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4374, 604, CAST(3.0000 AS Decimal(18, 4)), CAST(29.5100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4376, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(5.5500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4377, 602, CAST(9.0000 AS Decimal(18, 4)), CAST(91.6200 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4378, 603, CAST(8.0000 AS Decimal(18, 4)), CAST(74.8300 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4379, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(53.7000 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4381, 607, CAST(1.0000 AS Decimal(18, 4)), CAST(35.5400 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4382, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(33.6400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4382, 606, CAST(4.0000 AS Decimal(18, 4)), CAST(68.1700 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4385, 609, CAST(1.0000 AS Decimal(18, 4)), CAST(18.1300 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4387, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(86.0600 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4387, 606, CAST(8.0000 AS Decimal(18, 4)), CAST(87.3100 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4387, 610, CAST(3.0000 AS Decimal(18, 4)), CAST(47.5500 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4388, 602, CAST(4.0000 AS Decimal(18, 4)), CAST(5.8600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4388, 603, CAST(8.0000 AS Decimal(18, 4)), CAST(24.2500 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4388, 606, CAST(6.0000 AS Decimal(18, 4)), CAST(29.4600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4388, 607, CAST(1.0000 AS Decimal(18, 4)), CAST(36.7600 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4389, 602, CAST(1.0000 AS Decimal(18, 4)), CAST(94.2300 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4389, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(40.1500 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4390, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(7.0200 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4391, 607, CAST(1.0000 AS Decimal(18, 4)), CAST(48.4100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4392, 603, CAST(8.0000 AS Decimal(18, 4)), CAST(74.9100 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4393, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(55.8300 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4395, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(26.0500 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4395, 610, CAST(7.0000 AS Decimal(18, 4)), CAST(82.7300 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4396, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(66.1900 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4396, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(3.1500 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4397, 609, CAST(9.0000 AS Decimal(18, 4)), CAST(78.5200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4399, 610, CAST(7.0000 AS Decimal(18, 4)), CAST(85.0300 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4400, 602, CAST(9.0000 AS Decimal(18, 4)), CAST(36.8500 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4400, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(15.9000 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4401, 602, CAST(1.0000 AS Decimal(18, 4)), CAST(91.0100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4401, 604, CAST(10.0000 AS Decimal(18, 4)), CAST(98.7000 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4405, 604, CAST(3.0000 AS Decimal(18, 4)), CAST(46.9900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4405, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(4.9400 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4406, 602, CAST(7.0000 AS Decimal(18, 4)), CAST(25.8400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4406, 606, CAST(2.0000 AS Decimal(18, 4)), CAST(96.4300 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4406, 607, CAST(10.0000 AS Decimal(18, 4)), CAST(14.9100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4407, 606, CAST(9.0000 AS Decimal(18, 4)), CAST(20.8200 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4407, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(29.1900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4408, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(89.7700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4408, 605, CAST(4.0000 AS Decimal(18, 4)), CAST(12.8300 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4408, 609, CAST(3.0000 AS Decimal(18, 4)), CAST(36.4400 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4409, 602, CAST(2.0000 AS Decimal(18, 4)), CAST(36.9600 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4409, 609, CAST(7.0000 AS Decimal(18, 4)), CAST(94.9800 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4410, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(13.7900 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4410, 604, CAST(10.0000 AS Decimal(18, 4)), CAST(70.2400 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4410, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(26.3900 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4411, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(10.4300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4411, 602, CAST(7.0000 AS Decimal(18, 4)), CAST(3.4700 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4412, 605, CAST(10.0000 AS Decimal(18, 4)), CAST(26.0700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4412, 607, CAST(7.0000 AS Decimal(18, 4)), CAST(76.8100 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4412, 610, CAST(3.0000 AS Decimal(18, 4)), CAST(98.7700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4414, 606, CAST(5.0000 AS Decimal(18, 4)), CAST(26.0100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4415, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(74.8600 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4417, 601, CAST(6.0000 AS Decimal(18, 4)), CAST(66.3800 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4417, 604, CAST(7.0000 AS Decimal(18, 4)), CAST(96.9900 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4418, 609, CAST(8.0000 AS Decimal(18, 4)), CAST(59.8800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4419, 604, CAST(4.0000 AS Decimal(18, 4)), CAST(54.0400 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4421, 605, CAST(2.0000 AS Decimal(18, 4)), CAST(96.3400 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4423, 602, CAST(3.0000 AS Decimal(18, 4)), CAST(25.8800 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4423, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(4.0600 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4423, 608, CAST(9.0000 AS Decimal(18, 4)), CAST(20.4000 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4424, 605, CAST(8.0000 AS Decimal(18, 4)), CAST(44.6600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4425, 607, CAST(7.0000 AS Decimal(18, 4)), CAST(18.9100 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4425, 608, CAST(4.0000 AS Decimal(18, 4)), CAST(60.1100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4426, 606, CAST(8.0000 AS Decimal(18, 4)), CAST(44.9800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4426, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(78.4600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4427, 604, CAST(2.0000 AS Decimal(18, 4)), CAST(61.9100 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4427, 607, CAST(10.0000 AS Decimal(18, 4)), CAST(53.8200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4428, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(81.1500 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4428, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(48.3800 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4429, 606, CAST(10.0000 AS Decimal(18, 4)), CAST(28.8000 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4432, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(52.1200 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4433, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(34.0900 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4433, 605, CAST(1.0000 AS Decimal(18, 4)), CAST(65.0400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4434, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(61.2800 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4435, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(9.1900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4437, 601, CAST(7.0000 AS Decimal(18, 4)), CAST(56.4800 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4437, 602, CAST(1.0000 AS Decimal(18, 4)), CAST(98.7100 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2017-03-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4437, 609, CAST(7.0000 AS Decimal(18, 4)), CAST(12.6900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4438, 604, CAST(1.0000 AS Decimal(18, 4)), CAST(97.2400 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4439, 601, CAST(5.0000 AS Decimal(18, 4)), CAST(11.4600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4440, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(66.0500 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4441, 602, CAST(4.0000 AS Decimal(18, 4)), CAST(79.4900 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4441, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(88.8600 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4442, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(55.6600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4444, 602, CAST(4.0000 AS Decimal(18, 4)), CAST(52.6000 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4444, 605, CAST(8.0000 AS Decimal(18, 4)), CAST(81.6300 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4446, 602, CAST(3.0000 AS Decimal(18, 4)), CAST(76.2800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4446, 606, CAST(5.0000 AS Decimal(18, 4)), CAST(18.5200 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4447, 609, CAST(9.0000 AS Decimal(18, 4)), CAST(54.6100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4448, 605, CAST(2.0000 AS Decimal(18, 4)), CAST(69.7100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4449, 607, CAST(10.0000 AS Decimal(18, 4)), CAST(86.9700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4449, 608, CAST(6.0000 AS Decimal(18, 4)), CAST(35.6200 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4450, 607, CAST(8.0000 AS Decimal(18, 4)), CAST(26.1400 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4451, 604, CAST(3.0000 AS Decimal(18, 4)), CAST(47.4800 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4453, 606, CAST(2.0000 AS Decimal(18, 4)), CAST(4.0300 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4454, 607, CAST(7.0000 AS Decimal(18, 4)), CAST(55.9200 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4455, 602, CAST(10.0000 AS Decimal(18, 4)), CAST(50.3000 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4455, 603, CAST(1.0000 AS Decimal(18, 4)), CAST(7.6800 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4455, 605, CAST(1.0000 AS Decimal(18, 4)), CAST(98.2300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4456, 607, CAST(8.0000 AS Decimal(18, 4)), CAST(54.8300 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4456, 608, CAST(7.0000 AS Decimal(18, 4)), CAST(97.3400 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4460, 602, CAST(8.0000 AS Decimal(18, 4)), CAST(37.9500 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4461, 608, CAST(6.0000 AS Decimal(18, 4)), CAST(73.7700 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4464, 606, CAST(1.0000 AS Decimal(18, 4)), CAST(31.6000 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4466, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(37.7900 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4468, 610, CAST(3.0000 AS Decimal(18, 4)), CAST(80.7700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4469, 602, CAST(3.0000 AS Decimal(18, 4)), CAST(19.9900 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4469, 608, CAST(3.0000 AS Decimal(18, 4)), CAST(73.2100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4470, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(7.7000 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4473, 609, CAST(2.0000 AS Decimal(18, 4)), CAST(97.6000 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4474, 609, CAST(7.0000 AS Decimal(18, 4)), CAST(12.5000 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4475, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(44.4200 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4476, 603, CAST(4.0000 AS Decimal(18, 4)), CAST(43.4700 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4477, 603, CAST(4.0000 AS Decimal(18, 4)), CAST(24.9900 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4478, 606, CAST(1.0000 AS Decimal(18, 4)), CAST(29.1300 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2017-03-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4478, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(58.0500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4479, 603, CAST(10.0000 AS Decimal(18, 4)), CAST(93.2000 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4479, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(70.3600 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4479, 610, CAST(6.0000 AS Decimal(18, 4)), CAST(49.4800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4480, 608, CAST(9.0000 AS Decimal(18, 4)), CAST(11.0300 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4482, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(12.4800 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4482, 603, CAST(10.0000 AS Decimal(18, 4)), CAST(28.9200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4482, 604, CAST(10.0000 AS Decimal(18, 4)), CAST(55.9300 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4482, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(90.1100 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4482, 608, CAST(1.0000 AS Decimal(18, 4)), CAST(33.9000 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4482, 610, CAST(4.0000 AS Decimal(18, 4)), CAST(7.1200 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4485, 605, CAST(7.0000 AS Decimal(18, 4)), CAST(99.9200 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4486, 601, CAST(7.0000 AS Decimal(18, 4)), CAST(4.3900 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4487, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(72.1600 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4487, 602, CAST(9.0000 AS Decimal(18, 4)), CAST(69.7800 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4487, 607, CAST(5.0000 AS Decimal(18, 4)), CAST(24.9200 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4488, 601, CAST(9.0000 AS Decimal(18, 4)), CAST(64.2900 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4488, 609, CAST(10.0000 AS Decimal(18, 4)), CAST(66.7900 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4491, 602, CAST(3.0000 AS Decimal(18, 4)), CAST(16.8000 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4492, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(99.5900 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2017-03-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4495, 607, CAST(7.0000 AS Decimal(18, 4)), CAST(86.0500 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4496, 603, CAST(10.0000 AS Decimal(18, 4)), CAST(55.1200 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4497, 607, CAST(7.0000 AS Decimal(18, 4)), CAST(27.3000 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4498, 604, CAST(10.0000 AS Decimal(18, 4)), CAST(89.5800 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4498, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(69.3200 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4499, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(56.5800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4501, 606, CAST(10.0000 AS Decimal(18, 4)), CAST(54.4100 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4502, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(27.2100 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4502, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(39.9300 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4503, 601, CAST(6.0000 AS Decimal(18, 4)), CAST(85.1000 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4505, 608, CAST(3.0000 AS Decimal(18, 4)), CAST(10.9900 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4506, 602, CAST(7.0000 AS Decimal(18, 4)), CAST(88.0300 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4506, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(66.7800 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4506, 606, CAST(10.0000 AS Decimal(18, 4)), CAST(85.3700 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4506, 609, CAST(9.0000 AS Decimal(18, 4)), CAST(84.3000 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4509, 608, CAST(8.0000 AS Decimal(18, 4)), CAST(2.4100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-30T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4509, 609, CAST(2.0000 AS Decimal(18, 4)), CAST(99.2400 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4511, 601, CAST(4.0000 AS Decimal(18, 4)), CAST(7.2900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4511, 606, CAST(5.0000 AS Decimal(18, 4)), CAST(26.1600 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4511, 610, CAST(3.0000 AS Decimal(18, 4)), CAST(73.4800 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4514, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(86.1700 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4514, 610, CAST(6.0000 AS Decimal(18, 4)), CAST(71.5100 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4517, 604, CAST(10.0000 AS Decimal(18, 4)), CAST(55.7600 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4517, 609, CAST(2.0000 AS Decimal(18, 4)), CAST(1.0900 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4519, 609, CAST(9.0000 AS Decimal(18, 4)), CAST(61.3900 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4520, 609, CAST(9.0000 AS Decimal(18, 4)), CAST(72.6100 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-10-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4521, 605, CAST(8.0000 AS Decimal(18, 4)), CAST(54.3500 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-31T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4521, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(19.3800 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4522, 602, CAST(9.0000 AS Decimal(18, 4)), CAST(68.9800 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4523, 606, CAST(9.0000 AS Decimal(18, 4)), CAST(79.8600 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4524, 602, CAST(9.0000 AS Decimal(18, 4)), CAST(91.5800 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2017-03-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4526, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(56.5600 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4526, 604, CAST(4.0000 AS Decimal(18, 4)), CAST(80.6700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4526, 610, CAST(5.0000 AS Decimal(18, 4)), CAST(88.8000 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2017-02-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4528, 605, CAST(4.0000 AS Decimal(18, 4)), CAST(73.6400 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-01-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4528, 609, CAST(4.0000 AS Decimal(18, 4)), CAST(64.5600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4530, 602, CAST(9.0000 AS Decimal(18, 4)), CAST(70.9700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4531, 601, CAST(5.0000 AS Decimal(18, 4)), CAST(79.0500 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4531, 606, CAST(10.0000 AS Decimal(18, 4)), CAST(26.5300 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4531, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(36.1400 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-26T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4532, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(6.2800 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4532, 610, CAST(8.0000 AS Decimal(18, 4)), CAST(17.2500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4534, 606, CAST(8.0000 AS Decimal(18, 4)), CAST(60.9500 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4534, 607, CAST(10.0000 AS Decimal(18, 4)), CAST(49.8400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4535, 607, CAST(3.0000 AS Decimal(18, 4)), CAST(88.0000 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4535, 610, CAST(6.0000 AS Decimal(18, 4)), CAST(17.6700 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2017-03-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4536, 605, CAST(5.0000 AS Decimal(18, 4)), CAST(88.0800 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4537, 609, CAST(2.0000 AS Decimal(18, 4)), CAST(14.7700 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-03-25T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4538, 603, CAST(6.0000 AS Decimal(18, 4)), CAST(3.5100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-21T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4539, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(6.5800 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4541, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(83.6200 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4541, 603, CAST(5.0000 AS Decimal(18, 4)), CAST(37.4700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4541, 607, CAST(4.0000 AS Decimal(18, 4)), CAST(35.1700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4542, 605, CAST(10.0000 AS Decimal(18, 4)), CAST(92.4300 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4547, 606, CAST(4.0000 AS Decimal(18, 4)), CAST(81.8100 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4549, 605, CAST(9.0000 AS Decimal(18, 4)), CAST(24.1200 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-08-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4549, 606, CAST(7.0000 AS Decimal(18, 4)), CAST(6.1900 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-09-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4550, 609, CAST(8.0000 AS Decimal(18, 4)), CAST(49.0400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-10T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4550, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(92.5100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-02-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4551, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(85.1000 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4551, 602, CAST(3.0000 AS Decimal(18, 4)), CAST(69.4300 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-03-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4551, 610, CAST(1.0000 AS Decimal(18, 4)), CAST(19.3800 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4552, 601, CAST(2.0000 AS Decimal(18, 4)), CAST(91.6900 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4552, 603, CAST(3.0000 AS Decimal(18, 4)), CAST(41.1500 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4553, 603, CAST(1.0000 AS Decimal(18, 4)), CAST(5.2200 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-10-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4555, 607, CAST(6.0000 AS Decimal(18, 4)), CAST(77.1600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-29T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4555, 608, CAST(9.0000 AS Decimal(18, 4)), CAST(81.3100 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2017-01-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4556, 601, CAST(10.0000 AS Decimal(18, 4)), CAST(65.8100 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-07T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4557, 603, CAST(1.0000 AS Decimal(18, 4)), CAST(5.0100 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-05T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4557, 606, CAST(3.0000 AS Decimal(18, 4)), CAST(29.3500 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4558, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(29.6200 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4559, 605, CAST(2.0000 AS Decimal(18, 4)), CAST(87.8300 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-09T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4560, 610, CAST(7.0000 AS Decimal(18, 4)), CAST(9.5100 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-08-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4562, 609, CAST(3.0000 AS Decimal(18, 4)), CAST(71.0900 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-12T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4562, 610, CAST(9.0000 AS Decimal(18, 4)), CAST(15.1000 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-08-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4564, 602, CAST(2.0000 AS Decimal(18, 4)), CAST(6.6800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-03-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4565, 603, CAST(7.0000 AS Decimal(18, 4)), CAST(81.0100 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-03-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4565, 606, CAST(8.0000 AS Decimal(18, 4)), CAST(99.6800 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4566, 601, CAST(7.0000 AS Decimal(18, 4)), CAST(57.7900 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4567, 604, CAST(7.0000 AS Decimal(18, 4)), CAST(94.4200 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4567, 605, CAST(1.0000 AS Decimal(18, 4)), CAST(61.7500 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-14T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4567, 606, CAST(9.0000 AS Decimal(18, 4)), CAST(62.1700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4567, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(25.9900 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4568, 606, CAST(8.0000 AS Decimal(18, 4)), CAST(66.9200 AS Decimal(19, 4)), CAST(1 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-10-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4568, 607, CAST(10.0000 AS Decimal(18, 4)), CAST(95.6000 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4568, 608, CAST(6.0000 AS Decimal(18, 4)), CAST(81.5700 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-24T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4569, 601, CAST(10.0000 AS Decimal(18, 4)), CAST(96.5600 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4570, 610, CAST(6.0000 AS Decimal(18, 4)), CAST(98.1500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-06-28T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4571, 604, CAST(8.0000 AS Decimal(18, 4)), CAST(5.1500 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4572, 603, CAST(2.0000 AS Decimal(18, 4)), CAST(59.2100 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-11-18T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4574, 601, CAST(3.0000 AS Decimal(18, 4)), CAST(14.8100 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2016-05-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4575, 608, CAST(10.0000 AS Decimal(18, 4)), CAST(79.2500 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-11-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4576, 607, CAST(7.0000 AS Decimal(18, 4)), CAST(31.7800 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4577, 604, CAST(5.0000 AS Decimal(18, 4)), CAST(92.5400 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4579, 601, CAST(10.0000 AS Decimal(18, 4)), CAST(70.1900 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-09-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4580, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(15.4400 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-04-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4581, 606, CAST(5.0000 AS Decimal(18, 4)), CAST(50.5600 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-06T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4581, 607, CAST(8.0000 AS Decimal(18, 4)), CAST(42.4000 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4581, 609, CAST(5.0000 AS Decimal(18, 4)), CAST(78.0100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-03-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4581, 610, CAST(9.0000 AS Decimal(18, 4)), CAST(79.7300 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-20T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4582, 609, CAST(7.0000 AS Decimal(18, 4)), CAST(65.9900 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4583, 604, CAST(9.0000 AS Decimal(18, 4)), CAST(19.9200 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-04-13T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4583, 610, CAST(1.0000 AS Decimal(18, 4)), CAST(19.4000 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-08T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4585, 602, CAST(2.0000 AS Decimal(18, 4)), CAST(90.5700 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-05-22T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4585, 610, CAST(10.0000 AS Decimal(18, 4)), CAST(44.2600 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4586, 602, CAST(7.0000 AS Decimal(18, 4)), CAST(24.2400 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-04T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4586, 604, CAST(2.0000 AS Decimal(18, 4)), CAST(56.6100 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4589, 601, CAST(5.0000 AS Decimal(18, 4)), CAST(52.2500 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-07-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4589, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(72.2700 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-04-03T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4590, 601, CAST(5.0000 AS Decimal(18, 4)), CAST(52.0000 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'On Order', CAST(N'2016-06-01T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4590, 610, CAST(3.0000 AS Decimal(18, 4)), CAST(46.2000 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-12-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4591, 601, CAST(1.0000 AS Decimal(18, 4)), CAST(96.5200 AS Decimal(19, 4)), CAST(2 AS Decimal(18, 0)), N'No Stock', CAST(N'2017-01-16T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4591, 605, CAST(8.0000 AS Decimal(18, 4)), CAST(19.5600 AS Decimal(19, 4)), CAST(10 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-15T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4592, 607, CAST(1.0000 AS Decimal(18, 4)), CAST(48.4700 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'On Order', CAST(N'2016-07-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4592, 609, CAST(10.0000 AS Decimal(18, 4)), CAST(30.7600 AS Decimal(19, 4)), CAST(3 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-05-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4595, 605, CAST(1.0000 AS Decimal(18, 4)), CAST(50.2800 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'Allocated', CAST(N'2017-02-19T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4596, 605, CAST(6.0000 AS Decimal(18, 4)), CAST(95.1700 AS Decimal(19, 4)), CAST(8 AS Decimal(18, 0)), N'On Order', CAST(N'2016-09-11T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4596, 609, CAST(10.0000 AS Decimal(18, 4)), CAST(82.1100 AS Decimal(19, 4)), CAST(4 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-11-17T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4597, 608, CAST(9.0000 AS Decimal(18, 4)), CAST(96.2500 AS Decimal(19, 4)), CAST(5 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-07-02T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4598, 603, CAST(5.0000 AS Decimal(18, 4)), CAST(69.0200 AS Decimal(19, 4)), CAST(6 AS Decimal(18, 0)), N'No Stock', CAST(N'2016-12-23T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4599, 603, CAST(9.0000 AS Decimal(18, 4)), CAST(40.9100 AS Decimal(19, 4)), CAST(7 AS Decimal(18, 0)), N'On Order', CAST(N'2016-12-27T00:00:00.000' AS DateTime)) GO INSERT [dbo].[order_details] ([order_id], [product_id], [quantity], [unit_price], [discount], [order_detail_status], [date_allocated]) VALUES (4600, 609, CAST(5.0000 AS Decimal(18, 4)), CAST(22.9300 AS Decimal(19, 4)), CAST(9 AS Decimal(18, 0)), N'Allocated', CAST(N'2016-06-16T00:00:00.000' AS DateTime)) GO SET IDENTITY_INSERT [dbo].[order_details] OFF GO SET IDENTITY_INSERT [dbo].[orders] ON GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4001, 204, 40, CAST(N'2016-04-05T00:00:00.000' AS DateTime), CAST(N'2016-11-06T00:00:00.000' AS DateTime), N'Jean Fuller', N'93 Spohn Place', NULL, N'Manggekompo', NULL, NULL, N'Indonesia', CAST(8.1400 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-12T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4002, 204, 95, CAST(N'2017-01-29T00:00:00.000' AS DateTime), CAST(N'2016-05-28T00:00:00.000' AS DateTime), N'Diane Holmes', N'46 Eliot Trail', NULL, N'Virginia Beach', N'Virginia', N'23459', N'United States', CAST(1.5500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-27T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4003, 218, 54, CAST(N'2016-08-19T00:00:00.000' AS DateTime), CAST(N'2016-12-08T00:00:00.000' AS DateTime), N'Jerry Frazier', N'23 Sundown Junction', NULL, N'Obodivka', NULL, NULL, N'Ukraine', CAST(2.2900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-27T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4004, 204, 69, CAST(N'2016-09-25T00:00:00.000' AS DateTime), CAST(N'2016-12-24T00:00:00.000' AS DateTime), N'Denise Freeman', N'4909 Beilfuss Hill', NULL, N'Nova Venécia', NULL, N'29830-000', N'Brazil', CAST(4.7700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-04T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4005, 215, 10, CAST(N'2017-03-14T00:00:00.000' AS DateTime), CAST(N'2016-03-19T00:00:00.000' AS DateTime), N'Jonathan Gordon', N'7 Ludington Court', NULL, N'Sukamaju', NULL, NULL, N'Indonesia', CAST(8.7800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-03-22T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4006, 211, 23, CAST(N'2016-08-14T00:00:00.000' AS DateTime), CAST(N'2016-12-05T00:00:00.000' AS DateTime), N'Sean Carter', N'859 Dahle Plaza', NULL, N'Dayou', NULL, NULL, N'China', CAST(9.4300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-21T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4007, 204, 92, CAST(N'2017-01-02T00:00:00.000' AS DateTime), CAST(N'2016-07-09T00:00:00.000' AS DateTime), N'Alice Warren', N'5 Fuller Center', NULL, N'Log pri Brezovici', NULL, N'1358', N'Slovenia', CAST(3.2500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-03-24T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4008, 205, 20, CAST(N'2016-05-15T00:00:00.000' AS DateTime), CAST(N'2016-09-12T00:00:00.000' AS DateTime), N'Andrea Hamilton', N'99 Blue Bill Park Junction', NULL, N'Liangshui', NULL, NULL, N'China', CAST(7.0400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-02T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4009, 219, 58, CAST(N'2016-11-27T00:00:00.000' AS DateTime), CAST(N'2017-03-02T00:00:00.000' AS DateTime), N'Wanda Hill', N'907 Sundown Court', NULL, N'Pedra Azul', NULL, N'39970-000', N'Brazil', CAST(4.3500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-27T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4010, 218, 57, CAST(N'2016-09-11T00:00:00.000' AS DateTime), CAST(N'2017-02-26T00:00:00.000' AS DateTime), N'Carolyn Foster', N'0 Charing Cross Court', NULL, N'Chicago', N'Illinois', N'60609', N'United States', CAST(1.2300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-09T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4011, 207, 3, CAST(N'2017-03-01T00:00:00.000' AS DateTime), CAST(N'2016-08-04T00:00:00.000' AS DateTime), N'Timothy Warren', N'19 John Wall Parkway', NULL, N'Lyon', N'Rhône-Alpes', N'69362 CEDEX 07', N'France', CAST(9.5700 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-08T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4012, 210, 59, CAST(N'2016-12-31T00:00:00.000' AS DateTime), CAST(N'2016-08-08T00:00:00.000' AS DateTime), N'Kathleen Marshall', N'2 Swallow Circle', NULL, N'Cunliji', NULL, NULL, N'China', CAST(9.0300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-23T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4013, 204, 57, CAST(N'2017-01-11T00:00:00.000' AS DateTime), CAST(N'2017-02-13T00:00:00.000' AS DateTime), N'Jane Ortiz', N'1136 Kedzie Alley', NULL, N'Eirado', N'Viana do Castelo', N'4990-540', N'Portugal', CAST(8.9000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-26T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4014, 212, 26, CAST(N'2016-09-23T00:00:00.000' AS DateTime), CAST(N'2016-05-13T00:00:00.000' AS DateTime), N'Carolyn Martinez', N'954 Kropf Court', NULL, N'Ibitinga', NULL, N'14940-000', N'Brazil', CAST(4.5700 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-11T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4015, 201, 86, CAST(N'2016-11-04T00:00:00.000' AS DateTime), CAST(N'2016-10-03T00:00:00.000' AS DateTime), N'Debra Willis', N'89 Grasskamp Road', NULL, N'San Francisco', NULL, N'8501', N'Philippines', CAST(3.5300 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-05T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4016, 208, 17, CAST(N'2016-04-17T00:00:00.000' AS DateTime), CAST(N'2016-03-22T00:00:00.000' AS DateTime), N'Sharon Little', N'27501 Sommers Junction', NULL, N'San Juan Opico', NULL, NULL, N'El Salvador', CAST(6.8700 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-08T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4017, 205, 73, CAST(N'2016-07-03T00:00:00.000' AS DateTime), CAST(N'2016-09-26T00:00:00.000' AS DateTime), N'Nancy Hughes', N'1 John Wall Avenue', NULL, N'La Libertad', NULL, NULL, N'Ecuador', CAST(4.6700 AS Decimal(19, 4)), N'Checque', CAST(N'2017-02-01T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4018, 213, 16, CAST(N'2016-12-01T00:00:00.000' AS DateTime), CAST(N'2016-06-08T00:00:00.000' AS DateTime), N'Sara Knight', N'98248 Tony Pass', NULL, N'Val-d''Or', N'Québec', N'J9P', N'Canada', CAST(9.5200 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-06T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4019, 209, 10, CAST(N'2016-04-18T00:00:00.000' AS DateTime), CAST(N'2016-04-25T00:00:00.000' AS DateTime), N'Russell Wood', N'3 Commercial Point', NULL, N'Rokietnica', NULL, N'62-090', N'Poland', CAST(6.8000 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-20T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4020, 216, 1, CAST(N'2016-07-23T00:00:00.000' AS DateTime), CAST(N'2017-02-23T00:00:00.000' AS DateTime), N'Aaron Grant', N'15477 Farwell Circle', NULL, N'Yongyang', NULL, NULL, N'China', CAST(3.1700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-11T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4021, 209, 38, CAST(N'2016-12-16T00:00:00.000' AS DateTime), CAST(N'2017-02-14T00:00:00.000' AS DateTime), N'Ryan Foster', N'9218 Leroy Avenue', NULL, N'Mogapinyana', NULL, NULL, N'Botswana', CAST(3.3400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-21T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4022, 207, 91, CAST(N'2016-07-18T00:00:00.000' AS DateTime), CAST(N'2016-04-06T00:00:00.000' AS DateTime), N'Peter Montgomery', N'570 Londonderry Pass', NULL, N'Mathakola', NULL, NULL, N'Botswana', CAST(8.1100 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-27T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4023, 209, 39, CAST(N'2016-07-15T00:00:00.000' AS DateTime), CAST(N'2017-02-02T00:00:00.000' AS DateTime), N'Lawrence Schmidt', N'371 Acker Drive', NULL, N'Mesa', N'Arizona', N'85205', N'United States', CAST(1.3900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-27T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4024, 219, 51, CAST(N'2016-12-08T00:00:00.000' AS DateTime), CAST(N'2017-01-03T00:00:00.000' AS DateTime), N'Eric Gray', N'4608 Farmco Point', NULL, N'Gemblengmulyo', NULL, NULL, N'Indonesia', CAST(8.7600 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-13T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4025, 204, 77, CAST(N'2016-09-24T00:00:00.000' AS DateTime), CAST(N'2017-01-20T00:00:00.000' AS DateTime), N'Gloria Green', N'62 Sunnyside Park', NULL, N'Itararé', NULL, N'18460-000', N'Brazil', CAST(7.7500 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-06T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4026, 215, 73, CAST(N'2016-09-15T00:00:00.000' AS DateTime), CAST(N'2016-12-24T00:00:00.000' AS DateTime), N'Nicholas Price', N'5672 Ruskin Hill', NULL, N'Maimará', NULL, N'4624', N'Argentina', CAST(9.1100 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-22T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4027, 208, 98, CAST(N'2016-05-31T00:00:00.000' AS DateTime), CAST(N'2016-07-14T00:00:00.000' AS DateTime), N'Doris Watson', N'133 Gina Street', NULL, N'Bantiran', NULL, NULL, N'Indonesia', CAST(3.0000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-08T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4028, 217, 39, CAST(N'2016-05-10T00:00:00.000' AS DateTime), CAST(N'2016-04-07T00:00:00.000' AS DateTime), N'Linda Foster', N'40382 4th Terrace', NULL, N'Agrelo', N'Braga', N'4730-300', N'Portugal', CAST(2.3900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-11T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4029, 212, 52, CAST(N'2016-09-14T00:00:00.000' AS DateTime), CAST(N'2016-12-21T00:00:00.000' AS DateTime), N'Anthony Spencer', N'02 Esker Junction', NULL, N'El Ocotón', NULL, NULL, N'Honduras', CAST(7.7200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-23T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4030, 218, 74, CAST(N'2016-05-08T00:00:00.000' AS DateTime), CAST(N'2016-07-21T00:00:00.000' AS DateTime), N'James Kennedy', N'7460 Westport Hill', NULL, N'Köln', N'Nordrhein-Westfalen', N'51107', N'Germany', CAST(6.1600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-27T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4031, 214, 4, CAST(N'2016-05-31T00:00:00.000' AS DateTime), CAST(N'2017-03-03T00:00:00.000' AS DateTime), N'Theresa Robinson', N'44 Havey Way', NULL, N'Qingtong', NULL, NULL, N'China', CAST(5.0200 AS Decimal(19, 4)), N'Checque', CAST(N'2017-03-15T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4032, 201, 81, CAST(N'2016-07-05T00:00:00.000' AS DateTime), CAST(N'2016-11-18T00:00:00.000' AS DateTime), N'Jesse Ray', N'68 Derek Hill', NULL, N'Azogues', NULL, NULL, N'Ecuador', CAST(5.4100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-16T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4033, 203, 15, CAST(N'2016-09-07T00:00:00.000' AS DateTime), CAST(N'2016-06-09T00:00:00.000' AS DateTime), N'Harold Fields', N'2 Vermont Terrace', NULL, N'Mogocha', NULL, N'673732', N'Russia', CAST(2.3800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-03-30T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4034, 217, 11, CAST(N'2016-08-19T00:00:00.000' AS DateTime), CAST(N'2016-12-08T00:00:00.000' AS DateTime), N'Larry Watkins', N'629 Waxwing Avenue', NULL, N'Krasnyy Oktyabr’', NULL, N'398526', N'Russia', CAST(5.2300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-01T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4035, 205, 51, CAST(N'2016-11-29T00:00:00.000' AS DateTime), CAST(N'2016-09-02T00:00:00.000' AS DateTime), N'Debra Marshall', N'23578 Arizona Junction', NULL, N'Juhut', NULL, NULL, N'Indonesia', CAST(1.5900 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-17T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4036, 217, 56, CAST(N'2016-10-21T00:00:00.000' AS DateTime), CAST(N'2017-02-13T00:00:00.000' AS DateTime), N'Todd Stephens', N'63633 Columbus Avenue', NULL, N'Paccho', NULL, NULL, N'Peru', CAST(5.0900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-25T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4037, 219, 60, CAST(N'2016-09-22T00:00:00.000' AS DateTime), CAST(N'2016-11-08T00:00:00.000' AS DateTime), N'Jean Webb', N'0916 Grover Way', NULL, N'Kuršenai', NULL, N'81001', N'Lithuania', CAST(8.6600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-30T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4038, 213, 3, CAST(N'2016-06-01T00:00:00.000' AS DateTime), CAST(N'2016-10-07T00:00:00.000' AS DateTime), N'Heather Snyder', N'44 Grayhawk Court', NULL, N'Haenam', NULL, NULL, N'South Korea', CAST(5.3300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-30T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4039, 201, 28, CAST(N'2017-02-19T00:00:00.000' AS DateTime), CAST(N'2016-11-25T00:00:00.000' AS DateTime), N'Janet Howard', N'5351 Barby Trail', NULL, N'Shanghu', NULL, NULL, N'China', CAST(9.1800 AS Decimal(19, 4)), N'Checque', CAST(N'2017-03-16T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4040, 215, 74, CAST(N'2016-09-14T00:00:00.000' AS DateTime), CAST(N'2016-06-23T00:00:00.000' AS DateTime), N'Aaron Wheeler', N'08 Burrows Avenue', NULL, N'Tân Son', NULL, NULL, N'Vietnam', CAST(3.3600 AS Decimal(19, 4)), N'Card', CAST(N'2017-03-05T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4041, 204, 79, CAST(N'2016-09-27T00:00:00.000' AS DateTime), CAST(N'2017-02-15T00:00:00.000' AS DateTime), N'Lori Watkins', N'3 Pennsylvania Court', NULL, N'Victoria', NULL, N'VCT', N'Malta', CAST(9.4100 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-12T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4042, 205, 92, CAST(N'2016-11-03T00:00:00.000' AS DateTime), CAST(N'2016-05-11T00:00:00.000' AS DateTime), N'Alice Miller', N'7895 Amoth Avenue', NULL, N'Mae Lao', NULL, N'57250', N'Thailand', CAST(2.1100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-06T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4043, 212, 82, CAST(N'2016-11-17T00:00:00.000' AS DateTime), CAST(N'2016-04-19T00:00:00.000' AS DateTime), N'Marilyn Nguyen', N'25203 Meadow Ridge Plaza', NULL, N'Nine', N'Braga', N'4775-446', N'Portugal', CAST(6.0300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-07T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4044, 218, 55, CAST(N'2016-06-26T00:00:00.000' AS DateTime), CAST(N'2016-08-15T00:00:00.000' AS DateTime), N'Ashley West', N'08621 Porter Lane', NULL, N'Kingsport', N'Tennessee', N'37665', N'United States', CAST(8.2300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-17T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4045, 217, 53, CAST(N'2016-05-07T00:00:00.000' AS DateTime), CAST(N'2017-02-25T00:00:00.000' AS DateTime), N'Julia Fernandez', N'91519 Harbort Way', NULL, N'Issoire', N'Auvergne', N'63504 CEDEX', N'France', CAST(1.1400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-27T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4046, 211, 78, CAST(N'2016-12-11T00:00:00.000' AS DateTime), CAST(N'2017-02-15T00:00:00.000' AS DateTime), N'Willie Sims', N'683 Caliangt Parkway', NULL, N'Balazar', N'Braga', N'4805-005', N'Portugal', CAST(6.5700 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-13T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4047, 201, 77, CAST(N'2016-05-20T00:00:00.000' AS DateTime), CAST(N'2017-02-19T00:00:00.000' AS DateTime), N'Samuel Burke', N'25 Grover Lane', NULL, N'Housuo', NULL, NULL, N'China', CAST(6.9900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-12T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4048, 217, 72, CAST(N'2016-11-06T00:00:00.000' AS DateTime), CAST(N'2016-09-29T00:00:00.000' AS DateTime), N'Patricia Green', N'29791 Thierer Street', NULL, N'Campamento', NULL, N'052027', N'Colombia', CAST(3.3300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-03-24T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4049, 210, 98, CAST(N'2016-08-24T00:00:00.000' AS DateTime), CAST(N'2016-04-16T00:00:00.000' AS DateTime), N'Nicole Washington', N'68 Monica Point', NULL, N'Cikaung', NULL, NULL, N'Indonesia', CAST(5.7800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-30T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4050, 215, 26, CAST(N'2016-10-07T00:00:00.000' AS DateTime), CAST(N'2016-11-03T00:00:00.000' AS DateTime), N'Marie Bryant', N'36611 Schlimgen Place', NULL, N'Villa Francisca', NULL, N'10215', N'Dominican Republic', CAST(4.1100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-29T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4051, 212, 51, CAST(N'2016-05-19T00:00:00.000' AS DateTime), CAST(N'2017-03-16T00:00:00.000' AS DateTime), N'Brandon Lane', N'5 Duke Center', NULL, N'Soutinho', N'Porto', N'4650-530', N'Portugal', CAST(9.6200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-28T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4052, 205, 9, CAST(N'2016-07-19T00:00:00.000' AS DateTime), CAST(N'2016-09-05T00:00:00.000' AS DateTime), N'Pamela Ferguson', N'0 Mockingbird Crossing', NULL, N'Jefferson City', N'Missouri', N'65105', N'United States', CAST(9.9800 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-08T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4053, 210, 42, CAST(N'2016-04-09T00:00:00.000' AS DateTime), CAST(N'2017-02-05T00:00:00.000' AS DateTime), N'Gloria Edwards', N'8275 Sage Plaza', NULL, N'Yilkiqi', NULL, NULL, N'China', CAST(5.2100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-10T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4054, 211, 70, CAST(N'2017-02-28T00:00:00.000' AS DateTime), CAST(N'2017-02-11T00:00:00.000' AS DateTime), N'John Cole', N'4679 Trailsway Circle', NULL, N'Sanlanbahai', NULL, NULL, N'China', CAST(4.4200 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-06T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4055, 208, 65, CAST(N'2017-01-11T00:00:00.000' AS DateTime), CAST(N'2017-02-14T00:00:00.000' AS DateTime), N'Bobby Butler', N'314 Jenna Crossing', NULL, N'Malusac', NULL, N'2005', N'Philippines', CAST(7.3700 AS Decimal(19, 4)), N'Cash', CAST(N'2017-03-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4056, 220, 15, CAST(N'2016-07-12T00:00:00.000' AS DateTime), CAST(N'2016-09-06T00:00:00.000' AS DateTime), N'Anthony Lane', N'1 Packers Avenue', NULL, N'Batambak', NULL, NULL, N'Indonesia', CAST(5.4100 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-21T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4057, 220, 76, CAST(N'2016-05-05T00:00:00.000' AS DateTime), CAST(N'2016-04-19T00:00:00.000' AS DateTime), N'Karen Ray', N'891 Raven Street', NULL, N'Chinju', NULL, NULL, N'South Korea', CAST(4.7100 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-11T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4058, 216, 90, CAST(N'2017-01-26T00:00:00.000' AS DateTime), CAST(N'2016-12-19T00:00:00.000' AS DateTime), N'Martha Gonzalez', N'8695 Mandrake Place', NULL, N'Maythalun', NULL, NULL, N'Palestinian Territory', CAST(1.7500 AS Decimal(19, 4)), N'Card', CAST(N'2017-03-16T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4059, 212, 43, CAST(N'2016-09-20T00:00:00.000' AS DateTime), CAST(N'2017-02-11T00:00:00.000' AS DateTime), N'Judy Daniels', N'154 Lukken Court', NULL, N'Luoqiao', NULL, NULL, N'China', CAST(4.6300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-09T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4060, 207, 80, CAST(N'2016-04-29T00:00:00.000' AS DateTime), CAST(N'2016-07-01T00:00:00.000' AS DateTime), N'Jane Stevens', N'43 Kingsford Pass', NULL, N'Dobruševo', NULL, N'7514', N'Macedonia', CAST(1.9600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-02T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4061, 214, 89, CAST(N'2016-10-09T00:00:00.000' AS DateTime), CAST(N'2016-09-09T00:00:00.000' AS DateTime), N'Emily Miller', N'5 Pearson Lane', NULL, N'East London', NULL, N'5688', N'South Africa', CAST(2.1400 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-10T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4062, 220, 8, CAST(N'2016-12-01T00:00:00.000' AS DateTime), CAST(N'2017-03-09T00:00:00.000' AS DateTime), N'Sarah Johnson', N'30 Chinook Lane', NULL, N'Selishche', NULL, N'180536', N'Russia', CAST(3.7600 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-18T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4063, 220, 48, CAST(N'2017-03-05T00:00:00.000' AS DateTime), CAST(N'2016-11-30T00:00:00.000' AS DateTime), N'Carolyn Reyes', N'72 Michigan Pass', NULL, N'Sukasenang', NULL, NULL, N'Indonesia', CAST(6.5200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-20T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4064, 214, 31, CAST(N'2016-07-19T00:00:00.000' AS DateTime), CAST(N'2016-08-16T00:00:00.000' AS DateTime), N'Kathryn Coleman', N'43358 Packers Court', NULL, N'Przystajn', NULL, N'42-141', N'Poland', CAST(1.6800 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-13T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4065, 205, 41, CAST(N'2016-12-09T00:00:00.000' AS DateTime), CAST(N'2016-03-20T00:00:00.000' AS DateTime), N'Clarence Graham', N'1675 Starling Point', NULL, N'Zangbawa', NULL, NULL, N'China', CAST(5.8200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-08T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4066, 205, 41, CAST(N'2016-05-25T00:00:00.000' AS DateTime), CAST(N'2016-11-15T00:00:00.000' AS DateTime), N'David Harris', N'00 Warner Court', NULL, N'Kabba', NULL, NULL, N'Nigeria', CAST(7.2400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-24T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4067, 218, 13, CAST(N'2016-07-24T00:00:00.000' AS DateTime), CAST(N'2016-12-06T00:00:00.000' AS DateTime), N'Ruth Fields', N'88567 Golf Course Plaza', NULL, N'Mauá', NULL, N'09300-000', N'Brazil', CAST(6.8200 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-26T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4068, 206, 11, CAST(N'2016-05-04T00:00:00.000' AS DateTime), CAST(N'2016-07-10T00:00:00.000' AS DateTime), N'Todd Butler', N'88 Graedel Point', NULL, N'Jablah', NULL, NULL, N'Syria', CAST(3.8300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-17T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4069, 215, 55, CAST(N'2016-12-22T00:00:00.000' AS DateTime), CAST(N'2016-03-28T00:00:00.000' AS DateTime), N'Catherine Perkins', N'95 Troy Parkway', NULL, N'Frampol', NULL, N'23-440', N'Poland', CAST(7.6000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-24T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4070, 220, 40, CAST(N'2016-10-17T00:00:00.000' AS DateTime), CAST(N'2016-12-01T00:00:00.000' AS DateTime), N'Jeffrey Rodriguez', N'3393 Weeping Birch Court', NULL, N'Burunday', NULL, NULL, N'Kazakhstan', CAST(2.5200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-06T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4071, 218, 70, CAST(N'2017-03-16T00:00:00.000' AS DateTime), CAST(N'2016-12-09T00:00:00.000' AS DateTime), N'Rachel Butler', N'79327 Ridgeway Circle', NULL, N'Dupnitsa', NULL, N'2680', N'Bulgaria', CAST(6.2500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-02T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4072, 205, 45, CAST(N'2017-01-22T00:00:00.000' AS DateTime), CAST(N'2016-05-15T00:00:00.000' AS DateTime), N'Robin Fisher', N'0 Susan Court', NULL, N'Morohongo', NULL, N'357-0211', N'Japan', CAST(4.4200 AS Decimal(19, 4)), N'Card', CAST(N'2017-03-06T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4073, 217, 94, CAST(N'2017-01-25T00:00:00.000' AS DateTime), CAST(N'2016-04-11T00:00:00.000' AS DateTime), N'Ruth Carpenter', N'4 Glacier Hill Road', NULL, N'Ngrejo', NULL, NULL, N'Indonesia', CAST(4.9000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-13T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4074, 219, 27, CAST(N'2017-01-06T00:00:00.000' AS DateTime), CAST(N'2017-01-03T00:00:00.000' AS DateTime), N'Irene Kelly', N'0 Comanche Junction', NULL, N'Chao', NULL, NULL, N'Peru', CAST(5.3200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-20T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4075, 214, 44, CAST(N'2016-06-24T00:00:00.000' AS DateTime), CAST(N'2016-12-20T00:00:00.000' AS DateTime), N'Douglas Sims', N'81709 Helena Park', NULL, N'Dongmaku', NULL, NULL, N'China', CAST(3.3500 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-27T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4076, 216, 27, CAST(N'2016-09-23T00:00:00.000' AS DateTime), CAST(N'2016-10-05T00:00:00.000' AS DateTime), N'Kenneth Rose', N'5316 Dottie Way', NULL, N'Olszówka', NULL, N'62-641', N'Poland', CAST(2.6300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-27T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4077, 211, 84, CAST(N'2016-11-24T00:00:00.000' AS DateTime), CAST(N'2016-08-04T00:00:00.000' AS DateTime), N'Jimmy Morgan', N'42187 Shoshone Center', NULL, N'Saltsjöbaden', N'Stockholm', N'133 41', N'Sweden', CAST(1.1100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-09T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4078, 202, 57, CAST(N'2016-05-28T00:00:00.000' AS DateTime), CAST(N'2016-06-02T00:00:00.000' AS DateTime), N'Annie Vasquez', N'5 Lien Junction', NULL, N'Al Qatn', NULL, NULL, N'Yemen', CAST(2.7300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-14T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4079, 202, 64, CAST(N'2016-07-05T00:00:00.000' AS DateTime), CAST(N'2016-05-20T00:00:00.000' AS DateTime), N'Henry Mccoy', N'58 Nelson Circle', NULL, N'Tsaghkahovit', NULL, NULL, N'Armenia', CAST(3.2900 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-18T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4080, 216, 44, CAST(N'2017-02-20T00:00:00.000' AS DateTime), CAST(N'2016-10-08T00:00:00.000' AS DateTime), N'Norma Graham', N'27 Heffernan Pass', NULL, N'Cairima', NULL, NULL, N'China', CAST(7.0200 AS Decimal(19, 4)), N'Checque', CAST(N'2017-03-06T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4081, 218, 60, CAST(N'2017-03-16T00:00:00.000' AS DateTime), CAST(N'2016-08-06T00:00:00.000' AS DateTime), N'Albert Wright', N'572 Vahlen Place', NULL, N'Drahovo', NULL, NULL, N'Ukraine', CAST(4.9200 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-29T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4082, 219, 15, CAST(N'2016-12-26T00:00:00.000' AS DateTime), CAST(N'2017-02-17T00:00:00.000' AS DateTime), N'Jane Wells', N'21 Merchant Way', NULL, N'Acacías', NULL, N'507009', N'Colombia', CAST(6.5300 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-04T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4083, 212, 61, CAST(N'2016-06-24T00:00:00.000' AS DateTime), CAST(N'2016-03-23T00:00:00.000' AS DateTime), N'Jesse Mitchell', N'4060 Carioca Drive', NULL, N'Ntoroko', NULL, NULL, N'Uganda', CAST(9.4100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-19T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4084, 216, 3, CAST(N'2016-08-20T00:00:00.000' AS DateTime), CAST(N'2017-02-15T00:00:00.000' AS DateTime), N'Carlos Brooks', N'868 Pankratz Trail', NULL, N'Bat Khela', NULL, N'18351', N'Pakistan', CAST(1.0000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-22T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4085, 209, 25, CAST(N'2016-12-03T00:00:00.000' AS DateTime), CAST(N'2016-06-01T00:00:00.000' AS DateTime), N'Christopher Williamson', N'8874 Starling Plaza', NULL, N'Tarbes', N'Midi-Pyrénées', N'65951 CEDEX 9', N'France', CAST(4.1500 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-04T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4086, 205, 2, CAST(N'2016-06-19T00:00:00.000' AS DateTime), CAST(N'2016-08-26T00:00:00.000' AS DateTime), N'Joseph Wells', N'7223 Carpenter Road', NULL, N'Chitral', NULL, N'17200', N'Pakistan', CAST(5.3100 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-22T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4087, 216, 96, CAST(N'2016-06-04T00:00:00.000' AS DateTime), CAST(N'2016-12-31T00:00:00.000' AS DateTime), N'Teresa Thomas', N'908 Ramsey Junction', NULL, N'Dzerzhinskiy', NULL, N'140083', N'Russia', CAST(4.2900 AS Decimal(19, 4)), N'Cash', CAST(N'2017-03-03T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4088, 203, 35, CAST(N'2016-09-21T00:00:00.000' AS DateTime), CAST(N'2017-01-08T00:00:00.000' AS DateTime), N'Scott Gomez', N'70537 Tennessee Crossing', NULL, N'B?ng Son', NULL, NULL, N'Vietnam', CAST(6.9300 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-01T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4089, 210, 18, CAST(N'2017-02-17T00:00:00.000' AS DateTime), CAST(N'2016-10-28T00:00:00.000' AS DateTime), N'Nicole Miller', N'0 Jackson Place', NULL, N'Šilherovice', NULL, N'747 15', N'Czech Republic', CAST(5.6400 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-17T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4090, 201, 8, CAST(N'2016-11-12T00:00:00.000' AS DateTime), CAST(N'2016-06-02T00:00:00.000' AS DateTime), N'Donald Nguyen', N'7320 Bunting Pass', NULL, N'Namioka', NULL, N'953-0062', N'Japan', CAST(7.0700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-29T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4091, 212, 67, CAST(N'2016-04-08T00:00:00.000' AS DateTime), CAST(N'2016-11-21T00:00:00.000' AS DateTime), N'Shawn Myers', N'1844 Esch Plaza', NULL, N'Gracec', NULL, N'10370', N'Croatia', CAST(4.8400 AS Decimal(19, 4)), N'Card', CAST(N'2016-03-17T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4092, 220, 16, CAST(N'2017-01-12T00:00:00.000' AS DateTime), CAST(N'2016-08-04T00:00:00.000' AS DateTime), N'Daniel Armstrong', N'2 Donald Alley', NULL, N'La Colorada', NULL, NULL, N'Panama', CAST(2.9800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-08T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4093, 203, 60, CAST(N'2016-04-17T00:00:00.000' AS DateTime), CAST(N'2016-05-10T00:00:00.000' AS DateTime), N'Henry Gonzales', N'23848 6th Center', NULL, N'Guayatá', NULL, N'153047', N'Colombia', CAST(1.5400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-18T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4094, 209, 37, CAST(N'2016-08-07T00:00:00.000' AS DateTime), CAST(N'2016-04-26T00:00:00.000' AS DateTime), N'Stephanie Snyder', N'1152 Morning Park', NULL, N'Zhitan', NULL, NULL, N'China', CAST(9.7600 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-23T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4095, 205, 46, CAST(N'2016-09-01T00:00:00.000' AS DateTime), CAST(N'2017-02-25T00:00:00.000' AS DateTime), N'Joan Butler', N'98050 Mitchell Point', NULL, N'Bun Barat', NULL, NULL, N'Indonesia', CAST(9.5700 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-25T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4096, 211, 92, CAST(N'2017-01-02T00:00:00.000' AS DateTime), CAST(N'2016-12-06T00:00:00.000' AS DateTime), N'Gloria Murray', N'8 Vidon Terrace', NULL, N'Rumenka', NULL, NULL, N'Serbia', CAST(5.3300 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-28T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4097, 210, 66, CAST(N'2016-07-04T00:00:00.000' AS DateTime), CAST(N'2016-05-30T00:00:00.000' AS DateTime), N'Dorothy Simpson', N'0 Pearson Point', NULL, N'Yevpatoriya', NULL, NULL, N'Ukraine', CAST(3.5200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-28T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4098, 219, 59, CAST(N'2016-09-27T00:00:00.000' AS DateTime), CAST(N'2016-12-17T00:00:00.000' AS DateTime), N'Katherine Brooks', N'921 Anhalt Place', NULL, N'Rietavas', NULL, N'90018', N'Lithuania', CAST(5.2900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-19T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4099, 207, 65, CAST(N'2016-07-06T00:00:00.000' AS DateTime), CAST(N'2016-10-11T00:00:00.000' AS DateTime), N'Linda Reid', N'89712 Dryden Point', NULL, N'Bronnitsy', NULL, N'142451', N'Russia', CAST(5.6800 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-08T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4100, 212, 61, CAST(N'2016-04-14T00:00:00.000' AS DateTime), CAST(N'2016-05-02T00:00:00.000' AS DateTime), N'Richard Carpenter', N'17032 Melrose Crossing', NULL, N'White River', NULL, N'1256', N'South Africa', CAST(7.2200 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-03T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4101, 206, 23, CAST(N'2016-03-28T00:00:00.000' AS DateTime), CAST(N'2016-12-01T00:00:00.000' AS DateTime), N'Clarence Coleman', N'9167 Valley Edge Point', NULL, N'Guocun', NULL, NULL, N'China', CAST(5.8600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-19T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4102, 202, 16, CAST(N'2016-07-26T00:00:00.000' AS DateTime), CAST(N'2017-01-18T00:00:00.000' AS DateTime), N'Kevin Dunn', N'178 Park Meadow Avenue', NULL, N'Mlonggo', NULL, NULL, N'Indonesia', CAST(4.1500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-03T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4103, 211, 65, CAST(N'2017-01-17T00:00:00.000' AS DateTime), CAST(N'2016-11-09T00:00:00.000' AS DateTime), N'Keith Lopez', N'689 Anthes Pass', NULL, N'Cibanten', NULL, NULL, N'Indonesia', CAST(8.2500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4104, 218, 86, CAST(N'2017-03-12T00:00:00.000' AS DateTime), CAST(N'2016-05-25T00:00:00.000' AS DateTime), N'Chris Wright', N'57974 Riverside Junction', NULL, N'Ban Mai', NULL, N'80000', N'Thailand', CAST(4.8500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-08T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4105, 215, 57, CAST(N'2016-07-03T00:00:00.000' AS DateTime), CAST(N'2016-05-03T00:00:00.000' AS DateTime), N'Michael Snyder', N'93 Ohio Hill', NULL, N'Bryan', N'Texas', N'77806', N'United States', CAST(3.5400 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-10T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4106, 210, 2, CAST(N'2017-03-07T00:00:00.000' AS DateTime), CAST(N'2016-09-18T00:00:00.000' AS DateTime), N'David Day', N'5024 Summerview Circle', NULL, N'Itapira', NULL, N'13970-000', N'Brazil', CAST(3.6000 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-20T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4107, 218, 4, CAST(N'2016-10-10T00:00:00.000' AS DateTime), CAST(N'2016-09-02T00:00:00.000' AS DateTime), N'Lisa Kim', N'4892 Huxley Center', NULL, N'Tanjungagung', NULL, NULL, N'Indonesia', CAST(6.2300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-11T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4108, 214, 26, CAST(N'2016-06-02T00:00:00.000' AS DateTime), CAST(N'2016-10-05T00:00:00.000' AS DateTime), N'Teresa Ellis', N'1569 Mariners Cove Terrace', NULL, N'Maszkienice', NULL, N'32-854', N'Poland', CAST(7.6500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-14T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4109, 201, 51, CAST(N'2016-10-07T00:00:00.000' AS DateTime), CAST(N'2017-02-02T00:00:00.000' AS DateTime), N'Jimmy Lawson', N'2165 Bluestem Center', NULL, N'Kampungbaru', NULL, NULL, N'Indonesia', CAST(1.7300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-30T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4110, 215, 4, CAST(N'2016-08-21T00:00:00.000' AS DateTime), CAST(N'2017-02-05T00:00:00.000' AS DateTime), N'Jerry Murray', N'40070 Anderson Court', NULL, N'Vicente Guerrero', N'Veracruz Llave', N'92440', N'Mexico', CAST(1.5700 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-26T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4111, 210, 56, CAST(N'2016-07-06T00:00:00.000' AS DateTime), CAST(N'2016-09-19T00:00:00.000' AS DateTime), N'Joan Adams', N'5322 Goodland Avenue', NULL, N'Paris 17', N'Île-de-France', N'75853 CEDEX 17', N'France', CAST(7.5200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-07T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4112, 214, 77, CAST(N'2016-09-04T00:00:00.000' AS DateTime), CAST(N'2016-10-19T00:00:00.000' AS DateTime), N'Chris Young', N'7 Clove Center', NULL, N'Gongjiahe', NULL, NULL, N'China', CAST(3.3100 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-06T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4113, 217, 62, CAST(N'2016-07-18T00:00:00.000' AS DateTime), CAST(N'2016-09-30T00:00:00.000' AS DateTime), N'Norma Oliver', N'6002 Rieder Road', NULL, N'Lingbei', NULL, NULL, N'China', CAST(8.8500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-25T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4114, 213, 72, CAST(N'2016-08-01T00:00:00.000' AS DateTime), CAST(N'2016-09-12T00:00:00.000' AS DateTime), N'Douglas Day', N'88 Helena Drive', NULL, N'Alcoutim', N'Faro', N'8970-055', N'Portugal', CAST(5.5200 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-19T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4115, 220, 6, CAST(N'2016-11-13T00:00:00.000' AS DateTime), CAST(N'2017-02-22T00:00:00.000' AS DateTime), N'Janet James', N'820 Westend Place', NULL, N'Springfield', N'Massachusetts', N'01129', N'United States', CAST(4.7200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-03-21T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4116, 201, 72, CAST(N'2016-09-01T00:00:00.000' AS DateTime), CAST(N'2016-09-07T00:00:00.000' AS DateTime), N'Martha Lee', N'2 Donald Hill', NULL, N'Majiang', NULL, NULL, N'China', CAST(4.3900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-10T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4117, 202, 40, CAST(N'2017-02-04T00:00:00.000' AS DateTime), CAST(N'2016-12-09T00:00:00.000' AS DateTime), N'Benjamin Cruz', N'02989 Morningstar Avenue', NULL, N'Givi', NULL, NULL, N'Iran', CAST(1.7700 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-29T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4118, 213, 48, CAST(N'2016-12-24T00:00:00.000' AS DateTime), CAST(N'2017-01-06T00:00:00.000' AS DateTime), N'Diane Porter', N'7 Kensington Center', NULL, N'Pingyi', NULL, NULL, N'China', CAST(4.6900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-31T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4119, 205, 69, CAST(N'2016-06-30T00:00:00.000' AS DateTime), CAST(N'2016-05-01T00:00:00.000' AS DateTime), N'Brandon Myers', N'80411 Victoria Center', NULL, N'Punsu', NULL, NULL, N'Indonesia', CAST(7.8000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-28T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4120, 220, 63, CAST(N'2016-11-11T00:00:00.000' AS DateTime), CAST(N'2016-10-30T00:00:00.000' AS DateTime), N'Beverly Garza', N'2750 Sullivan Place', NULL, N'San Jose', NULL, N'8427', N'Philippines', CAST(8.1500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-23T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4121, 220, 32, CAST(N'2016-05-05T00:00:00.000' AS DateTime), CAST(N'2016-09-05T00:00:00.000' AS DateTime), N'Cynthia Simpson', N'0731 Clarendon Point', NULL, N'Pomichna', NULL, NULL, N'Ukraine', CAST(5.5600 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-23T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4122, 201, 38, CAST(N'2016-04-24T00:00:00.000' AS DateTime), CAST(N'2016-07-30T00:00:00.000' AS DateTime), N'Janet West', N'4800 Dottie Parkway', NULL, N'Tân K?', NULL, NULL, N'Vietnam', CAST(2.6300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-17T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4123, 214, 24, CAST(N'2016-04-04T00:00:00.000' AS DateTime), CAST(N'2016-06-11T00:00:00.000' AS DateTime), N'Kevin Stone', N'85 Duke Avenue', NULL, N'Shemonaikha', NULL, NULL, N'Kazakhstan', CAST(9.9900 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-24T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4124, 210, 9, CAST(N'2016-09-01T00:00:00.000' AS DateTime), CAST(N'2016-06-18T00:00:00.000' AS DateTime), N'Amy Austin', N'80663 Almo Park', NULL, N'Zajecov', NULL, N'267 63', N'Czech Republic', CAST(3.5800 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-29T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4125, 206, 78, CAST(N'2017-02-09T00:00:00.000' AS DateTime), CAST(N'2016-07-07T00:00:00.000' AS DateTime), N'Gregory Greene', N'6 Commercial Junction', NULL, N'Hudong', NULL, NULL, N'China', CAST(7.3400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-26T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4126, 215, 48, CAST(N'2016-07-30T00:00:00.000' AS DateTime), CAST(N'2016-12-25T00:00:00.000' AS DateTime), N'Laura Woods', N'115 Ramsey Plaza', NULL, N'Allentown', N'Pennsylvania', N'18105', N'United States', CAST(4.9200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-28T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4127, 220, 19, CAST(N'2016-03-29T00:00:00.000' AS DateTime), CAST(N'2016-05-27T00:00:00.000' AS DateTime), N'Stephanie Reed', N'452 Grayhawk Way', NULL, N'Sicheng', NULL, NULL, N'China', CAST(1.1000 AS Decimal(19, 4)), N'Card', CAST(N'2017-03-14T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4128, 208, 64, CAST(N'2016-06-03T00:00:00.000' AS DateTime), CAST(N'2016-08-13T00:00:00.000' AS DateTime), N'Craig Gonzalez', N'6028 West Street', NULL, N'Kliteh', NULL, NULL, N'Indonesia', CAST(1.7300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-23T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4129, 201, 28, CAST(N'2016-09-05T00:00:00.000' AS DateTime), CAST(N'2016-04-03T00:00:00.000' AS DateTime), N'Raymond Gomez', N'4 Stone Corner Place', NULL, N'Chechenglu', NULL, NULL, N'China', CAST(4.3200 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-29T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4130, 215, 83, CAST(N'2016-11-14T00:00:00.000' AS DateTime), CAST(N'2016-09-13T00:00:00.000' AS DateTime), N'Kenneth Taylor', N'7 Nevada Way', NULL, N'Alipur', NULL, N'34451', N'Pakistan', CAST(5.0700 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-28T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4131, 203, 76, CAST(N'2017-02-01T00:00:00.000' AS DateTime), CAST(N'2017-01-04T00:00:00.000' AS DateTime), N'Jose Peters', N'2493 Saint Paul Crossing', NULL, N'Bofuer', NULL, NULL, N'Indonesia', CAST(9.8500 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-18T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4132, 207, 67, CAST(N'2016-09-02T00:00:00.000' AS DateTime), CAST(N'2017-03-10T00:00:00.000' AS DateTime), N'Martin West', N'7251 Prairieview Place', NULL, N'Espinillo', NULL, N'3460', N'Argentina', CAST(7.9000 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-05T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4133, 208, 78, CAST(N'2016-08-27T00:00:00.000' AS DateTime), CAST(N'2016-12-26T00:00:00.000' AS DateTime), N'Louise Dunn', N'4076 East Trail', NULL, N'Caramanta', NULL, N'056047', N'Colombia', CAST(1.2800 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-22T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4134, 209, 93, CAST(N'2016-06-27T00:00:00.000' AS DateTime), CAST(N'2016-04-10T00:00:00.000' AS DateTime), N'Gregory Stanley', N'67 Namekagon Crossing', NULL, N'Pasarkayu', NULL, NULL, N'Indonesia', CAST(2.8300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-17T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4135, 206, 60, CAST(N'2016-03-23T00:00:00.000' AS DateTime), CAST(N'2016-06-19T00:00:00.000' AS DateTime), N'Ronald Palmer', N'21 Old Shore Place', NULL, N'Tujing', NULL, NULL, N'China', CAST(9.0100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-22T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4136, 209, 10, CAST(N'2016-11-07T00:00:00.000' AS DateTime), CAST(N'2016-11-21T00:00:00.000' AS DateTime), N'Harry Robinson', N'740 Toban Court', NULL, N'Liujiage', NULL, NULL, N'China', CAST(7.1300 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-20T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4137, 214, 83, CAST(N'2016-05-20T00:00:00.000' AS DateTime), CAST(N'2016-04-08T00:00:00.000' AS DateTime), N'Joan Torres', N'5167 Laurel Drive', NULL, N'Nirji', NULL, NULL, N'China', CAST(9.8100 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-13T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4138, 207, 47, CAST(N'2016-07-17T00:00:00.000' AS DateTime), CAST(N'2016-10-03T00:00:00.000' AS DateTime), N'Carlos Jones', N'4 Fuller Lane', NULL, N'Detroit', N'Michigan', N'48258', N'United States', CAST(8.0200 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-16T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4139, 214, 92, CAST(N'2016-07-17T00:00:00.000' AS DateTime), CAST(N'2017-01-23T00:00:00.000' AS DateTime), N'Terry Freeman', N'738 Vernon Road', NULL, N'Veverská Bítýška', NULL, N'664 71', N'Czech Republic', CAST(1.9300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-04T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4140, 204, 92, CAST(N'2016-06-09T00:00:00.000' AS DateTime), CAST(N'2016-05-06T00:00:00.000' AS DateTime), N'Rose Hunt', N'3242 Bunting Trail', NULL, N'Schaumburg', N'Illinois', N'60193', N'United States', CAST(7.6500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-03T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4141, 214, 12, CAST(N'2016-11-19T00:00:00.000' AS DateTime), CAST(N'2017-03-16T00:00:00.000' AS DateTime), N'Harry Reid', N'395 Hauk Road', NULL, N'Rudky', NULL, NULL, N'Ukraine', CAST(5.2300 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-18T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4142, 212, 88, CAST(N'2016-12-25T00:00:00.000' AS DateTime), CAST(N'2016-12-14T00:00:00.000' AS DateTime), N'Fred Olson', N'9311 Old Gate Park', NULL, N'Hejiabao', NULL, NULL, N'China', CAST(4.0200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-16T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4143, 217, 79, CAST(N'2016-06-14T00:00:00.000' AS DateTime), CAST(N'2016-08-25T00:00:00.000' AS DateTime), N'Paul Arnold', N'08347 Comanche Pass', NULL, N'Bukovec', NULL, N'739 84', N'Czech Republic', CAST(6.0200 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-08T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4144, 216, 56, CAST(N'2016-06-03T00:00:00.000' AS DateTime), CAST(N'2016-07-22T00:00:00.000' AS DateTime), N'Carolyn Woods', N'55 Stoughton Pass', NULL, N'Shengmi', NULL, NULL, N'China', CAST(7.3200 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-27T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4145, 218, 84, CAST(N'2016-07-02T00:00:00.000' AS DateTime), CAST(N'2016-11-05T00:00:00.000' AS DateTime), N'Craig Schmidt', N'2 Stephen Plaza', NULL, N'Arhust', NULL, NULL, N'Mongolia', CAST(3.3100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-17T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4146, 219, 13, CAST(N'2016-09-02T00:00:00.000' AS DateTime), CAST(N'2017-01-29T00:00:00.000' AS DateTime), N'Antonio Jordan', N'452 Clemons Court', NULL, N'København', N'Region Hovedstaden', N'1787', N'Denmark', CAST(4.8400 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-10T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4147, 212, 51, CAST(N'2016-10-19T00:00:00.000' AS DateTime), CAST(N'2017-01-20T00:00:00.000' AS DateTime), N'Carol Evans', N'1649 Crescent Oaks Road', NULL, N'Roubaix', N'Nord-Pas-de-Calais', N'59100', N'France', CAST(7.7100 AS Decimal(19, 4)), N'Card', CAST(N'2017-03-08T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4148, 217, 26, CAST(N'2016-04-16T00:00:00.000' AS DateTime), CAST(N'2016-11-28T00:00:00.000' AS DateTime), N'Steven Torres', N'73679 Morning Drive', NULL, N'Ayotupas', NULL, NULL, N'Indonesia', CAST(7.0000 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-12T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4149, 215, 1, CAST(N'2017-02-06T00:00:00.000' AS DateTime), CAST(N'2016-10-27T00:00:00.000' AS DateTime), N'Louis Watson', N'03 Golf View Way', NULL, N'Madaoua', NULL, NULL, N'Niger', CAST(4.4500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-22T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4150, 210, 100, CAST(N'2017-01-14T00:00:00.000' AS DateTime), CAST(N'2016-11-12T00:00:00.000' AS DateTime), N'Robin Reynolds', N'5 Hagan Hill', NULL, N'Huacaschuque', NULL, NULL, N'Peru', CAST(7.3700 AS Decimal(19, 4)), N'Checque', CAST(N'2017-02-09T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4151, 217, 24, CAST(N'2016-09-06T00:00:00.000' AS DateTime), CAST(N'2016-10-11T00:00:00.000' AS DateTime), N'Julia Gilbert', N'3 Manitowish Avenue', NULL, N'Passos', N'Viana do Castelo', N'4990-770', N'Portugal', CAST(1.7600 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-16T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4152, 210, 90, CAST(N'2016-05-26T00:00:00.000' AS DateTime), CAST(N'2016-07-14T00:00:00.000' AS DateTime), N'Chris Chavez', N'0 Birchwood Plaza', NULL, N'Odivelas', N'Lisboa', N'2675-080', N'Portugal', CAST(8.3500 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-05T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4153, 220, 79, CAST(N'2016-10-27T00:00:00.000' AS DateTime), CAST(N'2016-08-14T00:00:00.000' AS DateTime), N'Adam Morrison', N'04510 West Circle', NULL, N'Weda', NULL, NULL, N'Indonesia', CAST(8.8400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-05T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4154, 210, 57, CAST(N'2017-02-21T00:00:00.000' AS DateTime), CAST(N'2016-09-28T00:00:00.000' AS DateTime), N'Doris Snyder', N'37027 Hintze Parkway', NULL, N'Vakhrushi', NULL, N'613110', N'Russia', CAST(2.7500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-02T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4155, 202, 24, CAST(N'2017-02-03T00:00:00.000' AS DateTime), CAST(N'2016-08-03T00:00:00.000' AS DateTime), N'Lisa Fisher', N'919 Warner Circle', NULL, N'Kanbe', NULL, NULL, N'Myanmar', CAST(2.4800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-23T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4156, 213, 89, CAST(N'2017-01-26T00:00:00.000' AS DateTime), CAST(N'2016-06-25T00:00:00.000' AS DateTime), N'Gloria Murphy', N'6750 Hansons Center', NULL, N'Saint Petersburg', NULL, N'190990', N'Russia', CAST(2.8800 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-31T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4157, 219, 83, CAST(N'2016-08-03T00:00:00.000' AS DateTime), CAST(N'2016-06-15T00:00:00.000' AS DateTime), N'Sara Mcdonald', N'88365 Namekagon Park', NULL, N'Maofan', NULL, NULL, N'China', CAST(4.6900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-22T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4158, 202, 79, CAST(N'2016-08-13T00:00:00.000' AS DateTime), CAST(N'2016-10-08T00:00:00.000' AS DateTime), N'John Barnes', N'41 Springs Plaza', NULL, N'Carangola', NULL, N'36800-000', N'Brazil', CAST(4.8400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-25T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4159, 215, 84, CAST(N'2016-11-30T00:00:00.000' AS DateTime), CAST(N'2017-02-27T00:00:00.000' AS DateTime), N'Bobby Matthews', N'39153 Kipling Trail', NULL, N'Now Zad', NULL, NULL, N'Afghanistan', CAST(7.5600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-25T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4160, 216, 40, CAST(N'2016-07-27T00:00:00.000' AS DateTime), CAST(N'2016-12-05T00:00:00.000' AS DateTime), N'Robin Greene', N'899 Waubesa Alley', NULL, N'Vellinge', N'Skåne', N'235 93', N'Sweden', CAST(4.1700 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-22T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4161, 211, 91, CAST(N'2017-03-12T00:00:00.000' AS DateTime), CAST(N'2016-09-11T00:00:00.000' AS DateTime), N'Joseph Long', N'3 Nobel Terrace', NULL, N'Bukabu', NULL, NULL, N'Indonesia', CAST(2.2600 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-26T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4162, 204, 94, CAST(N'2016-10-08T00:00:00.000' AS DateTime), CAST(N'2016-09-26T00:00:00.000' AS DateTime), N'Lisa Rodriguez', N'880 Arizona Terrace', NULL, N'Elena', NULL, N'5815', N'Argentina', CAST(3.1300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4163, 208, 49, CAST(N'2017-02-23T00:00:00.000' AS DateTime), CAST(N'2016-06-05T00:00:00.000' AS DateTime), N'Douglas Parker', N'79 Mariners Cove Plaza', NULL, N'Safashahr', NULL, NULL, N'Iran', CAST(1.8300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-26T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4164, 201, 23, CAST(N'2016-10-31T00:00:00.000' AS DateTime), CAST(N'2017-01-07T00:00:00.000' AS DateTime), N'Laura Stewart', N'97911 Meadow Ridge Road', NULL, N'Hexi', NULL, NULL, N'China', CAST(1.2400 AS Decimal(19, 4)), N'Checque', CAST(N'2017-03-08T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4165, 202, 27, CAST(N'2017-01-07T00:00:00.000' AS DateTime), CAST(N'2016-10-05T00:00:00.000' AS DateTime), N'Matthew Jordan', N'29 Lakewood Trail', NULL, N'Kalkal Barat', NULL, NULL, N'Indonesia', CAST(9.1900 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-03T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4166, 218, 61, CAST(N'2016-03-31T00:00:00.000' AS DateTime), CAST(N'2017-03-03T00:00:00.000' AS DateTime), N'Denise Mason', N'79 Carberry Alley', NULL, N'Va?n Gia~', NULL, NULL, N'Vietnam', CAST(7.7800 AS Decimal(19, 4)), N'Card', CAST(N'2016-03-23T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4167, 220, 56, CAST(N'2016-11-12T00:00:00.000' AS DateTime), CAST(N'2016-06-18T00:00:00.000' AS DateTime), N'Phillip Castillo', N'9910 Reindahl Parkway', NULL, N'Shangyanzhuang', NULL, NULL, N'China', CAST(2.4800 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-14T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4168, 201, 41, CAST(N'2016-07-10T00:00:00.000' AS DateTime), CAST(N'2016-07-29T00:00:00.000' AS DateTime), N'Dorothy Nelson', N'8 Hermina Terrace', NULL, N'Petrolina', NULL, N'56300-000', N'Brazil', CAST(1.5200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-11T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4169, 218, 100, CAST(N'2016-12-18T00:00:00.000' AS DateTime), CAST(N'2016-12-02T00:00:00.000' AS DateTime), N'Lawrence Willis', N'21 Northland Trail', NULL, N'Bukor', NULL, NULL, N'Serbia', CAST(2.2800 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-06T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4170, 218, 6, CAST(N'2016-10-31T00:00:00.000' AS DateTime), CAST(N'2016-10-20T00:00:00.000' AS DateTime), N'Jonathan Banks', N'5748 Kings Hill', NULL, N'Tianning', NULL, NULL, N'China', CAST(5.7100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-02T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4171, 211, 93, CAST(N'2016-11-16T00:00:00.000' AS DateTime), CAST(N'2017-01-20T00:00:00.000' AS DateTime), N'Gary Green', N'001 Straubel Point', NULL, N'Huangshapu', NULL, NULL, N'China', CAST(3.6000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-12T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4172, 203, 46, CAST(N'2016-10-16T00:00:00.000' AS DateTime), CAST(N'2016-09-08T00:00:00.000' AS DateTime), N'Nancy Bryant', N'367 Gateway Park', NULL, N'Zhutang', NULL, NULL, N'China', CAST(2.1900 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4173, 208, 72, CAST(N'2016-08-27T00:00:00.000' AS DateTime), CAST(N'2016-04-09T00:00:00.000' AS DateTime), N'Jeremy Rose', N'8 Service Lane', NULL, N'Jinshandian', NULL, NULL, N'China', CAST(8.0900 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-18T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4174, 212, 88, CAST(N'2016-06-25T00:00:00.000' AS DateTime), CAST(N'2016-08-21T00:00:00.000' AS DateTime), N'Rebecca Gibson', N'74 American Crossing', NULL, N'Canmang', NULL, NULL, N'China', CAST(1.3100 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-08T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4175, 208, 75, CAST(N'2017-02-28T00:00:00.000' AS DateTime), CAST(N'2017-01-03T00:00:00.000' AS DateTime), N'Marilyn Hanson', N'676 Service Crossing', NULL, N'Raclawice', NULL, N'32-222', N'Poland', CAST(2.8800 AS Decimal(19, 4)), N'Checque', CAST(N'2017-02-18T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4176, 204, 1, CAST(N'2016-09-23T00:00:00.000' AS DateTime), CAST(N'2016-08-16T00:00:00.000' AS DateTime), N'Denise Hanson', N'8 Lakewood Crossing', NULL, N'Huaizhong', NULL, NULL, N'China', CAST(9.4800 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-30T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4177, 204, 20, CAST(N'2017-03-02T00:00:00.000' AS DateTime), CAST(N'2016-12-27T00:00:00.000' AS DateTime), N'John Shaw', N'4752 Meadow Ridge Lane', NULL, N'Sosnovo-Ozerskoye', NULL, N'612955', N'Russia', CAST(7.1700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-21T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4178, 202, 30, CAST(N'2016-03-20T00:00:00.000' AS DateTime), CAST(N'2016-10-17T00:00:00.000' AS DateTime), N'Russell Fernandez', N'5941 Esch Lane', NULL, N'Shuiyang', NULL, NULL, N'China', CAST(1.0400 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-05T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4179, 202, 27, CAST(N'2017-01-14T00:00:00.000' AS DateTime), CAST(N'2016-07-31T00:00:00.000' AS DateTime), N'Annie Ruiz', N'67778 Butterfield Trail', NULL, N'Qalyub', NULL, NULL, N'Egypt', CAST(5.5100 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-12T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4180, 208, 1, CAST(N'2017-03-16T00:00:00.000' AS DateTime), CAST(N'2016-04-04T00:00:00.000' AS DateTime), N'Ashley Gonzales', N'88504 Johnson Street', NULL, N'Salingogan', NULL, N'6417', N'Philippines', CAST(7.5600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-26T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4181, 203, 70, CAST(N'2016-03-25T00:00:00.000' AS DateTime), CAST(N'2016-11-06T00:00:00.000' AS DateTime), N'Richard George', N'54 3rd Circle', NULL, N'Haibeitou', NULL, NULL, N'China', CAST(1.9900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-05T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4182, 219, 69, CAST(N'2016-04-11T00:00:00.000' AS DateTime), CAST(N'2017-02-03T00:00:00.000' AS DateTime), N'David Harris', N'2 Menomonie Pass', NULL, N'Oslo', N'Oslo', N'0188', N'Norway', CAST(1.9300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-30T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4183, 211, 25, CAST(N'2016-12-08T00:00:00.000' AS DateTime), CAST(N'2016-11-16T00:00:00.000' AS DateTime), N'Catherine Reynolds', N'302 Autumn Leaf Parkway', NULL, N'Lameiras', N'Lisboa', N'2715-145', N'Portugal', CAST(6.6800 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-02T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4184, 217, 73, CAST(N'2016-06-19T00:00:00.000' AS DateTime), CAST(N'2016-11-29T00:00:00.000' AS DateTime), N'Donald Moreno', N'690 Laurel Park', NULL, N'Sinisian', NULL, N'4212', N'Philippines', CAST(3.1000 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-06T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4185, 210, 34, CAST(N'2016-07-03T00:00:00.000' AS DateTime), CAST(N'2016-05-23T00:00:00.000' AS DateTime), N'Ryan Thomas', N'45044 Harper Place', NULL, N'Madinat Lab‘us', NULL, NULL, N'Yemen', CAST(6.3100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-27T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4186, 206, 91, CAST(N'2016-05-26T00:00:00.000' AS DateTime), CAST(N'2016-09-09T00:00:00.000' AS DateTime), N'Ruby Lynch', N'8350 Karstens Parkway', NULL, N'Puyo', NULL, NULL, N'Ecuador', CAST(6.0700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-10T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4187, 208, 64, CAST(N'2016-05-31T00:00:00.000' AS DateTime), CAST(N'2016-10-16T00:00:00.000' AS DateTime), N'Linda Robinson', N'6069 Chive Plaza', NULL, N'Joutseno', NULL, N'54101', N'Finland', CAST(3.1100 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4188, 216, 41, CAST(N'2017-02-07T00:00:00.000' AS DateTime), CAST(N'2016-03-28T00:00:00.000' AS DateTime), N'Bonnie Morris', N'2611 Comanche Junction', NULL, N'Lacombe', N'Alberta', N'T4L', N'Canada', CAST(2.5300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-31T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4189, 206, 51, CAST(N'2016-12-20T00:00:00.000' AS DateTime), CAST(N'2016-12-08T00:00:00.000' AS DateTime), N'Dennis Gardner', N'2348 Blue Bill Park Crossing', NULL, N'Ngkiong', NULL, NULL, N'Indonesia', CAST(5.1000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-28T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4190, 220, 54, CAST(N'2016-08-06T00:00:00.000' AS DateTime), CAST(N'2016-08-27T00:00:00.000' AS DateTime), N'Carolyn Matthews', N'817 Ohio Point', NULL, N'Orekhovo-Zuyevo', NULL, N'142609', N'Russia', CAST(7.5200 AS Decimal(19, 4)), N'Card', CAST(N'2016-03-22T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4191, 207, 96, CAST(N'2016-07-03T00:00:00.000' AS DateTime), CAST(N'2016-06-18T00:00:00.000' AS DateTime), N'Jesse Parker', N'3 Eastwood Terrace', NULL, N'Berezovo', NULL, NULL, N'Ukraine', CAST(6.6400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-07T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4192, 216, 18, CAST(N'2016-06-05T00:00:00.000' AS DateTime), CAST(N'2017-01-11T00:00:00.000' AS DateTime), N'Ann Gilbert', N'6 Oak Valley Lane', NULL, N'Caijiang', NULL, NULL, N'China', CAST(3.7200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-17T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4193, 208, 22, CAST(N'2016-06-26T00:00:00.000' AS DateTime), CAST(N'2017-02-22T00:00:00.000' AS DateTime), N'Martha Hawkins', N'57581 Union Road', NULL, N'Ilinden', NULL, N'1041', N'Macedonia', CAST(5.6400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-23T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4194, 207, 42, CAST(N'2017-02-03T00:00:00.000' AS DateTime), CAST(N'2017-01-08T00:00:00.000' AS DateTime), N'Jeffrey Hart', N'83 Green Ridge Point', NULL, N'Wangcheng', NULL, NULL, N'China', CAST(1.1500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-07T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4195, 217, 28, CAST(N'2016-10-18T00:00:00.000' AS DateTime), CAST(N'2016-05-01T00:00:00.000' AS DateTime), N'Joseph Riley', N'54373 Coleman Street', NULL, N'Karangbungur', NULL, NULL, N'Indonesia', CAST(5.9000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-23T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4196, 207, 78, CAST(N'2016-07-09T00:00:00.000' AS DateTime), CAST(N'2016-07-15T00:00:00.000' AS DateTime), N'Brian Dean', N'9 Stone Corner Hill', NULL, N'Dambulla', NULL, N'21100', N'Sri Lanka', CAST(5.1500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-09T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4197, 204, 38, CAST(N'2016-07-19T00:00:00.000' AS DateTime), CAST(N'2016-04-13T00:00:00.000' AS DateTime), N'Christine Campbell', N'47302 Porter Junction', NULL, N'Dananshan', NULL, NULL, N'China', CAST(6.7400 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-07T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4198, 201, 7, CAST(N'2017-03-02T00:00:00.000' AS DateTime), CAST(N'2016-08-16T00:00:00.000' AS DateTime), N'Ruth Mcdonald', N'401 Erie Avenue', NULL, N'Borkowice', NULL, N'26-422', N'Poland', CAST(3.2400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-17T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4199, 216, 87, CAST(N'2016-12-14T00:00:00.000' AS DateTime), CAST(N'2017-03-05T00:00:00.000' AS DateTime), N'Jean Armstrong', N'450 Sullivan Avenue', NULL, N'Carpenter', NULL, N'2009', N'Philippines', CAST(4.2500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-11T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4200, 218, 8, CAST(N'2017-02-01T00:00:00.000' AS DateTime), CAST(N'2016-04-17T00:00:00.000' AS DateTime), N'Gary Price', N'775 Butterfield Lane', NULL, N'Vaasa', NULL, N'66999', N'Finland', CAST(5.3600 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-09T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4201, 217, 77, CAST(N'2016-11-10T00:00:00.000' AS DateTime), CAST(N'2016-11-13T00:00:00.000' AS DateTime), N'Carolyn Scott', N'5878 Badeau Lane', NULL, N'Kazanskaya', NULL, N'396614', N'Russia', CAST(7.9400 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-09T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4202, 204, 10, CAST(N'2016-08-12T00:00:00.000' AS DateTime), CAST(N'2016-03-21T00:00:00.000' AS DateTime), N'Earl Anderson', N'9 Roth Court', NULL, N'Governor’s Harbour', NULL, NULL, N'Bahamas', CAST(2.4700 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-06T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4203, 204, 54, CAST(N'2016-05-26T00:00:00.000' AS DateTime), CAST(N'2016-04-18T00:00:00.000' AS DateTime), N'Elizabeth Kelley', N'70 Burrows Street', NULL, N'Fucheng', NULL, NULL, N'China', CAST(9.9400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-24T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4204, 208, 58, CAST(N'2017-03-09T00:00:00.000' AS DateTime), CAST(N'2016-04-17T00:00:00.000' AS DateTime), N'Julia Wilson', N'46476 Burning Wood Crossing', NULL, N'Koper', NULL, N'6600', N'Slovenia', CAST(3.8200 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-26T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4205, 208, 85, CAST(N'2016-05-04T00:00:00.000' AS DateTime), CAST(N'2016-03-18T00:00:00.000' AS DateTime), N'Jeffrey Oliver', N'39 Tennessee Avenue', NULL, N'Jejkowice', NULL, N'44-290', N'Poland', CAST(7.2200 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-23T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4206, 220, 8, CAST(N'2016-06-16T00:00:00.000' AS DateTime), CAST(N'2017-01-03T00:00:00.000' AS DateTime), N'Angela Walker', N'579 Miller Street', NULL, N'Hà Tinh', NULL, NULL, N'Vietnam', CAST(1.0400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-18T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4207, 212, 55, CAST(N'2016-07-04T00:00:00.000' AS DateTime), CAST(N'2016-11-09T00:00:00.000' AS DateTime), N'Karen Hansen', N'953 Manufacturers Pass', NULL, N'Lysekil', N'Västra Götaland', N'453 35', N'Sweden', CAST(8.8100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-03-18T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4208, 217, 96, CAST(N'2016-10-26T00:00:00.000' AS DateTime), CAST(N'2016-07-11T00:00:00.000' AS DateTime), N'Patricia West', N'1 Browning Alley', NULL, N'Huayang', NULL, NULL, N'China', CAST(7.5400 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-15T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4209, 203, 71, CAST(N'2016-08-04T00:00:00.000' AS DateTime), CAST(N'2017-01-01T00:00:00.000' AS DateTime), N'Phillip Gardner', N'30438 Mariners Cove Way', NULL, N'Phu Khiao', NULL, N'36110', N'Thailand', CAST(3.0300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-03-31T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4210, 207, 30, CAST(N'2017-03-08T00:00:00.000' AS DateTime), CAST(N'2016-07-21T00:00:00.000' AS DateTime), N'Fred Howard', N'45981 Hovde Trail', NULL, N'Suncheon', NULL, NULL, N'South Korea', CAST(1.1300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-14T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4211, 217, 57, CAST(N'2016-05-28T00:00:00.000' AS DateTime), CAST(N'2017-03-11T00:00:00.000' AS DateTime), N'George Wagner', N'24863 Messerschmidt Road', NULL, N'Ningzhong', NULL, NULL, N'China', CAST(6.5000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-26T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4212, 213, 19, CAST(N'2016-11-28T00:00:00.000' AS DateTime), CAST(N'2016-06-09T00:00:00.000' AS DateTime), N'Clarence Russell', N'85 Kropf Circle', NULL, N'Ouro Branco', NULL, N'59347-000', N'Brazil', CAST(6.8800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-02T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4213, 217, 51, CAST(N'2016-06-25T00:00:00.000' AS DateTime), CAST(N'2016-05-25T00:00:00.000' AS DateTime), N'Jane Johnston', N'1708 Corscot Pass', NULL, N'Safashahr', NULL, NULL, N'Iran', CAST(9.1600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-12T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4214, 203, 88, CAST(N'2017-02-19T00:00:00.000' AS DateTime), CAST(N'2016-03-25T00:00:00.000' AS DateTime), N'John Adams', N'100 Hollow Ridge Way', NULL, N'Satita', NULL, NULL, N'Syria', CAST(3.0100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-19T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4215, 202, 12, CAST(N'2017-01-26T00:00:00.000' AS DateTime), CAST(N'2016-10-07T00:00:00.000' AS DateTime), N'Diana Graham', N'12 Esch Park', NULL, N'Krasnokamensk', NULL, N'662955', N'Russia', CAST(9.2900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-10T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4216, 211, 66, CAST(N'2016-07-19T00:00:00.000' AS DateTime), CAST(N'2016-11-30T00:00:00.000' AS DateTime), N'John Henry', N'448 Hanover Trail', NULL, N'Phitsanulok', NULL, N'65000', N'Thailand', CAST(7.2300 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-22T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4217, 218, 98, CAST(N'2016-11-20T00:00:00.000' AS DateTime), CAST(N'2016-11-12T00:00:00.000' AS DateTime), N'Donna Bradley', N'92136 Arkansas Avenue', NULL, N'Balong Wetan', NULL, NULL, N'Indonesia', CAST(7.7900 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-18T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4218, 206, 5, CAST(N'2016-05-04T00:00:00.000' AS DateTime), CAST(N'2016-08-19T00:00:00.000' AS DateTime), N'Kevin Harper', N'2911 Laurel Point', NULL, N'Patapan', NULL, NULL, N'Indonesia', CAST(1.5200 AS Decimal(19, 4)), N'Card', CAST(N'2016-03-20T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4219, 205, 76, CAST(N'2016-11-15T00:00:00.000' AS DateTime), CAST(N'2016-12-12T00:00:00.000' AS DateTime), N'Margaret Hanson', N'9603 Northridge Junction', NULL, N'Mwembe', NULL, NULL, N'Tanzania', CAST(4.7600 AS Decimal(19, 4)), N'Cash', CAST(N'2017-03-14T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4220, 206, 62, CAST(N'2016-12-30T00:00:00.000' AS DateTime), CAST(N'2016-10-23T00:00:00.000' AS DateTime), N'Henry Bradley', N'84 Lake View Plaza', NULL, N'Zheleznovodsk', NULL, N'357408', N'Russia', CAST(8.0800 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-23T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4221, 218, 91, CAST(N'2016-08-07T00:00:00.000' AS DateTime), CAST(N'2016-08-31T00:00:00.000' AS DateTime), N'Jane Fowler', N'2484 Hoepker Hill', NULL, N'Huangcun', NULL, NULL, N'China', CAST(9.3400 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-10T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4222, 207, 19, CAST(N'2016-05-22T00:00:00.000' AS DateTime), CAST(N'2016-06-25T00:00:00.000' AS DateTime), N'Kimberly Peterson', N'5851 Carey Crossing', NULL, N'Pochuta', NULL, N'04008', N'Guatemala', CAST(9.1600 AS Decimal(19, 4)), N'Card', CAST(N'2016-04-25T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4223, 203, 69, CAST(N'2017-02-13T00:00:00.000' AS DateTime), CAST(N'2016-09-18T00:00:00.000' AS DateTime), N'Nicholas Simpson', N'9 Hudson Way', NULL, N'Chashan', NULL, NULL, N'China', CAST(5.3700 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-01T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4224, 214, 71, CAST(N'2017-02-28T00:00:00.000' AS DateTime), CAST(N'2016-06-18T00:00:00.000' AS DateTime), N'Carol Rodriguez', N'78 Grayhawk Place', NULL, N'Luntas', NULL, NULL, N'Indonesia', CAST(1.7600 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-06T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4225, 207, 34, CAST(N'2017-03-06T00:00:00.000' AS DateTime), CAST(N'2016-07-20T00:00:00.000' AS DateTime), N'Jessica Mason', N'65 Merrick Lane', NULL, N'Križanov', NULL, N'789 01', N'Czech Republic', CAST(9.7500 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-28T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4226, 209, 74, CAST(N'2016-06-04T00:00:00.000' AS DateTime), CAST(N'2017-01-15T00:00:00.000' AS DateTime), N'Jeffrey Sims', N'05441 Wayridge Pass', NULL, N'Rennes', N'Bretagne', N'35047 CEDEX 9', N'France', CAST(9.0900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-19T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4227, 205, 74, CAST(N'2016-09-09T00:00:00.000' AS DateTime), CAST(N'2017-01-06T00:00:00.000' AS DateTime), N'Arthur Simmons', N'733 Logan Circle', NULL, N'Dzhankoy', NULL, NULL, N'Ukraine', CAST(2.5100 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-25T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4228, 207, 52, CAST(N'2017-01-30T00:00:00.000' AS DateTime), CAST(N'2017-01-08T00:00:00.000' AS DateTime), N'Kevin Williams', N'3561 6th Trail', NULL, N'Narganá', NULL, NULL, N'Panama', CAST(7.3200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-24T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4229, 209, 76, CAST(N'2016-05-05T00:00:00.000' AS DateTime), CAST(N'2016-07-11T00:00:00.000' AS DateTime), N'Joe Stewart', N'0314 Ryan Parkway', NULL, N'San Jose', N'Oaxaca', N'69570', N'Mexico', CAST(9.2800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-06T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4230, 214, 2, CAST(N'2016-09-19T00:00:00.000' AS DateTime), CAST(N'2016-09-08T00:00:00.000' AS DateTime), N'Walter Barnes', N'80695 Stone Corner Road', NULL, N'Busdi', NULL, N'6210', N'Philippines', CAST(5.9700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-19T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4231, 211, 55, CAST(N'2016-08-27T00:00:00.000' AS DateTime), CAST(N'2016-10-04T00:00:00.000' AS DateTime), N'Sean Holmes', N'91 Becker Drive', NULL, N'Gezan', NULL, NULL, N'China', CAST(3.8100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-14T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4232, 209, 14, CAST(N'2016-04-01T00:00:00.000' AS DateTime), CAST(N'2017-03-06T00:00:00.000' AS DateTime), N'Sandra Perez', N'45373 Buhler Park', NULL, N'Ust’-Kut', NULL, N'162176', N'Russia', CAST(4.2500 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-22T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4233, 205, 96, CAST(N'2016-09-27T00:00:00.000' AS DateTime), CAST(N'2016-07-03T00:00:00.000' AS DateTime), N'Sara Kelly', N'73457 Buhler Court', NULL, N'Sima', NULL, NULL, N'Comoros', CAST(7.2000 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-14T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4234, 217, 74, CAST(N'2016-11-22T00:00:00.000' AS DateTime), CAST(N'2017-01-18T00:00:00.000' AS DateTime), N'Edward Reid', N'02 Westport Trail', NULL, N'Tchaourou', NULL, NULL, N'Benin', CAST(3.5000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-25T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4235, 206, 69, CAST(N'2016-03-17T00:00:00.000' AS DateTime), CAST(N'2016-10-29T00:00:00.000' AS DateTime), N'Betty Cook', N'83578 Ohio Avenue', NULL, N'Stockholm', N'Stockholm', N'101 22', N'Sweden', CAST(6.1700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-02T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4236, 217, 97, CAST(N'2017-02-06T00:00:00.000' AS DateTime), CAST(N'2016-07-01T00:00:00.000' AS DateTime), N'Diana Ellis', N'49 Jenna Circle', NULL, N'Yanshan', NULL, NULL, N'China', CAST(6.0600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-16T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4237, 216, 17, CAST(N'2016-11-30T00:00:00.000' AS DateTime), CAST(N'2016-10-02T00:00:00.000' AS DateTime), N'Donald Miller', N'8581 Farragut Junction', NULL, N'Yosowilangun', NULL, NULL, N'Indonesia', CAST(8.9000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-01T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4238, 203, 21, CAST(N'2017-02-09T00:00:00.000' AS DateTime), CAST(N'2016-12-14T00:00:00.000' AS DateTime), N'Eric Coleman', N'9242 Badeau Street', NULL, N'Caiyuan', NULL, NULL, N'China', CAST(4.1000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-07T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4239, 213, 23, CAST(N'2016-09-15T00:00:00.000' AS DateTime), CAST(N'2016-11-04T00:00:00.000' AS DateTime), N'Heather Vasquez', N'454 Gale Hill', NULL, N'Susoh', NULL, NULL, N'Indonesia', CAST(1.5900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-25T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4240, 208, 2, CAST(N'2016-05-28T00:00:00.000' AS DateTime), CAST(N'2016-05-21T00:00:00.000' AS DateTime), N'Martin Sims', N'30 Bunting Center', NULL, N'Efeng', NULL, NULL, N'China', CAST(1.9200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-15T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4241, 202, 85, CAST(N'2017-02-05T00:00:00.000' AS DateTime), CAST(N'2016-08-13T00:00:00.000' AS DateTime), N'Catherine Washington', N'637 Hermina Court', NULL, N'San Francisco', N'Jalisco', N'46175', N'Mexico', CAST(6.4900 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-20T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4242, 204, 17, CAST(N'2016-10-04T00:00:00.000' AS DateTime), CAST(N'2016-05-13T00:00:00.000' AS DateTime), N'Gary Kennedy', N'2 Grasskamp Point', NULL, N'Famaillá', NULL, N'4132', N'Argentina', CAST(9.7800 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-03T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4243, 205, 86, CAST(N'2016-04-15T00:00:00.000' AS DateTime), CAST(N'2016-05-25T00:00:00.000' AS DateTime), N'Pamela Parker', N'43642 Utah Point', NULL, N'Santa Rosa', N'Nuevo Leon', N'67803', N'Mexico', CAST(1.7800 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-16T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4244, 208, 3, CAST(N'2016-08-02T00:00:00.000' AS DateTime), CAST(N'2017-03-13T00:00:00.000' AS DateTime), N'Michelle Russell', N'947 Jenna Place', NULL, N'Kinshasa', NULL, NULL, N'Democratic Republic of the Congo', CAST(8.4300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-13T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4245, 210, 32, CAST(N'2016-06-16T00:00:00.000' AS DateTime), CAST(N'2016-07-14T00:00:00.000' AS DateTime), N'Lois Jenkins', N'1 Pepper Wood Road', NULL, N'Kallinge', N'Blekinge', N'372 53', N'Sweden', CAST(4.7700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-03-17T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4246, 203, 39, CAST(N'2017-02-04T00:00:00.000' AS DateTime), CAST(N'2016-08-08T00:00:00.000' AS DateTime), N'Kelly Ramirez', N'20490 Eagle Crest Circle', NULL, N'Baraba', NULL, N'623509', N'Russia', CAST(8.6500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-04T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4247, 202, 24, CAST(N'2016-05-05T00:00:00.000' AS DateTime), CAST(N'2016-11-26T00:00:00.000' AS DateTime), N'Harold Gray', N'9033 Elmside Plaza', NULL, N'N’dalatando', NULL, NULL, N'Angola', CAST(2.7800 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-24T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4248, 210, 16, CAST(N'2017-01-27T00:00:00.000' AS DateTime), CAST(N'2017-03-14T00:00:00.000' AS DateTime), N'Dennis Fisher', N'4 Sage Road', NULL, N'Niederanven', NULL, N'L-6948', N'Luxembourg', CAST(1.2600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-12T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4249, 203, 20, CAST(N'2016-07-21T00:00:00.000' AS DateTime), CAST(N'2016-12-08T00:00:00.000' AS DateTime), N'Antonio Wells', N'99743 Algoma Hill', NULL, N'Mudiyah', NULL, NULL, N'Yemen', CAST(4.3600 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-28T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4250, 217, 88, CAST(N'2016-05-31T00:00:00.000' AS DateTime), CAST(N'2016-10-17T00:00:00.000' AS DateTime), N'William Gonzales', N'3258 Holy Cross Way', NULL, N'Yangdun', NULL, NULL, N'China', CAST(7.0600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-13T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4251, 211, 1, CAST(N'2017-03-04T00:00:00.000' AS DateTime), CAST(N'2016-10-27T00:00:00.000' AS DateTime), N'Ronald Ward', N'5 Logan Terrace', NULL, N'Tanahmerah', NULL, NULL, N'Indonesia', CAST(4.3800 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-22T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4252, 217, 87, CAST(N'2016-12-29T00:00:00.000' AS DateTime), CAST(N'2016-09-18T00:00:00.000' AS DateTime), N'Gloria Boyd', N'10 Grayhawk Hill', NULL, N'Boromlya', NULL, NULL, N'Ukraine', CAST(4.8400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-01T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4253, 212, 99, CAST(N'2017-02-02T00:00:00.000' AS DateTime), CAST(N'2016-04-28T00:00:00.000' AS DateTime), N'Raymond Scott', N'3 Donald Trail', NULL, N'Lakshmipur', NULL, N'1553', N'Bangladesh', CAST(8.3700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-06T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4254, 201, 7, CAST(N'2016-11-28T00:00:00.000' AS DateTime), CAST(N'2016-04-11T00:00:00.000' AS DateTime), N'Arthur Hamilton', N'95 Doe Crossing Avenue', NULL, N'Purwosari', NULL, NULL, N'Indonesia', CAST(6.8400 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-14T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4255, 220, 100, CAST(N'2016-09-30T00:00:00.000' AS DateTime), CAST(N'2016-10-08T00:00:00.000' AS DateTime), N'Jean Wagner', N'5690 Meadow Valley Alley', NULL, N'Svedala', N'Skåne', N'233 94', N'Sweden', CAST(8.5700 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-06T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4256, 218, 78, CAST(N'2016-04-28T00:00:00.000' AS DateTime), CAST(N'2016-04-03T00:00:00.000' AS DateTime), N'Kimberly Rose', N'6067 Twin Pines Hill', NULL, N'Capinzal', NULL, N'89665-000', N'Brazil', CAST(6.0700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-18T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4257, 213, 44, CAST(N'2016-11-04T00:00:00.000' AS DateTime), CAST(N'2016-03-28T00:00:00.000' AS DateTime), N'Doris Foster', N'170 Chive Court', NULL, N'Lang', NULL, NULL, N'China', CAST(1.7200 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-20T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4258, 208, 46, CAST(N'2017-01-11T00:00:00.000' AS DateTime), CAST(N'2016-09-25T00:00:00.000' AS DateTime), N'Teresa Reynolds', N'3 Prairie Rose Alley', NULL, N'Tashang', NULL, NULL, N'China', CAST(4.8400 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-16T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4259, 215, 89, CAST(N'2016-07-07T00:00:00.000' AS DateTime), CAST(N'2016-12-29T00:00:00.000' AS DateTime), N'Christine Turner', N'0746 Heffernan Center', NULL, N'Henggang', NULL, NULL, N'China', CAST(6.8100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-21T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4260, 210, 23, CAST(N'2016-10-26T00:00:00.000' AS DateTime), CAST(N'2017-02-10T00:00:00.000' AS DateTime), N'Jimmy Jordan', N'903 Anniversary Trail', NULL, N'Elaiochóri', NULL, NULL, N'Greece', CAST(9.6600 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-10T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4261, 207, 20, CAST(N'2016-11-07T00:00:00.000' AS DateTime), CAST(N'2017-02-17T00:00:00.000' AS DateTime), N'Andrew Baker', N'3 Pennsylvania Park', NULL, N'Kansas City', N'Missouri', N'64130', N'United States', CAST(5.4600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-20T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4262, 203, 32, CAST(N'2017-02-21T00:00:00.000' AS DateTime), CAST(N'2016-11-17T00:00:00.000' AS DateTime), N'Diana Dixon', N'18520 Maryland Drive', NULL, N'Santa Catalina', NULL, N'2701', N'Philippines', CAST(4.6600 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-09T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4263, 210, 10, CAST(N'2017-02-28T00:00:00.000' AS DateTime), CAST(N'2017-02-26T00:00:00.000' AS DateTime), N'Karen Miller', N'5608 Moose Court', NULL, N'Torres Vedras', N'Lisboa', N'2560-234', N'Portugal', CAST(5.7100 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-30T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4264, 214, 39, CAST(N'2017-01-09T00:00:00.000' AS DateTime), CAST(N'2016-10-24T00:00:00.000' AS DateTime), N'Angela Austin', N'9659 Vera Point', NULL, N'Santiaoshi', NULL, NULL, N'China', CAST(6.5900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-07T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4265, 203, 3, CAST(N'2016-11-11T00:00:00.000' AS DateTime), CAST(N'2016-11-22T00:00:00.000' AS DateTime), N'Steve Snyder', N'7626 Hoepker Junction', NULL, N'Wulan Hada', NULL, NULL, N'China', CAST(5.6700 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-01T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4266, 218, 94, CAST(N'2016-04-06T00:00:00.000' AS DateTime), CAST(N'2016-10-02T00:00:00.000' AS DateTime), N'Kevin Daniels', N'24 Chinook Point', NULL, N'Bhairahawa', NULL, NULL, N'Nepal', CAST(8.2100 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-12T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4267, 203, 58, CAST(N'2016-11-14T00:00:00.000' AS DateTime), CAST(N'2016-03-28T00:00:00.000' AS DateTime), N'Patricia Welch', N'60375 Corry Street', NULL, N'Solidaridad', N'Veracruz Llave', N'94330', N'Mexico', CAST(2.7700 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-02T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4268, 218, 2, CAST(N'2016-07-02T00:00:00.000' AS DateTime), CAST(N'2016-08-14T00:00:00.000' AS DateTime), N'Wanda Reynolds', N'965 Calypso Circle', NULL, N'Dera Bugti', NULL, N'80100', N'Pakistan', CAST(8.8600 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-30T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4269, 216, 47, CAST(N'2017-03-11T00:00:00.000' AS DateTime), CAST(N'2016-07-16T00:00:00.000' AS DateTime), N'Harold Williamson', N'14332 Texas Junction', NULL, N'Mzimba', NULL, NULL, N'Malawi', CAST(2.4700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-01T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4270, 213, 62, CAST(N'2016-11-09T00:00:00.000' AS DateTime), CAST(N'2017-02-07T00:00:00.000' AS DateTime), N'Juan Fox', N'17 Eagan Crossing', NULL, N'Xiayang', NULL, NULL, N'China', CAST(7.6300 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-17T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4271, 211, 70, CAST(N'2016-04-16T00:00:00.000' AS DateTime), CAST(N'2016-04-26T00:00:00.000' AS DateTime), N'Ryan Long', N'0 Harper Circle', NULL, N'Blagoveshchenka', NULL, N'658670', N'Russia', CAST(3.2000 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-10T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4272, 206, 29, CAST(N'2016-03-25T00:00:00.000' AS DateTime), CAST(N'2016-10-07T00:00:00.000' AS DateTime), N'Frank Cole', N'07 Westend Place', NULL, N'Laixi', NULL, NULL, N'China', CAST(1.9300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-01T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4273, 209, 25, CAST(N'2016-05-06T00:00:00.000' AS DateTime), CAST(N'2016-04-13T00:00:00.000' AS DateTime), N'Tammy Wilson', N'74278 Grim Pass', NULL, N'Åkersberga', N'Stockholm', N'184 70', N'Sweden', CAST(2.8300 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-29T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4274, 206, 82, CAST(N'2017-02-07T00:00:00.000' AS DateTime), CAST(N'2017-03-06T00:00:00.000' AS DateTime), N'Joan Gonzales', N'40 Stephen Street', NULL, N'Tlogoagung', NULL, NULL, N'Indonesia', CAST(3.4400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-14T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4275, 203, 91, CAST(N'2016-10-10T00:00:00.000' AS DateTime), CAST(N'2016-11-04T00:00:00.000' AS DateTime), N'Jeffrey Hughes', N'38 Toban Plaza', NULL, N'Privas', N'Rhône-Alpes', N'07004 CEDEX', N'France', CAST(8.3300 AS Decimal(19, 4)), N'Card', CAST(N'2016-04-23T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4276, 210, 89, CAST(N'2016-05-14T00:00:00.000' AS DateTime), CAST(N'2016-09-03T00:00:00.000' AS DateTime), N'Rachel Martin', N'08 Lake View Hill', NULL, N'Sandgerði', NULL, N'245', N'Iceland', CAST(2.0700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-07T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4277, 208, 97, CAST(N'2016-04-06T00:00:00.000' AS DateTime), CAST(N'2016-07-02T00:00:00.000' AS DateTime), N'Laura Harper', N'1 Dexter Street', NULL, N'Xintaimen', NULL, NULL, N'China', CAST(8.0800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-11T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4278, 215, 3, CAST(N'2017-03-04T00:00:00.000' AS DateTime), CAST(N'2017-03-08T00:00:00.000' AS DateTime), N'Annie Rivera', N'5975 Debra Park', NULL, N'Canchaque', NULL, NULL, N'Peru', CAST(5.6500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-09T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4279, 201, 6, CAST(N'2017-03-01T00:00:00.000' AS DateTime), CAST(N'2016-08-06T00:00:00.000' AS DateTime), N'Pamela Graham', N'2 Monument Avenue', NULL, N'Danxi', NULL, NULL, N'China', CAST(2.0500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-23T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4280, 202, 35, CAST(N'2017-02-04T00:00:00.000' AS DateTime), CAST(N'2016-06-09T00:00:00.000' AS DateTime), N'Joseph Jenkins', N'00001 Fairfield Center', NULL, N'Mashtul as Suq', NULL, NULL, N'Egypt', CAST(5.3200 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-28T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4281, 203, 76, CAST(N'2016-05-19T00:00:00.000' AS DateTime), CAST(N'2016-07-29T00:00:00.000' AS DateTime), N'Eugene Garcia', N'8308 Onsgard Lane', NULL, N'Limoncito', NULL, NULL, N'Bolivia', CAST(4.0700 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-20T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4282, 204, 27, CAST(N'2016-07-20T00:00:00.000' AS DateTime), CAST(N'2016-09-26T00:00:00.000' AS DateTime), N'Kevin Anderson', N'8 Thierer Center', NULL, N'Saint-Étienne', N'Rhône-Alpes', N'42963 CEDEX 9', N'France', CAST(4.8800 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-21T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4283, 214, 50, CAST(N'2016-11-27T00:00:00.000' AS DateTime), CAST(N'2016-06-14T00:00:00.000' AS DateTime), N'Robin Parker', N'51949 Forster Parkway', NULL, N'Laval', N'Pays de la Loire', N'53009 CEDEX', N'France', CAST(1.0400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-20T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4284, 214, 74, CAST(N'2016-11-29T00:00:00.000' AS DateTime), CAST(N'2016-12-08T00:00:00.000' AS DateTime), N'Kelly Palmer', N'2 Hauk Hill', NULL, N'Östersund', N'Jämtland', N'831 17', N'Sweden', CAST(4.2600 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-08T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4285, 214, 76, CAST(N'2016-10-22T00:00:00.000' AS DateTime), CAST(N'2016-05-05T00:00:00.000' AS DateTime), N'Diane Freeman', N'5441 Petterle Way', NULL, N'El Tambo', NULL, NULL, N'Peru', CAST(7.1700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-27T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4286, 209, 96, CAST(N'2016-11-08T00:00:00.000' AS DateTime), CAST(N'2016-08-26T00:00:00.000' AS DateTime), N'Kathleen Adams', N'423 Talisman Point', NULL, N'Kurume', NULL, N'963-8846', N'Japan', CAST(1.9900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-19T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4287, 204, 76, CAST(N'2016-10-18T00:00:00.000' AS DateTime), CAST(N'2017-01-15T00:00:00.000' AS DateTime), N'Teresa Mendoza', N'818 Atwood Lane', NULL, N'Mosteiro', N'Viana do Castelo', N'4980-125', N'Portugal', CAST(3.2900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-03T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4288, 210, 45, CAST(N'2016-10-15T00:00:00.000' AS DateTime), CAST(N'2016-12-14T00:00:00.000' AS DateTime), N'Irene Anderson', N'4 Rutledge Alley', NULL, N'Saparua', NULL, NULL, N'Indonesia', CAST(4.3500 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-13T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4289, 209, 61, CAST(N'2017-02-12T00:00:00.000' AS DateTime), CAST(N'2016-07-15T00:00:00.000' AS DateTime), N'Terry Bennett', N'351 Johnson Circle', NULL, N'Quiling', NULL, N'2902', N'Philippines', CAST(6.7700 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-20T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4290, 203, 1, CAST(N'2017-03-02T00:00:00.000' AS DateTime), CAST(N'2016-08-25T00:00:00.000' AS DateTime), N'Ronald Mccoy', N'73609 Waywood Center', NULL, N'Zheleznodorozhnyy', NULL, N'238411', N'Russia', CAST(1.0500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-10T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4291, 211, 73, CAST(N'2016-09-13T00:00:00.000' AS DateTime), CAST(N'2016-04-17T00:00:00.000' AS DateTime), N'Andrew Matthews', N'820 Lawn Crossing', NULL, N'Japeri', NULL, N'26400-000', N'Brazil', CAST(1.2200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-08T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4292, 215, 15, CAST(N'2016-12-26T00:00:00.000' AS DateTime), CAST(N'2016-10-04T00:00:00.000' AS DateTime), N'Melissa Chapman', N'88384 Ohio Park', NULL, N'Dayr al Ghusun', NULL, NULL, N'Palestinian Territory', CAST(9.8900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-14T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4293, 210, 18, CAST(N'2016-11-23T00:00:00.000' AS DateTime), CAST(N'2016-12-12T00:00:00.000' AS DateTime), N'Russell Griffin', N'6 Eliot Lane', NULL, N'Changshu City', NULL, NULL, N'China', CAST(9.3700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-10T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4294, 206, 95, CAST(N'2016-06-24T00:00:00.000' AS DateTime), CAST(N'2017-01-21T00:00:00.000' AS DateTime), N'Jeffrey Gray', N'04078 Hudson Drive', NULL, N'Luangwa', NULL, NULL, N'Zambia', CAST(2.5800 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4295, 215, 85, CAST(N'2016-10-23T00:00:00.000' AS DateTime), CAST(N'2017-01-29T00:00:00.000' AS DateTime), N'Lori Frazier', N'724 Logan Drive', NULL, N'Gent', N'Vlaanderen', N'9052', N'Belgium', CAST(8.5900 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-01T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4296, 217, 83, CAST(N'2016-04-08T00:00:00.000' AS DateTime), CAST(N'2017-02-07T00:00:00.000' AS DateTime), N'Joan Ortiz', N'90 Merchant Avenue', NULL, N'Irasan', NULL, N'3120', N'Philippines', CAST(4.6400 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-01T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4297, 211, 29, CAST(N'2016-07-13T00:00:00.000' AS DateTime), CAST(N'2017-02-06T00:00:00.000' AS DateTime), N'John Stanley', N'680 Artisan Pass', NULL, N'Borås', N'Västra Götaland', N'504 75', N'Sweden', CAST(1.7700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-12T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4298, 208, 65, CAST(N'2016-12-28T00:00:00.000' AS DateTime), CAST(N'2016-04-19T00:00:00.000' AS DateTime), N'Dorothy Bell', N'397 Kim Place', NULL, N'Zhongxin', NULL, NULL, N'China', CAST(1.2000 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-28T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4299, 201, 43, CAST(N'2017-01-12T00:00:00.000' AS DateTime), CAST(N'2016-08-07T00:00:00.000' AS DateTime), N'Doris Ramirez', N'181 Prentice Terrace', NULL, N'Severnyy', NULL, N'141707', N'Russia', CAST(2.6500 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-13T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4300, 207, 27, CAST(N'2016-11-10T00:00:00.000' AS DateTime), CAST(N'2016-11-01T00:00:00.000' AS DateTime), N'Elizabeth Harrison', N'067 Talisman Trail', NULL, N'Guangang', NULL, NULL, N'China', CAST(4.7800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-30T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4301, 206, 64, CAST(N'2016-08-14T00:00:00.000' AS DateTime), CAST(N'2017-01-13T00:00:00.000' AS DateTime), N'Judith Howard', N'55095 Sloan Alley', NULL, N'Longhua', NULL, NULL, N'China', CAST(1.9300 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-29T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4302, 213, 33, CAST(N'2017-01-19T00:00:00.000' AS DateTime), CAST(N'2016-05-23T00:00:00.000' AS DateTime), N'Julia Simpson', N'87375 Londonderry Parkway', NULL, N'Fufang', NULL, NULL, N'China', CAST(9.2300 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4303, 220, 49, CAST(N'2016-08-01T00:00:00.000' AS DateTime), CAST(N'2016-04-23T00:00:00.000' AS DateTime), N'Elizabeth Bell', N'60 Ridgeview Trail', NULL, N'Infantas', N'Braga', N'4810-578', N'Portugal', CAST(3.2200 AS Decimal(19, 4)), N'Checque', CAST(N'2017-02-01T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4304, 217, 56, CAST(N'2016-09-07T00:00:00.000' AS DateTime), CAST(N'2016-08-13T00:00:00.000' AS DateTime), N'Ernest Andrews', N'231 Graceland Terrace', NULL, N'Pindamonhangaba', NULL, N'12400-000', N'Brazil', CAST(2.7700 AS Decimal(19, 4)), N'Card', CAST(N'2016-04-04T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4305, 219, 44, CAST(N'2016-06-11T00:00:00.000' AS DateTime), CAST(N'2016-03-27T00:00:00.000' AS DateTime), N'Jeffrey Lopez', N'76434 Havey Court', NULL, N'Khvalovo', NULL, N'187435', N'Russia', CAST(8.8400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-14T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4306, 212, 16, CAST(N'2016-05-29T00:00:00.000' AS DateTime), CAST(N'2016-12-31T00:00:00.000' AS DateTime), N'Ralph Weaver', N'15 Armistice Alley', NULL, N'Odienné', NULL, NULL, N'Ivory Coast', CAST(7.1000 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-09T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4307, 210, 16, CAST(N'2016-10-19T00:00:00.000' AS DateTime), CAST(N'2017-01-10T00:00:00.000' AS DateTime), N'Mary Stevens', N'1928 Aberg Park', NULL, N'Dzwola', NULL, N'23-304', N'Poland', CAST(4.0400 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-24T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4308, 220, 50, CAST(N'2016-09-23T00:00:00.000' AS DateTime), CAST(N'2016-09-16T00:00:00.000' AS DateTime), N'Douglas Welch', N'9 Ryan Circle', NULL, N'Babakanloa', NULL, NULL, N'Indonesia', CAST(1.1100 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-13T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4309, 217, 99, CAST(N'2016-10-17T00:00:00.000' AS DateTime), CAST(N'2017-01-01T00:00:00.000' AS DateTime), N'Raymond Cruz', N'0402 Burning Wood Alley', NULL, N'Bucay', NULL, N'2805', N'Philippines', CAST(9.2700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-02T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4310, 219, 65, CAST(N'2016-04-14T00:00:00.000' AS DateTime), CAST(N'2016-05-14T00:00:00.000' AS DateTime), N'Sara Frazier', N'43 Truax Terrace', NULL, N'Halton', N'England', N'LS9', N'United Kingdom', CAST(5.5600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-04T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4311, 220, 17, CAST(N'2017-02-03T00:00:00.000' AS DateTime), CAST(N'2016-07-09T00:00:00.000' AS DateTime), N'Sarah Lane', N'414 Gina Point', NULL, N'Fulong', NULL, NULL, N'China', CAST(3.3500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-27T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4312, 205, 77, CAST(N'2017-02-27T00:00:00.000' AS DateTime), CAST(N'2016-04-10T00:00:00.000' AS DateTime), N'Michelle Bradley', N'16664 Towne Point', NULL, N'Yangchun', NULL, NULL, N'China', CAST(8.6400 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-28T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4313, 210, 68, CAST(N'2016-08-29T00:00:00.000' AS DateTime), CAST(N'2016-10-27T00:00:00.000' AS DateTime), N'Marie Porter', N'7802 Hovde Plaza', NULL, N'Redakodi', NULL, NULL, N'Indonesia', CAST(1.9700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-08T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4314, 207, 41, CAST(N'2016-08-08T00:00:00.000' AS DateTime), CAST(N'2016-08-31T00:00:00.000' AS DateTime), N'Melissa Moore', N'438 Mendota Way', NULL, N'Bensonville', NULL, NULL, N'Liberia', CAST(7.9700 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-17T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4315, 212, 96, CAST(N'2016-08-08T00:00:00.000' AS DateTime), CAST(N'2016-07-27T00:00:00.000' AS DateTime), N'Katherine Bell', N'76 Manley Park', NULL, N'Xagmakajor', NULL, NULL, N'China', CAST(7.4900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-03-29T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4316, 209, 67, CAST(N'2016-09-26T00:00:00.000' AS DateTime), CAST(N'2017-02-03T00:00:00.000' AS DateTime), N'Katherine Elliott', N'86 Nelson Point', NULL, N'Boavista', N'Aveiro', N'4520-104', N'Portugal', CAST(1.9200 AS Decimal(19, 4)), N'Card', CAST(N'2016-04-28T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4317, 219, 40, CAST(N'2016-10-09T00:00:00.000' AS DateTime), CAST(N'2016-12-21T00:00:00.000' AS DateTime), N'Dorothy Rose', N'75962 Basil Drive', NULL, N'Pécs', N'Baranya', N'7610', N'Hungary', CAST(3.2300 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-21T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4318, 209, 68, CAST(N'2017-01-15T00:00:00.000' AS DateTime), CAST(N'2017-01-03T00:00:00.000' AS DateTime), N'Larry Hicks', N'5985 Crest Line Road', NULL, N'Lingqiao', NULL, NULL, N'China', CAST(2.7700 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-20T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4319, 214, 55, CAST(N'2016-07-14T00:00:00.000' AS DateTime), CAST(N'2017-03-05T00:00:00.000' AS DateTime), N'Paula Rodriguez', N'6 Lawn Court', NULL, N'Simajia', NULL, NULL, N'China', CAST(6.3300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-08T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4320, 203, 83, CAST(N'2016-12-26T00:00:00.000' AS DateTime), CAST(N'2016-10-07T00:00:00.000' AS DateTime), N'Sharon Richards', N'43297 Rigney Avenue', NULL, N'Salto', NULL, NULL, N'Uruguay', CAST(7.3200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-14T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4321, 215, 29, CAST(N'2016-12-27T00:00:00.000' AS DateTime), CAST(N'2016-07-21T00:00:00.000' AS DateTime), N'Craig Day', N'22 Thierer Center', NULL, N'Alberton', N'Prince Edward Island', N'P7K', N'Canada', CAST(5.3200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-02T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4322, 207, 80, CAST(N'2016-12-06T00:00:00.000' AS DateTime), CAST(N'2016-05-21T00:00:00.000' AS DateTime), N'Donna Butler', N'4149 Bartelt Point', NULL, N'Carbonear', N'Newfoundland and Labrador', N'A1Y', N'Canada', CAST(3.1000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-03T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4323, 216, 31, CAST(N'2016-06-27T00:00:00.000' AS DateTime), CAST(N'2017-03-13T00:00:00.000' AS DateTime), N'Carolyn Ferguson', N'97225 Bartelt Avenue', NULL, N'Tinalmud', NULL, N'1531', N'Philippines', CAST(7.1100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-22T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4324, 212, 78, CAST(N'2016-05-19T00:00:00.000' AS DateTime), CAST(N'2016-11-14T00:00:00.000' AS DateTime), N'Peter Romero', N'22977 Westridge Terrace', NULL, N'Toulouse', N'Midi-Pyrénées', N'31029 CEDEX 4', N'France', CAST(2.9700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-09T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4325, 213, 73, CAST(N'2017-02-18T00:00:00.000' AS DateTime), CAST(N'2016-09-22T00:00:00.000' AS DateTime), N'Jose Greene', N'40351 Rusk Place', NULL, N'Vila Nova de Gaia', N'Porto', N'4400-005', N'Portugal', CAST(5.7600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-12T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4326, 208, 62, CAST(N'2017-02-14T00:00:00.000' AS DateTime), CAST(N'2016-11-13T00:00:00.000' AS DateTime), N'Betty Anderson', N'8403 Melody Center', NULL, N'Bush', NULL, NULL, N'Egypt', CAST(9.5600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-08T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4327, 220, 56, CAST(N'2016-09-06T00:00:00.000' AS DateTime), CAST(N'2016-08-17T00:00:00.000' AS DateTime), N'Amanda Frazier', N'47 Dapin Center', NULL, N'Pasirmanggu', NULL, NULL, N'Indonesia', CAST(2.2500 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-11T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4328, 201, 24, CAST(N'2016-10-29T00:00:00.000' AS DateTime), CAST(N'2017-01-25T00:00:00.000' AS DateTime), N'Douglas Foster', N'6953 Stoughton Avenue', NULL, N'Bokhan', NULL, N'669310', N'Russia', CAST(1.2600 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-06T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4329, 206, 33, CAST(N'2017-03-09T00:00:00.000' AS DateTime), CAST(N'2017-03-12T00:00:00.000' AS DateTime), N'Louis Brown', N'76 Little Fleur Park', NULL, N'Shazhenxi', NULL, NULL, N'China', CAST(3.4000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-09T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4330, 205, 61, CAST(N'2016-04-14T00:00:00.000' AS DateTime), CAST(N'2016-09-26T00:00:00.000' AS DateTime), N'Elizabeth Butler', N'82 Springview Road', NULL, N'Kimito', NULL, N'11710', N'Finland', CAST(1.9200 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-18T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4331, 220, 39, CAST(N'2016-06-10T00:00:00.000' AS DateTime), CAST(N'2016-04-07T00:00:00.000' AS DateTime), N'Albert Flores', N'19 Talmadge Hill', NULL, N'Almelo', N'Provincie Overijssel', N'7604', N'Netherlands', CAST(4.2300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4332, 217, 47, CAST(N'2016-10-25T00:00:00.000' AS DateTime), CAST(N'2016-09-28T00:00:00.000' AS DateTime), N'Kimberly Fowler', N'0 Trailsway Crossing', NULL, N'Iwata', NULL, N'925-0145', N'Japan', CAST(8.1400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-06T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4333, 209, 12, CAST(N'2016-12-25T00:00:00.000' AS DateTime), CAST(N'2016-10-31T00:00:00.000' AS DateTime), N'Joe Powell', N'5 Everett Drive', NULL, N'Bergen', N'Hordaland', N'5895', N'Norway', CAST(8.0200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-05T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4334, 219, 1, CAST(N'2016-08-12T00:00:00.000' AS DateTime), CAST(N'2017-02-18T00:00:00.000' AS DateTime), N'Virginia Collins', N'78693 Cordelia Point', NULL, N'San Benito', NULL, N'8423', N'Philippines', CAST(8.4000 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-06T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4335, 220, 59, CAST(N'2017-02-26T00:00:00.000' AS DateTime), CAST(N'2016-11-05T00:00:00.000' AS DateTime), N'Mary Howard', N'5 Golf View Street', NULL, N'Gjinkar', NULL, NULL, N'Albania', CAST(3.5400 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-09T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4336, 220, 19, CAST(N'2017-02-09T00:00:00.000' AS DateTime), CAST(N'2017-01-26T00:00:00.000' AS DateTime), N'Ronald Stevens', N'57 Old Shore Crossing', NULL, N'Bureng', NULL, NULL, N'Gambia', CAST(8.2100 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-21T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4337, 204, 59, CAST(N'2016-05-14T00:00:00.000' AS DateTime), CAST(N'2016-07-08T00:00:00.000' AS DateTime), N'James Evans', N'44078 Warner Drive', NULL, N'Amurzet', NULL, N'679230', N'Russia', CAST(9.3500 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-22T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4338, 213, 96, CAST(N'2016-09-02T00:00:00.000' AS DateTime), CAST(N'2016-11-10T00:00:00.000' AS DateTime), N'Willie Snyder', N'361 Stone Corner Pass', NULL, N'Sindangsari', NULL, NULL, N'Indonesia', CAST(9.3200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-10T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4339, 220, 30, CAST(N'2017-03-04T00:00:00.000' AS DateTime), CAST(N'2016-08-16T00:00:00.000' AS DateTime), N'Julie Black', N'2922 Grasskamp Alley', NULL, N'Cotonou', NULL, NULL, N'Benin', CAST(9.1400 AS Decimal(19, 4)), N'Cash', CAST(N'2017-03-07T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4340, 206, 17, CAST(N'2016-11-18T00:00:00.000' AS DateTime), CAST(N'2016-11-24T00:00:00.000' AS DateTime), N'Roy Olson', N'4 Shopko Hill', NULL, N'Binagadi', NULL, NULL, N'Azerbaijan', CAST(5.2200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-14T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4341, 202, 28, CAST(N'2016-11-18T00:00:00.000' AS DateTime), CAST(N'2017-02-18T00:00:00.000' AS DateTime), N'Evelyn Lawrence', N'90 Crownhardt Center', NULL, N'Bayshint', NULL, NULL, N'Mongolia', CAST(7.2500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-16T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4342, 209, 37, CAST(N'2016-10-30T00:00:00.000' AS DateTime), CAST(N'2016-06-07T00:00:00.000' AS DateTime), N'John Rodriguez', N'69 Golf View Avenue', NULL, N'Hezuoqiao', NULL, NULL, N'China', CAST(8.2300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-05T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4343, 203, 51, CAST(N'2016-04-09T00:00:00.000' AS DateTime), CAST(N'2016-12-17T00:00:00.000' AS DateTime), N'Ruth Kim', N'0027 Dunning Pass', NULL, N'Kuteynykove', NULL, NULL, N'Ukraine', CAST(2.4600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-03-28T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4344, 217, 34, CAST(N'2016-12-16T00:00:00.000' AS DateTime), CAST(N'2016-10-11T00:00:00.000' AS DateTime), N'Shawn Patterson', N'36 Little Fleur Circle', NULL, N'Xiekou', NULL, NULL, N'China', CAST(6.4300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-03-27T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4345, 213, 59, CAST(N'2016-10-30T00:00:00.000' AS DateTime), CAST(N'2016-07-10T00:00:00.000' AS DateTime), N'Nancy Jones', N'47088 Crowley Junction', NULL, N'Promna', NULL, N'26-803', N'Poland', CAST(5.6700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-02T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4346, 217, 70, CAST(N'2016-12-27T00:00:00.000' AS DateTime), CAST(N'2016-10-06T00:00:00.000' AS DateTime), N'Deborah Bishop', N'1 Summer Ridge Circle', NULL, N'Bunobogu', NULL, NULL, N'Indonesia', CAST(7.5700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-19T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4347, 203, 30, CAST(N'2016-05-26T00:00:00.000' AS DateTime), CAST(N'2016-08-14T00:00:00.000' AS DateTime), N'Steve Hunt', N'4393 Summer Ridge Crossing', NULL, N'Hoštka', NULL, N'348 06', N'Czech Republic', CAST(5.7800 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-30T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4348, 203, 9, CAST(N'2016-04-14T00:00:00.000' AS DateTime), CAST(N'2016-10-19T00:00:00.000' AS DateTime), N'Betty Black', N'23 Nova Junction', NULL, N'Sepólno Krajenskie', NULL, N'89-400', N'Poland', CAST(8.5500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-23T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4349, 211, 95, CAST(N'2017-01-28T00:00:00.000' AS DateTime), CAST(N'2016-04-13T00:00:00.000' AS DateTime), N'Gregory Wood', N'96 Grasskamp Point', NULL, N'Psará', NULL, NULL, N'Greece', CAST(8.4700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-18T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4350, 218, 97, CAST(N'2016-03-22T00:00:00.000' AS DateTime), CAST(N'2016-04-13T00:00:00.000' AS DateTime), N'Martin Martinez', N'5 Towne Crossing', NULL, N'Kista', N'Stockholm', N'164 45', N'Sweden', CAST(8.0700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-15T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4351, 215, 80, CAST(N'2016-06-20T00:00:00.000' AS DateTime), CAST(N'2016-11-05T00:00:00.000' AS DateTime), N'Margaret Cook', N'82 Eggendart Junction', NULL, N'Omuthiya', NULL, NULL, N'Namibia', CAST(9.7100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-18T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4352, 211, 15, CAST(N'2016-09-02T00:00:00.000' AS DateTime), CAST(N'2017-01-23T00:00:00.000' AS DateTime), N'Justin Myers', N'6734 Continental Drive', NULL, N'Tadabliro', NULL, NULL, N'Indonesia', CAST(2.2300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-12T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4353, 216, 77, CAST(N'2016-10-09T00:00:00.000' AS DateTime), CAST(N'2016-07-31T00:00:00.000' AS DateTime), N'Jane Ruiz', N'2743 Harbort Center', NULL, N'Pasar', NULL, NULL, N'Indonesia', CAST(4.8800 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-04T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4354, 202, 53, CAST(N'2017-03-15T00:00:00.000' AS DateTime), CAST(N'2016-06-21T00:00:00.000' AS DateTime), N'Philip Bradley', N'6 Bartillon Park', NULL, N'Aimorés', NULL, N'35200-000', N'Brazil', CAST(5.0100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-16T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4355, 220, 14, CAST(N'2017-01-03T00:00:00.000' AS DateTime), CAST(N'2016-05-07T00:00:00.000' AS DateTime), N'Phillip White', N'1 Schurz Crossing', NULL, N'Tuzhai', NULL, NULL, N'China', CAST(7.0600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-18T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4356, 208, 85, CAST(N'2016-12-26T00:00:00.000' AS DateTime), CAST(N'2016-07-28T00:00:00.000' AS DateTime), N'George Ryan', N'92 Morrow Road', NULL, N'Nijmegen', N'Provincie Gelderland', N'6519', N'Netherlands', CAST(5.7600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-14T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4357, 208, 73, CAST(N'2016-04-06T00:00:00.000' AS DateTime), CAST(N'2016-04-01T00:00:00.000' AS DateTime), N'Evelyn Rose', N'134 Milwaukee Lane', NULL, N'Tiechang', NULL, NULL, N'China', CAST(5.3700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-19T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4358, 202, 77, CAST(N'2016-04-14T00:00:00.000' AS DateTime), CAST(N'2016-10-21T00:00:00.000' AS DateTime), N'Janet Robertson', N'09309 Dottie Park', NULL, N'Ljubešcica', NULL, N'42222', N'Croatia', CAST(5.2700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-07T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4359, 202, 35, CAST(N'2016-05-08T00:00:00.000' AS DateTime), CAST(N'2017-01-27T00:00:00.000' AS DateTime), N'Diana Perry', N'95535 Lotheville Center', NULL, N'Kvasice', NULL, N'768 21', N'Czech Republic', CAST(7.1000 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-27T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4360, 210, 86, CAST(N'2016-11-23T00:00:00.000' AS DateTime), CAST(N'2016-10-12T00:00:00.000' AS DateTime), N'Todd Elliott', N'6737 Melrose Road', NULL, N'Catumbela', NULL, NULL, N'Angola', CAST(2.1900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-05T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4361, 209, 45, CAST(N'2016-04-07T00:00:00.000' AS DateTime), CAST(N'2016-06-30T00:00:00.000' AS DateTime), N'Emily Dean', N'143 Ridge Oak Alley', NULL, N'Diriá', NULL, NULL, N'Nicaragua', CAST(1.3300 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-31T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4362, 208, 88, CAST(N'2016-05-08T00:00:00.000' AS DateTime), CAST(N'2016-04-14T00:00:00.000' AS DateTime), N'Eric Simpson', N'8113 Graceland Junction', NULL, N'Borovoy', NULL, N'309135', N'Russia', CAST(3.8100 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-21T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4363, 211, 84, CAST(N'2016-12-31T00:00:00.000' AS DateTime), CAST(N'2016-06-05T00:00:00.000' AS DateTime), N'Alan Chapman', N'461 Westport Center', NULL, N'Inayauan', NULL, N'3336', N'Philippines', CAST(8.6200 AS Decimal(19, 4)), N'Card', CAST(N'2017-03-03T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4364, 205, 100, CAST(N'2016-09-10T00:00:00.000' AS DateTime), CAST(N'2017-02-19T00:00:00.000' AS DateTime), N'Denise Dixon', N'066 Gerald Avenue', NULL, N'Venëv', NULL, N'301320', N'Russia', CAST(4.8200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-22T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4365, 211, 7, CAST(N'2017-03-09T00:00:00.000' AS DateTime), CAST(N'2017-03-16T00:00:00.000' AS DateTime), N'Douglas Nelson', N'03051 Grasskamp Way', NULL, N'Póvoa', N'Vila Real', N'4870-130', N'Portugal', CAST(1.6700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-30T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4366, 213, 24, CAST(N'2016-04-25T00:00:00.000' AS DateTime), CAST(N'2016-06-06T00:00:00.000' AS DateTime), N'Louis Frazier', N'65 Buhler Circle', NULL, N'Bileh Savar', NULL, NULL, N'Iran', CAST(9.5300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-20T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4367, 207, 8, CAST(N'2016-09-24T00:00:00.000' AS DateTime), CAST(N'2016-04-06T00:00:00.000' AS DateTime), N'Theresa Stanley', N'487 Birchwood Point', NULL, N'T’et’ri Tsqaro', NULL, NULL, N'Georgia', CAST(5.0600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-08T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4368, 207, 76, CAST(N'2016-12-21T00:00:00.000' AS DateTime), CAST(N'2016-05-03T00:00:00.000' AS DateTime), N'Sean Chapman', N'3917 Miller Pass', NULL, N'Andaray', NULL, NULL, N'Peru', CAST(4.3600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-25T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4369, 215, 90, CAST(N'2016-03-30T00:00:00.000' AS DateTime), CAST(N'2017-01-03T00:00:00.000' AS DateTime), N'Eugene Brooks', N'137 1st Hill', NULL, N'Independencia', N'Tamaulipas', N'89888', N'Mexico', CAST(9.5600 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-23T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4370, 204, 33, CAST(N'2016-12-17T00:00:00.000' AS DateTime), CAST(N'2016-10-22T00:00:00.000' AS DateTime), N'Joan Martin', N'24 Hayes Point', NULL, N'Dobrzen Wielki', NULL, N'46-081', N'Poland', CAST(8.8700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-09T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4371, 204, 13, CAST(N'2016-12-11T00:00:00.000' AS DateTime), CAST(N'2016-05-07T00:00:00.000' AS DateTime), N'Martha Mendoza', N'0 Sommers Point', NULL, N'Jiamachi', NULL, NULL, N'China', CAST(1.5300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-05T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4372, 211, 90, CAST(N'2016-10-27T00:00:00.000' AS DateTime), CAST(N'2017-02-14T00:00:00.000' AS DateTime), N'Joan Allen', N'64 Bluestem Drive', NULL, N'Conde', N'Braga', N'4815-019', N'Portugal', CAST(2.6600 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-25T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4373, 208, 81, CAST(N'2016-08-20T00:00:00.000' AS DateTime), CAST(N'2017-03-16T00:00:00.000' AS DateTime), N'Tammy Richards', N'15541 Ramsey Alley', NULL, N'Gunungkendeng', NULL, NULL, N'Indonesia', CAST(5.6600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-03T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4374, 216, 19, CAST(N'2017-01-22T00:00:00.000' AS DateTime), CAST(N'2016-09-10T00:00:00.000' AS DateTime), N'Andrea Medina', N'3 Goodland Pass', NULL, N'?arib', NULL, NULL, N'Yemen', CAST(1.0300 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-12T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4375, 213, 8, CAST(N'2016-09-13T00:00:00.000' AS DateTime), CAST(N'2016-12-21T00:00:00.000' AS DateTime), N'Antonio Carpenter', N'453 Duke Point', NULL, N'Rouen', N'Haute-Normandie', N'76029 CEDEX', N'France', CAST(5.1100 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-26T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4376, 207, 83, CAST(N'2016-11-29T00:00:00.000' AS DateTime), CAST(N'2016-04-13T00:00:00.000' AS DateTime), N'Jeffrey Smith', N'7 Old Shore Center', NULL, N'Licuan', NULL, N'2500', N'Philippines', CAST(8.5500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-08T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4377, 216, 13, CAST(N'2016-11-06T00:00:00.000' AS DateTime), CAST(N'2016-10-08T00:00:00.000' AS DateTime), N'Mark Perkins', N'57 Troy Court', NULL, N'Mojimán', NULL, NULL, N'Honduras', CAST(2.0300 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-06T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4378, 219, 4, CAST(N'2016-08-05T00:00:00.000' AS DateTime), CAST(N'2017-03-04T00:00:00.000' AS DateTime), N'Louis Jordan', N'5 Armistice Street', NULL, N'Labège', N'Midi-Pyrénées', N'31673 CEDEX', N'France', CAST(3.6100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-07T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4379, 218, 66, CAST(N'2017-02-26T00:00:00.000' AS DateTime), CAST(N'2016-11-18T00:00:00.000' AS DateTime), N'Fred Johnson', N'4 Dovetail Crossing', NULL, N'Santa Cruz', NULL, NULL, N'Venezuela', CAST(1.0800 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-02T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4380, 201, 27, CAST(N'2016-09-01T00:00:00.000' AS DateTime), CAST(N'2016-05-08T00:00:00.000' AS DateTime), N'Rose Harvey', N'8 Canary Plaza', NULL, N'Pingtan', NULL, NULL, N'China', CAST(6.9000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-09T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4381, 209, 89, CAST(N'2017-02-04T00:00:00.000' AS DateTime), CAST(N'2016-08-30T00:00:00.000' AS DateTime), N'Christine Thomas', N'008 Carberry Alley', NULL, N'Logung', NULL, NULL, N'Indonesia', CAST(6.1300 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-09T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4382, 204, 47, CAST(N'2016-08-11T00:00:00.000' AS DateTime), CAST(N'2016-12-27T00:00:00.000' AS DateTime), N'Juan Reed', N'4337 Del Sol Hill', NULL, N'Dayeuhluhur', NULL, NULL, N'Indonesia', CAST(7.7600 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-15T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4383, 215, 30, CAST(N'2016-08-07T00:00:00.000' AS DateTime), CAST(N'2016-07-22T00:00:00.000' AS DateTime), N'Diane Gray', N'899 Oneill Pass', NULL, N'Alegrete', NULL, N'97540-000', N'Brazil', CAST(5.6200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-26T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4384, 212, 88, CAST(N'2016-07-23T00:00:00.000' AS DateTime), CAST(N'2016-05-07T00:00:00.000' AS DateTime), N'Louise Baker', N'46092 Kedzie Court', NULL, N'Ban Mo', NULL, N'18130', N'Thailand', CAST(4.0000 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-11T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4385, 203, 62, CAST(N'2017-02-20T00:00:00.000' AS DateTime), CAST(N'2016-10-01T00:00:00.000' AS DateTime), N'Paul Thompson', N'77444 Northwestern Pass', NULL, N'Francisco I Madero', N'Coahuila De Zaragoza', N'26010', N'Mexico', CAST(3.9900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-23T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4386, 218, 26, CAST(N'2016-09-02T00:00:00.000' AS DateTime), CAST(N'2016-06-10T00:00:00.000' AS DateTime), N'Anne Kim', N'67814 Buena Vista Court', NULL, N'Sanjie', NULL, NULL, N'China', CAST(9.6100 AS Decimal(19, 4)), N'Card', CAST(N'2016-04-05T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4387, 219, 20, CAST(N'2017-03-05T00:00:00.000' AS DateTime), CAST(N'2016-12-19T00:00:00.000' AS DateTime), N'Matthew Gutierrez', N'33055 Evergreen Crossing', NULL, N'Cusco', NULL, NULL, N'Peru', CAST(6.5200 AS Decimal(19, 4)), N'Checque', CAST(N'2017-02-17T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4388, 219, 71, CAST(N'2016-09-06T00:00:00.000' AS DateTime), CAST(N'2016-05-24T00:00:00.000' AS DateTime), N'Janet Hernandez', N'9243 Forest Run Parkway', NULL, N'Ulanov', NULL, NULL, N'Ukraine', CAST(3.0400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-20T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4389, 207, 2, CAST(N'2016-04-25T00:00:00.000' AS DateTime), CAST(N'2017-02-16T00:00:00.000' AS DateTime), N'Louis Chapman', N'878 Roth Alley', NULL, N'Kusak', NULL, N'423430', N'Russia', CAST(5.7800 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-18T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4390, 218, 64, CAST(N'2016-09-25T00:00:00.000' AS DateTime), CAST(N'2016-09-22T00:00:00.000' AS DateTime), N'Joe Carpenter', N'56 Artisan Park', NULL, N'Xinjiang', NULL, NULL, N'China', CAST(8.2000 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-01T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4391, 218, 64, CAST(N'2016-07-30T00:00:00.000' AS DateTime), CAST(N'2016-07-23T00:00:00.000' AS DateTime), N'Charles Harper', N'7 Sutherland Road', NULL, N'Tatarbunary', NULL, NULL, N'Ukraine', CAST(4.6200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-29T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4392, 206, 92, CAST(N'2016-05-05T00:00:00.000' AS DateTime), CAST(N'2016-07-17T00:00:00.000' AS DateTime), N'Craig Reynolds', N'3 Erie Park', NULL, N'East End', NULL, NULL, N'Cayman Islands', CAST(2.0300 AS Decimal(19, 4)), N'Checque', CAST(N'2017-02-03T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4393, 212, 45, CAST(N'2016-06-29T00:00:00.000' AS DateTime), CAST(N'2016-06-17T00:00:00.000' AS DateTime), N'Raymond Mcdonald', N'792 Brown Trail', NULL, N'Yangfang', NULL, NULL, N'China', CAST(4.4400 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-27T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4394, 211, 87, CAST(N'2016-09-28T00:00:00.000' AS DateTime), CAST(N'2016-04-03T00:00:00.000' AS DateTime), N'Sandra Medina', N'7 Eagan Circle', NULL, N'Baratleke', NULL, NULL, N'Indonesia', CAST(4.3400 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-05T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4395, 203, 57, CAST(N'2016-08-18T00:00:00.000' AS DateTime), CAST(N'2017-03-05T00:00:00.000' AS DateTime), N'Sean Carpenter', N'33 Dottie Park', NULL, N'Sokal’', NULL, NULL, N'Ukraine', CAST(5.3900 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-22T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4396, 203, 87, CAST(N'2016-06-19T00:00:00.000' AS DateTime), CAST(N'2016-07-10T00:00:00.000' AS DateTime), N'Alice Ferguson', N'0399 Dixon Hill', NULL, N'Privolzhskiy', NULL, N'413138', N'Russia', CAST(8.7400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-23T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4397, 216, 61, CAST(N'2016-08-01T00:00:00.000' AS DateTime), CAST(N'2016-12-25T00:00:00.000' AS DateTime), N'Diana Nguyen', N'5052 Rigney Junction', NULL, N'Guaynabo', N'Pr', N'00971', N'Puerto Rico', CAST(5.3600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-12T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4398, 211, 52, CAST(N'2016-12-04T00:00:00.000' AS DateTime), CAST(N'2016-05-11T00:00:00.000' AS DateTime), N'Earl Gutierrez', N'32 Summit Avenue', NULL, N'Maqbanah', NULL, NULL, N'Yemen', CAST(5.8200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-21T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4399, 208, 71, CAST(N'2016-05-16T00:00:00.000' AS DateTime), CAST(N'2017-02-25T00:00:00.000' AS DateTime), N'Gloria Gordon', N'5 Prentice Trail', NULL, N'Xichang', NULL, NULL, N'China', CAST(3.2000 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-24T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4400, 218, 7, CAST(N'2016-09-06T00:00:00.000' AS DateTime), CAST(N'2016-03-21T00:00:00.000' AS DateTime), N'Robert Wheeler', N'83 Logan Circle', NULL, N'Zhongshan', NULL, NULL, N'China', CAST(9.1500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-16T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4401, 210, 53, CAST(N'2016-09-05T00:00:00.000' AS DateTime), CAST(N'2016-05-01T00:00:00.000' AS DateTime), N'Walter Williamson', N'8459 American Plaza', NULL, N'Santo Rosario', NULL, N'3114', N'Philippines', CAST(7.7100 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-25T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4402, 216, 92, CAST(N'2016-10-10T00:00:00.000' AS DateTime), CAST(N'2016-03-28T00:00:00.000' AS DateTime), N'Jonathan James', N'164 Bonner Hill', NULL, N'Vale de Mendiz', N'Vila Real', N'5085-105', N'Portugal', CAST(2.9600 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4403, 212, 12, CAST(N'2016-09-15T00:00:00.000' AS DateTime), CAST(N'2016-11-11T00:00:00.000' AS DateTime), N'Judy Williams', N'207 Scofield Place', NULL, N'Lawa-an', NULL, N'5706', N'Philippines', CAST(9.6800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-30T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4404, 213, 83, CAST(N'2016-04-25T00:00:00.000' AS DateTime), CAST(N'2016-05-14T00:00:00.000' AS DateTime), N'Amy Olson', N'84189 Schurz Circle', NULL, N'Ogoja', NULL, NULL, N'Nigeria', CAST(5.1800 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-02T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4405, 209, 7, CAST(N'2016-12-01T00:00:00.000' AS DateTime), CAST(N'2016-08-30T00:00:00.000' AS DateTime), N'Donna Vasquez', N'82460 Ridgeway Hill', NULL, N'La Guacamaya', NULL, NULL, N'Honduras', CAST(5.3200 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-11T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4406, 209, 66, CAST(N'2016-09-14T00:00:00.000' AS DateTime), CAST(N'2016-05-13T00:00:00.000' AS DateTime), N'Susan Jacobs', N'17 Morningstar Lane', NULL, N'Chedao', NULL, NULL, N'China', CAST(4.1200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-11T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4407, 214, 57, CAST(N'2016-05-04T00:00:00.000' AS DateTime), CAST(N'2016-06-03T00:00:00.000' AS DateTime), N'Kathryn Burns', N'116 Hollow Ridge Park', NULL, N'Comagascas', NULL, N'1950', N'Philippines', CAST(1.0500 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-28T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4408, 201, 64, CAST(N'2017-02-11T00:00:00.000' AS DateTime), CAST(N'2016-06-08T00:00:00.000' AS DateTime), N'Doris Bennett', N'090 Lien Place', NULL, N'Luotang', NULL, NULL, N'China', CAST(1.3500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-16T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4409, 209, 41, CAST(N'2017-02-28T00:00:00.000' AS DateTime), CAST(N'2016-09-05T00:00:00.000' AS DateTime), N'Cynthia Robertson', N'6 Eliot Center', NULL, N'Abu Dhabi', NULL, NULL, N'United Arab Emirates', CAST(4.2100 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-01T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4410, 215, 24, CAST(N'2016-08-28T00:00:00.000' AS DateTime), CAST(N'2016-10-30T00:00:00.000' AS DateTime), N'Jonathan Parker', N'0 Weeping Birch Hill', NULL, N'Cienfuegos', NULL, NULL, N'Cuba', CAST(1.6900 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-21T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4411, 206, 10, CAST(N'2016-08-30T00:00:00.000' AS DateTime), CAST(N'2016-12-06T00:00:00.000' AS DateTime), N'Bobby Foster', N'8279 Ridgeview Place', NULL, N'Cruz Alta', NULL, N'98000-000', N'Brazil', CAST(7.5000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-09T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4412, 205, 65, CAST(N'2016-12-13T00:00:00.000' AS DateTime), CAST(N'2017-02-27T00:00:00.000' AS DateTime), N'Phyllis Moore', N'806 Acker Drive', NULL, N'Paoay', NULL, N'2902', N'Philippines', CAST(4.6300 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-11T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4413, 211, 2, CAST(N'2016-12-05T00:00:00.000' AS DateTime), CAST(N'2016-12-07T00:00:00.000' AS DateTime), N'Kevin Gordon', N'00875 Sherman Lane', NULL, N'Wansheng', NULL, NULL, N'China', CAST(2.7000 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-31T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4414, 219, 25, CAST(N'2017-02-08T00:00:00.000' AS DateTime), CAST(N'2016-06-22T00:00:00.000' AS DateTime), N'Jack Mccoy', N'2 Killdeer Center', NULL, N'Gresik', NULL, NULL, N'Indonesia', CAST(4.1000 AS Decimal(19, 4)), N'Checque', CAST(N'2017-03-05T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4415, 220, 9, CAST(N'2017-01-02T00:00:00.000' AS DateTime), CAST(N'2016-08-28T00:00:00.000' AS DateTime), N'Margaret Fuller', N'1960 Parkside Hill', NULL, N'Kafr Zayta', NULL, NULL, N'Syria', CAST(1.0900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-07T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4416, 214, 100, CAST(N'2017-01-07T00:00:00.000' AS DateTime), CAST(N'2017-02-07T00:00:00.000' AS DateTime), N'Melissa Nichols', N'6 Lakewood Gardens Avenue', NULL, N'Stockholm', N'Stockholm', N'113 90', N'Sweden', CAST(4.1000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-03-31T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4417, 210, 87, CAST(N'2017-01-23T00:00:00.000' AS DateTime), CAST(N'2016-12-14T00:00:00.000' AS DateTime), N'William Webb', N'84 Mifflin Junction', NULL, N'Kanungu', NULL, NULL, N'Uganda', CAST(4.3800 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-05T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4418, 213, 29, CAST(N'2017-01-05T00:00:00.000' AS DateTime), CAST(N'2017-02-07T00:00:00.000' AS DateTime), N'Anne Gonzales', N'7 Myrtle Plaza', NULL, N'Davila', NULL, N'2012', N'Philippines', CAST(5.4500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-23T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4419, 212, 94, CAST(N'2016-10-19T00:00:00.000' AS DateTime), CAST(N'2016-12-20T00:00:00.000' AS DateTime), N'Kathleen Graham', N'22 Forest Run Hill', NULL, N'Mollepampa', NULL, NULL, N'Peru', CAST(5.8600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-31T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4420, 201, 32, CAST(N'2016-11-29T00:00:00.000' AS DateTime), CAST(N'2016-09-24T00:00:00.000' AS DateTime), N'Diana Sanders', N'8925 Kennedy Parkway', NULL, N'San Miguel de Tucumán', NULL, N'4137', N'Argentina', CAST(3.7100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-10T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4421, 208, 58, CAST(N'2017-03-02T00:00:00.000' AS DateTime), CAST(N'2016-04-03T00:00:00.000' AS DateTime), N'Willie Wright', N'60 Old Shore Alley', NULL, N'Jinjiang', NULL, NULL, N'China', CAST(6.7200 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-09T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4422, 206, 59, CAST(N'2016-04-19T00:00:00.000' AS DateTime), CAST(N'2016-12-29T00:00:00.000' AS DateTime), N'Frank Evans', N'785 Little Fleur Center', NULL, N'El Triunfo', NULL, NULL, N'Ecuador', CAST(9.4300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-13T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4423, 209, 68, CAST(N'2016-08-22T00:00:00.000' AS DateTime), CAST(N'2016-11-20T00:00:00.000' AS DateTime), N'Phillip Carter', N'6398 John Wall Center', NULL, N'Shouxihu', NULL, NULL, N'China', CAST(4.2200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-18T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4424, 205, 31, CAST(N'2016-10-05T00:00:00.000' AS DateTime), CAST(N'2016-10-09T00:00:00.000' AS DateTime), N'Lillian Gomez', N'17560 Melrose Point', NULL, N'Milwaukee', N'Wisconsin', N'53205', N'United States', CAST(1.1600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-17T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4425, 202, 7, CAST(N'2016-07-24T00:00:00.000' AS DateTime), CAST(N'2017-02-22T00:00:00.000' AS DateTime), N'John Ortiz', N'45 Vera Place', NULL, N'Kiel', N'Schleswig-Holstein', N'24109', N'Germany', CAST(5.8600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-13T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4426, 214, 80, CAST(N'2016-10-04T00:00:00.000' AS DateTime), CAST(N'2016-09-01T00:00:00.000' AS DateTime), N'Brandon Fields', N'94792 Jackson Hill', NULL, N'San Juan', N'Pr', N'00918', N'Puerto Rico', CAST(2.5400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-19T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4427, 209, 23, CAST(N'2016-06-23T00:00:00.000' AS DateTime), CAST(N'2016-04-29T00:00:00.000' AS DateTime), N'Willie Hart', N'20 Sloan Terrace', NULL, N'Mount Darwin', NULL, NULL, N'Zimbabwe', CAST(3.7100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-22T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4428, 211, 7, CAST(N'2016-09-07T00:00:00.000' AS DateTime), CAST(N'2016-10-28T00:00:00.000' AS DateTime), N'Walter Montgomery', N'67285 Crowley Road', NULL, N'Wailolong', NULL, NULL, N'Indonesia', CAST(9.7900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-05T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4429, 217, 10, CAST(N'2017-03-02T00:00:00.000' AS DateTime), CAST(N'2016-11-27T00:00:00.000' AS DateTime), N'Sara Williamson', N'72 Monterey Circle', NULL, N'Salvacion', NULL, N'1114', N'Philippines', CAST(3.3300 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-18T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4430, 210, 12, CAST(N'2017-02-18T00:00:00.000' AS DateTime), CAST(N'2016-03-17T00:00:00.000' AS DateTime), N'Wayne Sanders', N'21302 Valley Edge Pass', NULL, N'Balakasap', NULL, NULL, N'Indonesia', CAST(2.1800 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-02T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4431, 220, 80, CAST(N'2016-10-01T00:00:00.000' AS DateTime), CAST(N'2016-09-28T00:00:00.000' AS DateTime), N'Cynthia Allen', N'1 Karstens Avenue', NULL, N'Santo António das Areias', N'Portalegre', N'7330-254', N'Portugal', CAST(3.4000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-21T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4432, 211, 95, CAST(N'2017-02-04T00:00:00.000' AS DateTime), CAST(N'2016-03-17T00:00:00.000' AS DateTime), N'Jonathan Hughes', N'93993 Fairview Junction', NULL, N'Buje', NULL, N'52460', N'Croatia', CAST(5.1900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-01T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4433, 208, 67, CAST(N'2017-02-11T00:00:00.000' AS DateTime), CAST(N'2016-06-01T00:00:00.000' AS DateTime), N'Gerald Wright', N'77811 Dennis Point', NULL, N'Hohoe', NULL, NULL, N'Ghana', CAST(3.2500 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-15T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4434, 201, 53, CAST(N'2016-12-25T00:00:00.000' AS DateTime), CAST(N'2017-01-07T00:00:00.000' AS DateTime), N'Roy Anderson', N'182 High Crossing Terrace', NULL, N'Bajiazi', NULL, NULL, N'China', CAST(8.8000 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-11T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4435, 207, 3, CAST(N'2016-05-30T00:00:00.000' AS DateTime), CAST(N'2016-04-07T00:00:00.000' AS DateTime), N'Brenda Wright', N'98 Kim Drive', NULL, N'Lillehammer', N'Oppland', N'2605', N'Norway', CAST(5.7600 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-02T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4436, 204, 29, CAST(N'2016-07-19T00:00:00.000' AS DateTime), CAST(N'2016-07-05T00:00:00.000' AS DateTime), N'Philip Price', N'16 Brown Plaza', NULL, N'Capljina', NULL, NULL, N'Bosnia and Herzegovina', CAST(9.6200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-05T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4437, 210, 80, CAST(N'2016-10-13T00:00:00.000' AS DateTime), CAST(N'2016-04-24T00:00:00.000' AS DateTime), N'Michelle Webb', N'4160 Everett Point', NULL, N'Waepana', NULL, NULL, N'Indonesia', CAST(9.5400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-11T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4438, 209, 6, CAST(N'2016-12-31T00:00:00.000' AS DateTime), CAST(N'2017-01-27T00:00:00.000' AS DateTime), N'Heather Fields', N'10 Fairview Center', NULL, N'Zlotniki Kujawskie', NULL, N'88-180', N'Poland', CAST(1.8100 AS Decimal(19, 4)), N'Cash', CAST(N'2017-03-15T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4439, 216, 53, CAST(N'2017-02-01T00:00:00.000' AS DateTime), CAST(N'2016-09-12T00:00:00.000' AS DateTime), N'Ryan Long', N'0 Gateway Avenue', NULL, N'Pizhanka', NULL, N'613380', N'Russia', CAST(9.3400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-02T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4440, 211, 25, CAST(N'2017-02-03T00:00:00.000' AS DateTime), CAST(N'2016-10-13T00:00:00.000' AS DateTime), N'Joyce Stewart', N'61 Burrows Street', NULL, N'Kushelevka', NULL, N'658381', N'Russia', CAST(6.4000 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-29T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4441, 215, 93, CAST(N'2016-03-21T00:00:00.000' AS DateTime), CAST(N'2016-11-17T00:00:00.000' AS DateTime), N'Walter Arnold', N'97613 Pond Avenue', NULL, N'Looc', NULL, N'5507', N'Philippines', CAST(1.0900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-05T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4442, 214, 10, CAST(N'2016-05-10T00:00:00.000' AS DateTime), CAST(N'2016-05-31T00:00:00.000' AS DateTime), N'Irene Simmons', N'36 Larry Court', NULL, N'Rozhdestveno', NULL, N'399768', N'Russia', CAST(4.8200 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-13T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4443, 208, 19, CAST(N'2017-02-09T00:00:00.000' AS DateTime), CAST(N'2017-02-05T00:00:00.000' AS DateTime), N'Christina Mccoy', N'1482 Rockefeller Point', NULL, N'Rybatskoye', NULL, N'196851', N'Russia', CAST(1.6200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-14T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4444, 210, 98, CAST(N'2017-02-15T00:00:00.000' AS DateTime), CAST(N'2016-05-17T00:00:00.000' AS DateTime), N'Marie Fowler', N'04 Prairie Rose Junction', NULL, N'Chicago', N'Illinois', N'60604', N'United States', CAST(7.4700 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-22T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4445, 218, 32, CAST(N'2017-02-12T00:00:00.000' AS DateTime), CAST(N'2016-05-20T00:00:00.000' AS DateTime), N'Louise Bell', N'3 Charing Cross Pass', NULL, N'Selce', NULL, N'1219', N'Macedonia', CAST(4.4700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-01T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4446, 209, 25, CAST(N'2016-09-22T00:00:00.000' AS DateTime), CAST(N'2016-12-03T00:00:00.000' AS DateTime), N'Barbara Black', N'697 Oneill Drive', NULL, N'Shanghang', NULL, NULL, N'China', CAST(4.6600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-09T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4447, 209, 100, CAST(N'2016-08-26T00:00:00.000' AS DateTime), CAST(N'2017-01-16T00:00:00.000' AS DateTime), N'James Holmes', N'77 Marcy Court', NULL, N'Estreito', NULL, N'65975-000', N'Brazil', CAST(9.8500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-04T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4448, 210, 72, CAST(N'2016-06-25T00:00:00.000' AS DateTime), CAST(N'2016-12-07T00:00:00.000' AS DateTime), N'Kenneth Williams', N'6400 Milwaukee Hill', NULL, N'Wanshan', NULL, NULL, N'China', CAST(3.6600 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-09T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4449, 213, 16, CAST(N'2016-12-13T00:00:00.000' AS DateTime), CAST(N'2016-08-07T00:00:00.000' AS DateTime), N'Joshua Jacobs', N'8 Judy Park', NULL, N'Ágios Andréas', NULL, NULL, N'Greece', CAST(3.8100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-07T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4450, 216, 100, CAST(N'2016-12-21T00:00:00.000' AS DateTime), CAST(N'2017-02-13T00:00:00.000' AS DateTime), N'Aaron Sanders', N'1 Dakota Court', NULL, N'Huayllo', NULL, NULL, N'Peru', CAST(7.5900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-22T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4451, 211, 50, CAST(N'2016-08-22T00:00:00.000' AS DateTime), CAST(N'2016-06-05T00:00:00.000' AS DateTime), N'Eugene Scott', N'03 Golden Leaf Point', NULL, N'Stírion', NULL, NULL, N'Greece', CAST(8.9900 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-25T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4452, 220, 86, CAST(N'2016-05-07T00:00:00.000' AS DateTime), CAST(N'2016-07-20T00:00:00.000' AS DateTime), N'Cynthia Phillips', N'820 Merchant Way', NULL, N'Mrongi Daja', NULL, NULL, N'Indonesia', CAST(2.2100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-27T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4453, 213, 58, CAST(N'2016-10-30T00:00:00.000' AS DateTime), CAST(N'2016-03-22T00:00:00.000' AS DateTime), N'Martin Reed', N'14 Meadow Vale Alley', NULL, N'Jiangdong', NULL, NULL, N'China', CAST(3.5800 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-12T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4454, 206, 98, CAST(N'2016-05-14T00:00:00.000' AS DateTime), CAST(N'2016-11-07T00:00:00.000' AS DateTime), N'Janet Porter', N'74391 Ronald Regan Park', NULL, N'Lamakera Dua', NULL, NULL, N'Indonesia', CAST(9.8600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-12T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4455, 204, 2, CAST(N'2016-03-28T00:00:00.000' AS DateTime), CAST(N'2016-04-11T00:00:00.000' AS DateTime), N'Amanda Duncan', N'047 Jenna Road', NULL, N'Tungawan', NULL, N'7018', N'Philippines', CAST(2.0400 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-09T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4456, 211, 58, CAST(N'2016-08-05T00:00:00.000' AS DateTime), CAST(N'2016-11-19T00:00:00.000' AS DateTime), N'Joseph Henderson', N'14 Morningstar Pass', NULL, N'Kolobolon', NULL, NULL, N'Indonesia', CAST(6.4400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-24T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4457, 215, 21, CAST(N'2017-02-15T00:00:00.000' AS DateTime), CAST(N'2016-06-11T00:00:00.000' AS DateTime), N'Cynthia Bishop', N'066 Surrey Pass', NULL, N'Hung Yên', NULL, NULL, N'Vietnam', CAST(1.6100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-05T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4458, 211, 10, CAST(N'2016-08-08T00:00:00.000' AS DateTime), CAST(N'2016-08-06T00:00:00.000' AS DateTime), N'Craig Andrews', N'7 Mariners Cove Court', NULL, N'Tuanchengshan', NULL, NULL, N'China', CAST(8.4000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-15T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4459, 211, 71, CAST(N'2016-05-13T00:00:00.000' AS DateTime), CAST(N'2017-02-19T00:00:00.000' AS DateTime), N'Steve Warren', N'6702 Delladonna Point', NULL, N'Pražmo', NULL, N'739 04', N'Czech Republic', CAST(8.2900 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-29T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4460, 214, 5, CAST(N'2016-12-21T00:00:00.000' AS DateTime), CAST(N'2016-06-21T00:00:00.000' AS DateTime), N'Brenda Mills', N'77934 Prairieview Way', NULL, N'Huafeng', NULL, NULL, N'China', CAST(6.7600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-08T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4461, 212, 34, CAST(N'2016-04-27T00:00:00.000' AS DateTime), CAST(N'2016-07-22T00:00:00.000' AS DateTime), N'Randy Wright', N'9 Thackeray Way', NULL, N'Dvur Králové nad Labem', NULL, N'544 01', N'Czech Republic', CAST(9.4500 AS Decimal(19, 4)), N'Card', CAST(N'2016-03-20T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4462, 202, 47, CAST(N'2016-10-31T00:00:00.000' AS DateTime), CAST(N'2016-06-30T00:00:00.000' AS DateTime), N'Michelle Ramirez', N'0152 Old Shore Road', NULL, N'Pulaupinang', NULL, NULL, N'Indonesia', CAST(2.4200 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-05T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4463, 209, 86, CAST(N'2016-07-30T00:00:00.000' AS DateTime), CAST(N'2016-04-29T00:00:00.000' AS DateTime), N'Frank Duncan', N'67 Buell Terrace', NULL, N'Krasne', NULL, NULL, N'Ukraine', CAST(2.7100 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-22T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4464, 204, 62, CAST(N'2017-03-01T00:00:00.000' AS DateTime), CAST(N'2017-03-11T00:00:00.000' AS DateTime), N'Carlos Warren', N'978 Merrick Circle', NULL, N'Penghua', NULL, NULL, N'China', CAST(7.2900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-03-22T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4465, 202, 87, CAST(N'2016-06-23T00:00:00.000' AS DateTime), CAST(N'2016-11-15T00:00:00.000' AS DateTime), N'Tina Gardner', N'0 Mcguire Terrace', NULL, N'Cangqian', NULL, NULL, N'China', CAST(2.1700 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-01T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4466, 220, 31, CAST(N'2016-06-04T00:00:00.000' AS DateTime), CAST(N'2016-06-08T00:00:00.000' AS DateTime), N'Stephen Turner', N'17 Leroy Plaza', NULL, N'Pedaringan', NULL, NULL, N'Indonesia', CAST(8.8900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-09T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4467, 210, 35, CAST(N'2016-05-21T00:00:00.000' AS DateTime), CAST(N'2016-09-26T00:00:00.000' AS DateTime), N'Melissa Wilson', N'61199 Forest Center', NULL, N'Krmelín', NULL, N'739 24', N'Czech Republic', CAST(2.3500 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-20T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4468, 216, 50, CAST(N'2016-09-10T00:00:00.000' AS DateTime), CAST(N'2016-12-02T00:00:00.000' AS DateTime), N'Billy Harper', N'8940 Fisk Parkway', NULL, N'San Jose', N'California', N'95113', N'United States', CAST(3.9800 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-04T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4469, 207, 22, CAST(N'2016-06-03T00:00:00.000' AS DateTime), CAST(N'2016-11-06T00:00:00.000' AS DateTime), N'Carl Davis', N'5 Lindbergh Street', NULL, N'Taling Chan', NULL, N'10170', N'Thailand', CAST(4.7100 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-03T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4470, 211, 64, CAST(N'2016-06-16T00:00:00.000' AS DateTime), CAST(N'2016-05-26T00:00:00.000' AS DateTime), N'Gerald Henry', N'2221 Porter Crossing', NULL, N'Mozdok', NULL, N'363759', N'Russia', CAST(9.5700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-11T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4471, 206, 25, CAST(N'2016-07-27T00:00:00.000' AS DateTime), CAST(N'2016-08-24T00:00:00.000' AS DateTime), N'Debra Garza', N'65379 Sunnyside Trail', NULL, N'Jiadingzhen', NULL, NULL, N'China', CAST(1.0600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-23T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4472, 204, 18, CAST(N'2016-08-30T00:00:00.000' AS DateTime), CAST(N'2016-10-09T00:00:00.000' AS DateTime), N'Margaret Rodriguez', N'3202 Marquette Point', NULL, N'Oranzherei', NULL, N'416368', N'Russia', CAST(3.3500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-18T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4473, 212, 88, CAST(N'2016-10-29T00:00:00.000' AS DateTime), CAST(N'2016-05-25T00:00:00.000' AS DateTime), N'William Burke', N'46 Kingsford Center', NULL, N'San Juan', NULL, N'11301', N'Costa Rica', CAST(3.8500 AS Decimal(19, 4)), N'Checque', CAST(N'2017-02-12T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4474, 217, 9, CAST(N'2017-02-19T00:00:00.000' AS DateTime), CAST(N'2016-05-29T00:00:00.000' AS DateTime), N'Larry Myers', N'731 Packers Point', NULL, N'Trelleborg', N'Skåne', N'231 68', N'Sweden', CAST(4.4600 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-19T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4475, 202, 40, CAST(N'2016-11-03T00:00:00.000' AS DateTime), CAST(N'2016-04-25T00:00:00.000' AS DateTime), N'Virginia Hall', N'141 Rowland Way', NULL, N'Aoji-ri', NULL, NULL, N'North Korea', CAST(7.5800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-13T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4476, 211, 16, CAST(N'2017-03-07T00:00:00.000' AS DateTime), CAST(N'2016-10-14T00:00:00.000' AS DateTime), N'Doris Berry', N'60 Rusk Lane', NULL, N'Al Qamsiyah', NULL, NULL, N'Syria', CAST(1.8000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-03-19T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4477, 210, 87, CAST(N'2016-12-04T00:00:00.000' AS DateTime), CAST(N'2016-03-22T00:00:00.000' AS DateTime), N'Juan Richards', N'3830 Randy Parkway', NULL, N'Nakhon Nayok', NULL, N'26120', N'Thailand', CAST(1.2200 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-05T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4478, 203, 34, CAST(N'2017-01-28T00:00:00.000' AS DateTime), CAST(N'2016-09-27T00:00:00.000' AS DateTime), N'Kimberly Fox', N'34957 Elka Way', NULL, N'Santiago', NULL, N'97700-000', N'Brazil', CAST(3.9900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-06T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4479, 219, 89, CAST(N'2016-07-01T00:00:00.000' AS DateTime), CAST(N'2016-05-31T00:00:00.000' AS DateTime), N'Ruby Ruiz', N'90581 American Hill', NULL, N'Agudos', NULL, N'17120-000', N'Brazil', CAST(5.9700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-03T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4480, 203, 53, CAST(N'2016-10-17T00:00:00.000' AS DateTime), CAST(N'2016-11-07T00:00:00.000' AS DateTime), N'Ruby Robinson', N'385 Carioca Plaza', NULL, N'Kalangan', NULL, NULL, N'Indonesia', CAST(8.7100 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-01T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4481, 207, 91, CAST(N'2017-02-25T00:00:00.000' AS DateTime), CAST(N'2016-03-31T00:00:00.000' AS DateTime), N'Victor Lopez', N'170 Mariners Cove Circle', NULL, N'Bressuire', N'Poitou-Charentes', N'79304 CEDEX', N'France', CAST(8.5900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-30T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4482, 215, 58, CAST(N'2017-02-15T00:00:00.000' AS DateTime), CAST(N'2016-07-25T00:00:00.000' AS DateTime), N'Kimberly Marshall', N'647 Summerview Circle', NULL, N'Timahankrajan', NULL, NULL, N'Indonesia', CAST(3.0700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-21T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4483, 207, 76, CAST(N'2016-06-27T00:00:00.000' AS DateTime), CAST(N'2016-10-15T00:00:00.000' AS DateTime), N'Pamela Matthews', N'9379 Summit Trail', NULL, N'Brangsi', NULL, NULL, N'Indonesia', CAST(1.3500 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-27T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4484, 210, 98, CAST(N'2017-02-03T00:00:00.000' AS DateTime), CAST(N'2016-11-04T00:00:00.000' AS DateTime), N'Randy Patterson', N'6641 American Ash Point', NULL, N'Ivanec', NULL, N'42240', N'Croatia', CAST(2.3600 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-31T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4485, 205, 71, CAST(N'2017-01-01T00:00:00.000' AS DateTime), CAST(N'2017-02-16T00:00:00.000' AS DateTime), N'Carolyn Garza', N'281 Raven Lane', NULL, N'Jingyang', NULL, NULL, N'China', CAST(6.8500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-27T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4486, 202, 20, CAST(N'2016-07-24T00:00:00.000' AS DateTime), CAST(N'2016-07-06T00:00:00.000' AS DateTime), N'Ruth Perkins', N'5656 Northview Lane', NULL, N'Burevestnik', NULL, N'607612', N'Russia', CAST(9.2900 AS Decimal(19, 4)), N'Cash', CAST(N'2017-03-16T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4487, 203, 49, CAST(N'2017-02-20T00:00:00.000' AS DateTime), CAST(N'2017-01-12T00:00:00.000' AS DateTime), N'Kelly Oliver', N'249 Londonderry Pass', NULL, N'Grande Rivière du Nord', NULL, NULL, N'Haiti', CAST(7.6500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-12-04T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4488, 203, 67, CAST(N'2016-11-09T00:00:00.000' AS DateTime), CAST(N'2016-07-19T00:00:00.000' AS DateTime), N'Shirley Henry', N'3045 Rowland Lane', NULL, N'Midlands', NULL, NULL, N'Mauritius', CAST(5.3500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-14T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4489, 209, 100, CAST(N'2017-01-24T00:00:00.000' AS DateTime), CAST(N'2016-05-30T00:00:00.000' AS DateTime), N'Marie Ferguson', N'629 Crownhardt Junction', NULL, N'El Paso', N'Texas', N'88546', N'United States', CAST(5.1800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-20T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4490, 202, 87, CAST(N'2016-06-27T00:00:00.000' AS DateTime), CAST(N'2016-09-05T00:00:00.000' AS DateTime), N'Rachel Scott', N'343 Schurz Road', NULL, N'Cabiguan', NULL, N'1144', N'Philippines', CAST(1.0500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-07-24T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4491, 211, 93, CAST(N'2017-01-16T00:00:00.000' AS DateTime), CAST(N'2016-09-29T00:00:00.000' AS DateTime), N'Henry Fields', N'26143 Del Sol Avenue', NULL, N'Huangduobu', NULL, NULL, N'China', CAST(6.1500 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-02T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4492, 217, 10, CAST(N'2016-12-08T00:00:00.000' AS DateTime), CAST(N'2016-10-01T00:00:00.000' AS DateTime), N'Harold Jones', N'2 Oak Avenue', NULL, N'Surkhakhi', NULL, N'386147', N'Russia', CAST(9.9600 AS Decimal(19, 4)), N'Card', CAST(N'2016-04-07T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4493, 217, 35, CAST(N'2016-05-05T00:00:00.000' AS DateTime), CAST(N'2016-05-01T00:00:00.000' AS DateTime), N'Walter Wright', N'12 Paget Road', NULL, N'Siluman', NULL, NULL, N'Indonesia', CAST(2.1000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-26T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4494, 206, 51, CAST(N'2017-02-25T00:00:00.000' AS DateTime), CAST(N'2016-10-24T00:00:00.000' AS DateTime), N'Marilyn Hayes', N'4 5th Way', NULL, N'Punkaharju', NULL, N'58501', N'Finland', CAST(3.5700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-22T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4495, 208, 3, CAST(N'2016-12-27T00:00:00.000' AS DateTime), CAST(N'2016-09-09T00:00:00.000' AS DateTime), N'Sandra West', N'0384 Bowman Center', NULL, N'Tagta', NULL, NULL, N'Turkmenistan', CAST(6.4500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-25T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4496, 218, 41, CAST(N'2017-01-10T00:00:00.000' AS DateTime), CAST(N'2016-12-11T00:00:00.000' AS DateTime), N'Dennis Meyer', N'4 Cambridge Alley', NULL, N'Cariamanga', NULL, NULL, N'Ecuador', CAST(5.3300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-28T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4497, 216, 76, CAST(N'2016-09-28T00:00:00.000' AS DateTime), CAST(N'2016-05-12T00:00:00.000' AS DateTime), N'Frank Dean', N'23227 Veith Park', NULL, N'Fengqiao', NULL, NULL, N'China', CAST(6.7200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-12T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4498, 204, 3, CAST(N'2016-11-11T00:00:00.000' AS DateTime), CAST(N'2016-12-01T00:00:00.000' AS DateTime), N'Amy Palmer', N'7735 Maple Wood Road', NULL, N'Dzialoszyce', NULL, N'28-440', N'Poland', CAST(3.0800 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-07T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4499, 211, 96, CAST(N'2017-02-04T00:00:00.000' AS DateTime), CAST(N'2016-03-27T00:00:00.000' AS DateTime), N'Emily Nelson', N'3 Crownhardt Plaza', NULL, N'Oslob', NULL, N'6025', N'Philippines', CAST(6.4100 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-25T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4500, 204, 7, CAST(N'2016-04-29T00:00:00.000' AS DateTime), CAST(N'2017-01-20T00:00:00.000' AS DateTime), N'Randy Hanson', N'687 Drewry Place', NULL, N'Barberena', NULL, N'06002', N'Guatemala', CAST(2.5100 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-12T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4501, 215, 92, CAST(N'2017-02-27T00:00:00.000' AS DateTime), CAST(N'2016-09-26T00:00:00.000' AS DateTime), N'Raymond Banks', N'826 Mendota Pass', NULL, N'Chicago', N'Illinois', N'60681', N'United States', CAST(3.3400 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-30T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4502, 220, 24, CAST(N'2016-10-01T00:00:00.000' AS DateTime), CAST(N'2016-09-26T00:00:00.000' AS DateTime), N'Kimberly Robertson', N'2643 Becker Trail', NULL, N'Columbus', N'Georgia', N'31904', N'United States', CAST(3.0700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-27T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4503, 215, 52, CAST(N'2017-02-25T00:00:00.000' AS DateTime), CAST(N'2016-08-08T00:00:00.000' AS DateTime), N'Marilyn Miller', N'1 Tennessee Park', NULL, N'Spokane', N'Washington', N'99252', N'United States', CAST(5.3400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-16T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4504, 220, 35, CAST(N'2017-01-27T00:00:00.000' AS DateTime), CAST(N'2016-09-08T00:00:00.000' AS DateTime), N'Marie Carpenter', N'4575 Fair Oaks Hill', NULL, N'Richmond', N'Virginia', N'23293', N'United States', CAST(7.0100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-06T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4505, 203, 10, CAST(N'2016-06-24T00:00:00.000' AS DateTime), CAST(N'2017-02-22T00:00:00.000' AS DateTime), N'Nicholas Wells', N'823 Duke Center', NULL, N'Irvine', N'California', N'92710', N'United States', CAST(1.4000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-17T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4506, 207, 26, CAST(N'2016-12-26T00:00:00.000' AS DateTime), CAST(N'2017-03-14T00:00:00.000' AS DateTime), N'John Dean', N'06 Spenser Place', NULL, N'Charleston', N'South Carolina', N'29403', N'United States', CAST(1.3100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-25T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4507, 216, 28, CAST(N'2016-08-22T00:00:00.000' AS DateTime), CAST(N'2016-12-13T00:00:00.000' AS DateTime), N'Diana Spencer', N'26 Ridgeway Plaza', NULL, N'Ogden', N'Utah', N'84403', N'United States', CAST(9.4200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-13T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4508, 213, 90, CAST(N'2016-08-31T00:00:00.000' AS DateTime), CAST(N'2017-01-13T00:00:00.000' AS DateTime), N'Wanda Bowman', N'862 Iowa Avenue', NULL, N'Kansas City', N'Kansas', N'66160', N'United States', CAST(7.1000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-19T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4509, 204, 93, CAST(N'2016-07-07T00:00:00.000' AS DateTime), CAST(N'2016-05-31T00:00:00.000' AS DateTime), N'Andrew Garrett', N'27066 Gina Road', NULL, N'El Paso', N'Texas', N'88558', N'United States', CAST(6.8800 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-23T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4510, 202, 56, CAST(N'2017-02-06T00:00:00.000' AS DateTime), CAST(N'2016-10-29T00:00:00.000' AS DateTime), N'Juan Webb', N'6233 South Junction', NULL, N'Lafayette', N'Louisiana', N'70505', N'United States', CAST(1.0700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-20T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4511, 219, 54, CAST(N'2016-11-08T00:00:00.000' AS DateTime), CAST(N'2016-06-17T00:00:00.000' AS DateTime), N'William Gardner', N'5 Meadow Ridge Terrace', NULL, N'Tacoma', N'Washington', N'98447', N'United States', CAST(4.4600 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-25T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4512, 215, 4, CAST(N'2016-09-09T00:00:00.000' AS DateTime), CAST(N'2016-08-21T00:00:00.000' AS DateTime), N'Fred Fernandez', N'15 Ludington Junction', NULL, N'San Rafael', N'California', N'94913', N'United States', CAST(4.3000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-02T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4513, 206, 54, CAST(N'2016-10-28T00:00:00.000' AS DateTime), CAST(N'2016-06-30T00:00:00.000' AS DateTime), N'Ruth Ellis', N'41196 Rieder Avenue', NULL, N'Baltimore', N'Maryland', N'21211', N'United States', CAST(8.3900 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-29T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4514, 215, 73, CAST(N'2017-02-26T00:00:00.000' AS DateTime), CAST(N'2016-09-17T00:00:00.000' AS DateTime), N'David Ferguson', N'5813 Brown Parkway', NULL, N'Shawnee Mission', N'Kansas', N'66286', N'United States', CAST(2.7100 AS Decimal(19, 4)), N'Card', CAST(N'2016-04-18T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4515, 216, 23, CAST(N'2016-11-08T00:00:00.000' AS DateTime), CAST(N'2016-06-27T00:00:00.000' AS DateTime), N'Susan Freeman', N'0 Bashford Parkway', NULL, N'Tucson', N'Arizona', N'85720', N'United States', CAST(5.5000 AS Decimal(19, 4)), N'Checque', CAST(N'2017-02-01T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4516, 212, 9, CAST(N'2016-04-30T00:00:00.000' AS DateTime), CAST(N'2016-12-31T00:00:00.000' AS DateTime), N'Alan Hunt', N'193 Declaration Plaza', NULL, N'Louisville', N'Kentucky', N'40256', N'United States', CAST(9.7400 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-20T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4517, 202, 46, CAST(N'2017-02-01T00:00:00.000' AS DateTime), CAST(N'2016-07-22T00:00:00.000' AS DateTime), N'Phillip Romero', N'1860 Thompson Crossing', NULL, N'Biloxi', N'Mississippi', N'39534', N'United States', CAST(3.0200 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-04T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4518, 203, 75, CAST(N'2016-09-07T00:00:00.000' AS DateTime), CAST(N'2016-11-14T00:00:00.000' AS DateTime), N'George Diaz', N'6 Mcguire Center', NULL, N'Mesa', N'Arizona', N'85210', N'United States', CAST(7.8400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-21T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4519, 217, 68, CAST(N'2016-10-07T00:00:00.000' AS DateTime), CAST(N'2016-08-15T00:00:00.000' AS DateTime), N'Virginia King', N'7405 High Crossing Alley', NULL, N'Sioux City', N'Iowa', N'51105', N'United States', CAST(4.0300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-09T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4520, 216, 6, CAST(N'2017-02-18T00:00:00.000' AS DateTime), CAST(N'2017-02-17T00:00:00.000' AS DateTime), N'Brenda Ruiz', N'224 Badeau Street', NULL, N'Corpus Christi', N'Texas', N'78426', N'United States', CAST(9.1100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-13T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4521, 201, 84, CAST(N'2016-09-17T00:00:00.000' AS DateTime), CAST(N'2016-06-15T00:00:00.000' AS DateTime), N'Debra Brown', N'94 Morningstar Center', NULL, N'San Francisco', N'California', N'94177', N'United States', CAST(6.5900 AS Decimal(19, 4)), N'Checque', CAST(N'2017-03-10T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4522, 205, 89, CAST(N'2016-10-22T00:00:00.000' AS DateTime), CAST(N'2017-03-13T00:00:00.000' AS DateTime), N'Emily Henry', N'79 Manufacturers Center', NULL, N'Los Angeles', N'California', N'90020', N'United States', CAST(4.1100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-27T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4523, 211, 67, CAST(N'2016-04-17T00:00:00.000' AS DateTime), CAST(N'2017-02-12T00:00:00.000' AS DateTime), N'Aaron Peterson', N'504 Schlimgen Terrace', NULL, N'Bethesda', N'Maryland', N'20892', N'United States', CAST(5.4200 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-25T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4524, 215, 83, CAST(N'2016-08-22T00:00:00.000' AS DateTime), CAST(N'2016-07-31T00:00:00.000' AS DateTime), N'Janice Burke', N'3 Mcbride Lane', NULL, N'Washington', N'District of Columbia', N'20073', N'United States', CAST(3.7600 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-09T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4525, 217, 100, CAST(N'2016-03-31T00:00:00.000' AS DateTime), CAST(N'2016-12-09T00:00:00.000' AS DateTime), N'Debra Kelley', N'18155 Northview Plaza', NULL, N'Detroit', N'Michigan', N'48267', N'United States', CAST(2.2600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-12-29T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4526, 214, 32, CAST(N'2016-11-24T00:00:00.000' AS DateTime), CAST(N'2016-03-28T00:00:00.000' AS DateTime), N'Donald Sims', N'86 Michigan Avenue', NULL, N'Brooklyn', N'New York', N'11231', N'United States', CAST(5.0500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-07T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4527, 205, 100, CAST(N'2016-05-13T00:00:00.000' AS DateTime), CAST(N'2016-06-17T00:00:00.000' AS DateTime), N'Daniel Mason', N'4 Hanover Road', NULL, N'Reno', N'Nevada', N'89595', N'United States', CAST(4.8100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-22T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4528, 201, 32, CAST(N'2016-11-15T00:00:00.000' AS DateTime), CAST(N'2016-11-16T00:00:00.000' AS DateTime), N'Howard Knight', N'5 Weeping Birch Alley', NULL, N'Jacksonville', N'Florida', N'32225', N'United States', CAST(5.9900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-07T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4529, 213, 99, CAST(N'2016-12-02T00:00:00.000' AS DateTime), CAST(N'2016-07-09T00:00:00.000' AS DateTime), N'Virginia Hughes', N'629 Manufacturers Point', NULL, N'Syracuse', N'New York', N'13224', N'United States', CAST(5.6000 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-02T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4530, 219, 18, CAST(N'2016-12-07T00:00:00.000' AS DateTime), CAST(N'2017-02-07T00:00:00.000' AS DateTime), N'Carl Graham', N'90 Heffernan Pass', NULL, N'Saint Petersburg', N'Florida', N'33737', N'United States', CAST(9.3500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-18T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4531, 201, 57, CAST(N'2016-12-26T00:00:00.000' AS DateTime), CAST(N'2016-12-29T00:00:00.000' AS DateTime), N'Joan Murray', N'38 Bellgrove Crossing', NULL, N'Tacoma', N'Washington', N'98447', N'United States', CAST(6.6900 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-05T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4532, 202, 58, CAST(N'2016-04-02T00:00:00.000' AS DateTime), CAST(N'2016-07-01T00:00:00.000' AS DateTime), N'Robert Williams', N'09407 Northfield Circle', NULL, N'Cedar Rapids', N'Iowa', N'52410', N'United States', CAST(6.5600 AS Decimal(19, 4)), N'Card', CAST(N'2016-04-16T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4533, 218, 36, CAST(N'2017-02-07T00:00:00.000' AS DateTime), CAST(N'2016-05-05T00:00:00.000' AS DateTime), N'Ryan Black', N'57199 Hoffman Place', NULL, N'Jacksonville', N'Florida', N'32204', N'United States', CAST(8.5400 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-24T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4534, 208, 92, CAST(N'2016-07-09T00:00:00.000' AS DateTime), CAST(N'2016-06-20T00:00:00.000' AS DateTime), N'Brenda Hunter', N'16179 Ludington Court', NULL, N'Birmingham', N'Alabama', N'35263', N'United States', CAST(9.8200 AS Decimal(19, 4)), N'Cash', CAST(N'2016-09-30T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4535, 214, 70, CAST(N'2016-08-04T00:00:00.000' AS DateTime), CAST(N'2016-06-29T00:00:00.000' AS DateTime), N'Anne Warren', N'08161 Barnett Parkway', NULL, N'Van Nuys', N'California', N'91411', N'United States', CAST(7.0400 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-24T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4536, 213, 99, CAST(N'2017-01-11T00:00:00.000' AS DateTime), CAST(N'2017-01-21T00:00:00.000' AS DateTime), N'Betty Snyder', N'9 Badeau Court', NULL, N'Davenport', N'Iowa', N'52804', N'United States', CAST(8.7200 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-03T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4537, 217, 76, CAST(N'2016-07-31T00:00:00.000' AS DateTime), CAST(N'2017-02-13T00:00:00.000' AS DateTime), N'Edward Wilson', N'1031 Esch Drive', NULL, N'Fresno', N'California', N'93750', N'United States', CAST(1.6400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-21T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4538, 210, 60, CAST(N'2016-06-22T00:00:00.000' AS DateTime), CAST(N'2016-04-10T00:00:00.000' AS DateTime), N'Terry Butler', N'124 Hoepker Pass', NULL, N'San Antonio', N'Texas', N'78255', N'United States', CAST(2.3500 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-31T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4539, 220, 5, CAST(N'2016-11-12T00:00:00.000' AS DateTime), CAST(N'2016-04-25T00:00:00.000' AS DateTime), N'Emily Hawkins', N'990 Quincy Drive', NULL, N'Richmond', N'Virginia', N'23289', N'United States', CAST(4.3600 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-17T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4540, 213, 42, CAST(N'2017-02-28T00:00:00.000' AS DateTime), CAST(N'2017-02-11T00:00:00.000' AS DateTime), N'Cynthia Rose', N'8881 Packers Trail', NULL, N'Berkeley', N'California', N'94712', N'United States', CAST(6.0900 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-14T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4541, 204, 27, CAST(N'2016-09-30T00:00:00.000' AS DateTime), CAST(N'2017-01-28T00:00:00.000' AS DateTime), N'Lisa Turner', N'83 Graedel Terrace', NULL, N'Oakland', N'California', N'94611', N'United States', CAST(9.6100 AS Decimal(19, 4)), N'Card', CAST(N'2016-05-07T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4542, 219, 26, CAST(N'2016-07-13T00:00:00.000' AS DateTime), CAST(N'2016-03-23T00:00:00.000' AS DateTime), N'Jason Price', N'475 Meadow Valley Point', NULL, N'Annapolis', N'Maryland', N'21405', N'United States', CAST(2.9300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-10T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4543, 202, 63, CAST(N'2016-07-29T00:00:00.000' AS DateTime), CAST(N'2016-05-20T00:00:00.000' AS DateTime), N'Joan Hayes', N'7 Upham Center', NULL, N'Temple', N'Texas', N'76505', N'United States', CAST(7.3900 AS Decimal(19, 4)), N'Card', CAST(N'2016-09-20T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4544, 212, 97, CAST(N'2016-10-31T00:00:00.000' AS DateTime), CAST(N'2017-01-16T00:00:00.000' AS DateTime), N'Paula Torres', N'443 Debs Terrace', NULL, N'Racine', N'Wisconsin', N'53405', N'United States', CAST(3.9300 AS Decimal(19, 4)), N'Card', CAST(N'2016-07-07T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4545, 201, 33, CAST(N'2017-03-08T00:00:00.000' AS DateTime), CAST(N'2016-08-21T00:00:00.000' AS DateTime), N'Theresa Watkins', N'85395 Rusk Center', NULL, N'Jackson', N'Mississippi', N'39210', N'United States', CAST(5.3200 AS Decimal(19, 4)), N'Card', CAST(N'2016-11-19T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4546, 211, 68, CAST(N'2016-05-25T00:00:00.000' AS DateTime), CAST(N'2016-07-17T00:00:00.000' AS DateTime), N'Clarence Nguyen', N'155 Northport Road', NULL, N'Greensboro', N'North Carolina', N'27455', N'United States', CAST(7.0600 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-24T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4547, 203, 73, CAST(N'2016-05-03T00:00:00.000' AS DateTime), CAST(N'2016-10-23T00:00:00.000' AS DateTime), N'Jean Mason', N'03 Eagle Crest Lane', NULL, N'Colorado Springs', N'Colorado', N'80935', N'United States', CAST(4.2000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-07T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4548, 217, 2, CAST(N'2016-05-20T00:00:00.000' AS DateTime), CAST(N'2016-08-07T00:00:00.000' AS DateTime), N'Nicole Brown', N'364 Debra Lane', NULL, N'Washington', N'District of Columbia', N'20046', N'United States', CAST(7.9700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-30T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4549, 220, 89, CAST(N'2016-04-11T00:00:00.000' AS DateTime), CAST(N'2016-12-11T00:00:00.000' AS DateTime), N'Carol Chapman', N'756 Muir Point', NULL, N'Washington', N'District of Columbia', N'20397', N'United States', CAST(2.2100 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-05T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4550, 211, 13, CAST(N'2016-04-16T00:00:00.000' AS DateTime), CAST(N'2016-08-03T00:00:00.000' AS DateTime), N'Roy George', N'8 Anhalt Terrace', NULL, N'Indianapolis', N'Indiana', N'46207', N'United States', CAST(4.5000 AS Decimal(19, 4)), N'Checque', CAST(N'2017-03-06T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4551, 219, 37, CAST(N'2016-04-14T00:00:00.000' AS DateTime), CAST(N'2017-03-01T00:00:00.000' AS DateTime), N'Heather Bishop', N'0901 Tennessee Street', NULL, N'Kingsport', N'Tennessee', N'37665', N'United States', CAST(1.9200 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-02T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4552, 218, 94, CAST(N'2017-03-05T00:00:00.000' AS DateTime), CAST(N'2016-06-01T00:00:00.000' AS DateTime), N'Wayne Mason', N'90645 Carberry Drive', NULL, N'Madison', N'Wisconsin', N'53716', N'United States', CAST(6.9600 AS Decimal(19, 4)), N'Card', CAST(N'2016-12-31T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4553, 212, 37, CAST(N'2016-10-16T00:00:00.000' AS DateTime), CAST(N'2016-10-13T00:00:00.000' AS DateTime), N'Gloria Elliott', N'100 Granby Junction', NULL, N'Miami', N'Florida', N'33153', N'United States', CAST(9.2500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-09T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4554, 217, 4, CAST(N'2016-06-05T00:00:00.000' AS DateTime), CAST(N'2016-07-26T00:00:00.000' AS DateTime), N'Timothy Hayes', N'6001 Elgar Circle', NULL, N'Pensacola', N'Florida', N'32575', N'United States', CAST(6.5000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-03-30T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4555, 207, 49, CAST(N'2016-08-19T00:00:00.000' AS DateTime), CAST(N'2016-08-15T00:00:00.000' AS DateTime), N'Judith Baker', N'3436 Briar Crest Park', NULL, N'Newark', N'New Jersey', N'07188', N'United States', CAST(2.3300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-09-17T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4556, 217, 17, CAST(N'2016-11-18T00:00:00.000' AS DateTime), CAST(N'2016-12-10T00:00:00.000' AS DateTime), N'Roy Russell', N'6401 Graedel Court', NULL, N'Alexandria', N'Virginia', N'22301', N'United States', CAST(3.2400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-08T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4557, 216, 35, CAST(N'2016-09-11T00:00:00.000' AS DateTime), CAST(N'2016-05-07T00:00:00.000' AS DateTime), N'Jacqueline Davis', N'864 Cherokee Lane', NULL, N'Columbus', N'Ohio', N'43226', N'United States', CAST(4.7000 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-06T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4558, 211, 20, CAST(N'2016-10-06T00:00:00.000' AS DateTime), CAST(N'2016-07-15T00:00:00.000' AS DateTime), N'Eugene Castillo', N'03090 Northland Circle', NULL, N'Salt Lake City', N'Utah', N'84199', N'United States', CAST(9.3600 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-06T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4559, 216, 13, CAST(N'2017-01-13T00:00:00.000' AS DateTime), CAST(N'2016-03-28T00:00:00.000' AS DateTime), N'Janice Mills', N'522 Holmberg Alley', NULL, N'Scottsdale', N'Arizona', N'85271', N'United States', CAST(7.3100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-15T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4560, 211, 77, CAST(N'2016-08-24T00:00:00.000' AS DateTime), CAST(N'2017-03-13T00:00:00.000' AS DateTime), N'Ruby White', N'0070 Corben Way', NULL, N'Naples', N'Florida', N'34114', N'United States', CAST(3.7100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-17T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4561, 219, 55, CAST(N'2016-08-13T00:00:00.000' AS DateTime), CAST(N'2016-11-19T00:00:00.000' AS DateTime), N'Frank Jackson', N'25 Rigney Point', NULL, N'Washington', N'District of Columbia', N'20420', N'United States', CAST(1.9400 AS Decimal(19, 4)), N'Cash', CAST(N'2016-06-12T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4562, 207, 96, CAST(N'2016-10-12T00:00:00.000' AS DateTime), CAST(N'2016-12-04T00:00:00.000' AS DateTime), N'Pamela Peterson', N'830 Loftsgordon Junction', NULL, N'Houston', N'Texas', N'77281', N'United States', CAST(1.4500 AS Decimal(19, 4)), N'Checque', CAST(N'2017-03-06T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4563, 204, 70, CAST(N'2016-07-23T00:00:00.000' AS DateTime), CAST(N'2017-02-06T00:00:00.000' AS DateTime), N'Martha Frazier', N'3 Gerald Lane', NULL, N'Scottsdale', N'Arizona', N'85260', N'United States', CAST(2.7400 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-19T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4564, 204, 59, CAST(N'2017-02-26T00:00:00.000' AS DateTime), CAST(N'2016-10-23T00:00:00.000' AS DateTime), N'Kenneth Hawkins', N'27305 Maple Crossing', NULL, N'San Diego', N'California', N'92145', N'United States', CAST(9.4100 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-09T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4565, 203, 66, CAST(N'2016-08-06T00:00:00.000' AS DateTime), CAST(N'2017-02-03T00:00:00.000' AS DateTime), N'Barbara Collins', N'8 Norway Maple Junction', NULL, N'Fort Worth', N'Texas', N'76198', N'United States', CAST(1.0800 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-24T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4566, 217, 83, CAST(N'2016-09-14T00:00:00.000' AS DateTime), CAST(N'2016-03-29T00:00:00.000' AS DateTime), N'Gary Ellis', N'97 Nobel Avenue', NULL, N'Alexandria', N'Louisiana', N'71307', N'United States', CAST(5.0500 AS Decimal(19, 4)), N'Card', CAST(N'2016-06-13T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4567, 214, 63, CAST(N'2017-03-04T00:00:00.000' AS DateTime), CAST(N'2016-11-05T00:00:00.000' AS DateTime), N'Douglas Hughes', N'98309 Mccormick Park', NULL, N'Kansas City', N'Kansas', N'66160', N'United States', CAST(1.4000 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-13T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4568, 208, 12, CAST(N'2016-10-31T00:00:00.000' AS DateTime), CAST(N'2017-02-27T00:00:00.000' AS DateTime), N'Harold Flores', N'1 Merchant Lane', NULL, N'Duluth', N'Georgia', N'30096', N'United States', CAST(4.8400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-30T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4569, 201, 96, CAST(N'2016-08-20T00:00:00.000' AS DateTime), CAST(N'2016-10-03T00:00:00.000' AS DateTime), N'Marie Nguyen', N'084 Stuart Hill', NULL, N'Arlington', N'Texas', N'76004', N'United States', CAST(5.9500 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-25T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4570, 203, 1, CAST(N'2016-10-13T00:00:00.000' AS DateTime), CAST(N'2016-03-21T00:00:00.000' AS DateTime), N'Judy Fowler', N'7541 Golf Course Way', NULL, N'Kansas City', N'Missouri', N'64109', N'United States', CAST(8.0200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-05-05T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4571, 219, 49, CAST(N'2016-11-04T00:00:00.000' AS DateTime), CAST(N'2016-09-02T00:00:00.000' AS DateTime), N'Howard Rogers', N'5 Scott Hill', NULL, N'Brooklyn', N'New York', N'11215', N'United States', CAST(5.2100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-10-28T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4572, 215, 5, CAST(N'2016-03-24T00:00:00.000' AS DateTime), CAST(N'2016-08-31T00:00:00.000' AS DateTime), N'Stephanie Martinez', N'0022 Reinke Trail', NULL, N'Baton Rouge', N'Louisiana', N'70894', N'United States', CAST(7.7400 AS Decimal(19, 4)), N'Card', CAST(N'2016-08-14T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4573, 206, 61, CAST(N'2016-08-31T00:00:00.000' AS DateTime), CAST(N'2016-07-10T00:00:00.000' AS DateTime), N'Jacqueline Lane', N'780 Elka Place', NULL, N'Cleveland', N'Ohio', N'44105', N'United States', CAST(9.1200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-11-30T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4574, 220, 65, CAST(N'2016-06-26T00:00:00.000' AS DateTime), CAST(N'2016-06-25T00:00:00.000' AS DateTime), N'Betty Harrison', N'23089 Kensington Junction', NULL, N'Greensboro', N'North Carolina', N'27404', N'United States', CAST(5.6300 AS Decimal(19, 4)), N'Checque', CAST(N'2016-03-30T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4575, 212, 81, CAST(N'2016-04-28T00:00:00.000' AS DateTime), CAST(N'2016-10-19T00:00:00.000' AS DateTime), N'Robin Bradley', N'7895 Weeping Birch Plaza', NULL, N'Waterbury', N'Connecticut', N'06721', N'United States', CAST(7.3400 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-25T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4576, 216, 13, CAST(N'2017-02-24T00:00:00.000' AS DateTime), CAST(N'2016-07-18T00:00:00.000' AS DateTime), N'Ralph Bailey', N'4019 Harper Park', NULL, N'Sacramento', N'California', N'94291', N'United States', CAST(6.7700 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-02T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4577, 203, 43, CAST(N'2016-09-24T00:00:00.000' AS DateTime), CAST(N'2016-11-18T00:00:00.000' AS DateTime), N'Melissa Ross', N'775 Lyons Road', NULL, N'Bridgeport', N'Connecticut', N'06606', N'United States', CAST(1.6400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-23T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4578, 212, 53, CAST(N'2016-07-05T00:00:00.000' AS DateTime), CAST(N'2016-06-19T00:00:00.000' AS DateTime), N'Joan Russell', N'0 Kings Terrace', NULL, N'Bloomington', N'Illinois', N'61709', N'United States', CAST(4.6600 AS Decimal(19, 4)), N'Card', CAST(N'2016-04-09T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4579, 214, 17, CAST(N'2016-10-01T00:00:00.000' AS DateTime), CAST(N'2016-10-18T00:00:00.000' AS DateTime), N'Benjamin George', N'40131 Ronald Regan Road', NULL, N'Washington', N'District of Columbia', N'20525', N'United States', CAST(8.0400 AS Decimal(19, 4)), N'Checque', CAST(N'2016-06-16T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4580, 207, 69, CAST(N'2016-04-19T00:00:00.000' AS DateTime), CAST(N'2017-02-09T00:00:00.000' AS DateTime), N'Katherine Stone', N'37483 Melrose Parkway', NULL, N'Fresno', N'California', N'93794', N'United States', CAST(6.7000 AS Decimal(19, 4)), N'Checque', CAST(N'2017-02-08T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4581, 218, 28, CAST(N'2017-03-04T00:00:00.000' AS DateTime), CAST(N'2016-11-25T00:00:00.000' AS DateTime), N'Ernest Cruz', N'872 Nancy Street', NULL, N'Pompano Beach', N'Florida', N'33069', N'United States', CAST(5.8100 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-21T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4582, 217, 32, CAST(N'2017-03-16T00:00:00.000' AS DateTime), CAST(N'2016-06-08T00:00:00.000' AS DateTime), N'Joshua Edwards', N'72309 Elmside Point', NULL, N'San Francisco', N'California', N'94110', N'United States', CAST(2.4900 AS Decimal(19, 4)), N'Cash', CAST(N'2016-04-01T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4583, 219, 83, CAST(N'2017-01-24T00:00:00.000' AS DateTime), CAST(N'2016-07-25T00:00:00.000' AS DateTime), N'Justin Mills', N'88350 Wayridge Hill', NULL, N'Charleston', N'West Virginia', N'25326', N'United States', CAST(6.0300 AS Decimal(19, 4)), N'Card', CAST(N'2016-10-07T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4584, 208, 45, CAST(N'2016-10-18T00:00:00.000' AS DateTime), CAST(N'2016-05-13T00:00:00.000' AS DateTime), N'Kathleen Gibson', N'25 Carpenter Lane', NULL, N'Reno', N'Nevada', N'89505', N'United States', CAST(5.4100 AS Decimal(19, 4)), N'Checque', CAST(N'2016-08-21T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4585, 216, 71, CAST(N'2016-09-19T00:00:00.000' AS DateTime), CAST(N'2016-10-15T00:00:00.000' AS DateTime), N'Ruby Bennett', N'1 Muir Pass', NULL, N'Las Vegas', N'Nevada', N'89135', N'United States', CAST(2.5000 AS Decimal(19, 4)), N'Cash', CAST(N'2016-11-29T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4586, 214, 48, CAST(N'2016-08-07T00:00:00.000' AS DateTime), CAST(N'2016-08-12T00:00:00.000' AS DateTime), N'Richard Robinson', N'1125 Melvin Terrace', NULL, N'Bethesda', N'Maryland', N'20816', N'United States', CAST(4.0200 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-09T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4587, 212, 62, CAST(N'2016-12-17T00:00:00.000' AS DateTime), CAST(N'2017-01-23T00:00:00.000' AS DateTime), N'Debra Sanchez', N'534 Stoughton Lane', NULL, N'Johnstown', N'Pennsylvania', N'15906', N'United States', CAST(8.7800 AS Decimal(19, 4)), N'Cash', CAST(N'2016-08-07T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4588, 216, 30, CAST(N'2016-10-24T00:00:00.000' AS DateTime), CAST(N'2016-12-21T00:00:00.000' AS DateTime), N'Willie Dean', N'680 Northview Circle', NULL, N'Huntington', N'West Virginia', N'25775', N'United States', CAST(8.4300 AS Decimal(19, 4)), N'Card', CAST(N'2017-03-12T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4589, 210, 10, CAST(N'2017-01-01T00:00:00.000' AS DateTime), CAST(N'2016-09-22T00:00:00.000' AS DateTime), N'Christina Kelley', N'8706 Sundown Street', NULL, N'Peoria', N'Illinois', N'61635', N'United States', CAST(4.2400 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-08T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4590, 205, 6, CAST(N'2016-11-29T00:00:00.000' AS DateTime), CAST(N'2017-02-23T00:00:00.000' AS DateTime), N'Russell Montgomery', N'977 Packers Drive', NULL, N'Charlotte', N'North Carolina', N'28247', N'United States', CAST(2.8700 AS Decimal(19, 4)), N'Cash', CAST(N'2016-05-30T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4591, 206, 15, CAST(N'2016-03-28T00:00:00.000' AS DateTime), CAST(N'2017-02-23T00:00:00.000' AS DateTime), N'Edward Cunningham', N'283 Bultman Way', NULL, N'Jacksonville', N'Florida', N'32277', N'United States', CAST(6.5500 AS Decimal(19, 4)), N'Checque', CAST(N'2017-03-10T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4592, 209, 82, CAST(N'2016-12-20T00:00:00.000' AS DateTime), CAST(N'2016-09-07T00:00:00.000' AS DateTime), N'Michael Chavez', N'00 Oak Avenue', NULL, N'Young America', N'Minnesota', N'55551', N'United States', CAST(8.2200 AS Decimal(19, 4)), N'Checque', CAST(N'2016-04-19T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4593, 204, 24, CAST(N'2017-03-13T00:00:00.000' AS DateTime), CAST(N'2016-08-30T00:00:00.000' AS DateTime), N'David White', N'506 Nevada Circle', NULL, N'Portland', N'Maine', N'04109', N'United States', CAST(1.1100 AS Decimal(19, 4)), N'Card', CAST(N'2017-01-13T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4594, 206, 27, CAST(N'2016-09-13T00:00:00.000' AS DateTime), CAST(N'2017-03-12T00:00:00.000' AS DateTime), N'Cheryl Vasquez', N'9070 Di Loreto Court', NULL, N'Van Nuys', N'California', N'91499', N'United States', CAST(7.4200 AS Decimal(19, 4)), N'Card', CAST(N'2017-02-25T00:00:00.000' AS DateTime), N'On Hold') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4595, 211, 94, CAST(N'2016-07-03T00:00:00.000' AS DateTime), CAST(N'2016-05-08T00:00:00.000' AS DateTime), N'Charles Garrett', N'1337 Hooker Trail', NULL, N'Honolulu', N'Hawaii', N'96810', N'United States', CAST(9.5700 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-04T00:00:00.000' AS DateTime), N'Shipped') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4596, 216, 56, CAST(N'2016-07-08T00:00:00.000' AS DateTime), CAST(N'2017-02-28T00:00:00.000' AS DateTime), N'Michelle Butler', N'1 Magdeline Lane', NULL, N'Orlando', N'Florida', N'32813', N'United States', CAST(7.0500 AS Decimal(19, 4)), N'Checque', CAST(N'2016-07-12T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4597, 217, 26, CAST(N'2016-09-24T00:00:00.000' AS DateTime), CAST(N'2016-10-05T00:00:00.000' AS DateTime), N'Howard Reyes', N'3677 Donald Alley', NULL, N'Carol Stream', N'Illinois', N'60351', N'United States', CAST(7.6200 AS Decimal(19, 4)), N'Cash', CAST(N'2017-02-08T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4598, 212, 76, CAST(N'2016-04-13T00:00:00.000' AS DateTime), CAST(N'2016-08-10T00:00:00.000' AS DateTime), N'Eugene Kelly', N'838 Becker Plaza', NULL, N'Laredo', N'Texas', N'78044', N'United States', CAST(4.9000 AS Decimal(19, 4)), N'Checque', CAST(N'2016-10-23T00:00:00.000' AS DateTime), N'New') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4599, 208, 29, CAST(N'2016-04-16T00:00:00.000' AS DateTime), CAST(N'2016-05-15T00:00:00.000' AS DateTime), N'Jimmy Mcdonald', N'0 Dayton Place', NULL, N'Rochester', N'New York', N'14646', N'United States', CAST(1.5600 AS Decimal(19, 4)), N'Checque', CAST(N'2017-01-14T00:00:00.000' AS DateTime), N'Complete') GO INSERT [dbo].[orders] ([id], [employee_id], [customer_id], [order_date], [shipped_date], [ship_name], [ship_address1], [ship_address2], [ship_city], [ship_state], [ship_postal_code], [ship_country], [shipping_fee], [payment_type], [paid_date], [order_status]) VALUES (4600, 208, 2, CAST(N'2016-04-26T00:00:00.000' AS DateTime), CAST(N'2016-04-06T00:00:00.000' AS DateTime), N'Stephen Jacobs', N'7131 Scoville Terrace', NULL, N'Phoenix', N'Arizona', N'85020', N'United States', CAST(4.5200 AS Decimal(19, 4)), N'Cash', CAST(N'2017-01-22T00:00:00.000' AS DateTime), N'On Hold') GO SET IDENTITY_INSERT [dbo].[orders] OFF GO SET IDENTITY_INSERT [dbo].[products] ON GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (601, N'SP002', N'Sản phẩm 02 từ API', N'Mô tả 2222', NULL, CAST(0.0000 AS Decimal(19, 4)), NULL, NULL, NULL, NULL, 0, NULL, N'samsung-galaxy-tab.jpg') GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (602, N'SP003', N'Sản phẩm 03 từ API', N'Mô tả 2222', NULL, CAST(0.0000 AS Decimal(19, 4)), NULL, NULL, NULL, NULL, 0, NULL, NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (603, N'P33333', N'Dell Inspirion 333', N'333', CAST(666.0000 AS Decimal(19, 4)), CAST(888.0000 AS Decimal(19, 4)), 92, 76, 92, N'56', 0, N'Laptop', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (604, N'P4', N'iPad Air', NULL, CAST(82.8300 AS Decimal(19, 4)), CAST(93.8400 AS Decimal(19, 4)), 92, 76, 92, N'56', 0, N'Tablet', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (605, N'P5', N'Microsft Surface', NULL, CAST(82.8300 AS Decimal(19, 4)), CAST(93.8400 AS Decimal(19, 4)), 92, 76, 92, N'56', 0, N'Tablet', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (606, N'P6', N'Nexus 6', NULL, CAST(33.8800 AS Decimal(19, 4)), CAST(11.7000 AS Decimal(19, 4)), 71, 16, 96, N'79', 1, N'Phone', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (607, N'P7', N'ThinkPad T365', NULL, CAST(41.0200 AS Decimal(19, 4)), CAST(8.9800 AS Decimal(19, 4)), 22, 42, 54, N'92', 1, N'Laptop', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (608, N'P8', N'Moto Play', NULL, CAST(38.4400 AS Decimal(19, 4)), CAST(62.3400 AS Decimal(19, 4)), 65, 4, 40, N'54', 1, N'Phone', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (609, N'P9', N'Samasung Note', NULL, CAST(47.5800 AS Decimal(19, 4)), CAST(81.8300 AS Decimal(19, 4)), 53, 55, 24, N'58', 33, N'Tablet', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (610, N'P10', N'MacBook Pro', NULL, CAST(25.8100 AS Decimal(19, 4)), CAST(76.6100 AS Decimal(19, 4)), 11, 44, 43, N'11', 1, N'Laptop', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (611, N'Nokia1', N'Nokia 123', N'aaaa', CAST(1500000.0000 AS Decimal(19, 4)), CAST(200000.0000 AS Decimal(19, 4)), 3, 4, 5, N'6', 7, N'8', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (612, N'z', N'x', N'c', CAST(9.0000 AS Decimal(19, 4)), CAST(8.0000 AS Decimal(19, 4)), 7, 6, 5, N'4', 3, N'2', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (613, N'samsung ...', N'bb', N'cc', CAST(11.0000 AS Decimal(19, 4)), CAST(22.0000 AS Decimal(19, 4)), 33, 44, 55, N'66', 77, N'danh mục', NULL) GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (615, N'SP001', N'Sản phẩm 01 từ API', N'Mô tả', CAST(15000.0000 AS Decimal(19, 4)), CAST(20000.0000 AS Decimal(19, 4)), 10, 10, 2, N'3', 0, N'Chuyên mục 01', N'hoahong.jpg') GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (616, N'SPVD1', N'Sản phẩm ví dụ 1', N'mô tả ngắn', CAST(12345.0000 AS Decimal(19, 4)), CAST(123456.0000 AS Decimal(19, 4)), 1, 1, 10, N'20', 10, N'1', N'iphone5.jpg') GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (617, N'SPAZure1', N'Sản phẩm Azure 1', N'abc', CAST(123.0000 AS Decimal(19, 4)), CAST(456.0000 AS Decimal(19, 4)), 789, 1, 2, N'3', 4, NULL, N'System.Web.HttpPostedFileWrapper') GO INSERT [dbo].[products] ([id], [product_code], [product_name], [description], [standard_cost], [list_price], [target_level], [reorder_level], [minimum_reorder_quantity], [quantity_per_unit], [discontinued], [category], [image]) VALUES (618, N'SPAZURE2', N'Sản phẩm Azure 2', N'123', CAST(456.0000 AS Decimal(19, 4)), CAST(789.0000 AS Decimal(19, 4)), 1, 2, 3, N'4', 5, NULL, N'marketing-2.png') GO SET IDENTITY_INSERT [dbo].[products] OFF GO ALTER TABLE [dbo].[order_details] ADD DEFAULT ('0.0000') FOR [quantity] GO ALTER TABLE [dbo].[order_details] ADD DEFAULT ('0.0000') FOR [unit_price] GO ALTER TABLE [dbo].[order_details] ADD DEFAULT ('0') FOR [discount] GO ALTER TABLE [dbo].[orders] ADD DEFAULT ('0.0000') FOR [shipping_fee] GO ALTER TABLE [dbo].[products] ADD DEFAULT ('0.0000') FOR [standard_cost] GO ALTER TABLE [dbo].[products] ADD DEFAULT ('0.0000') FOR [list_price] GO ALTER TABLE [dbo].[products] ADD DEFAULT ('0') FOR [discontinued] GO ALTER TABLE [dbo].[order_details] WITH CHECK ADD CONSTRAINT [fk_order_details__orders] FOREIGN KEY([order_id]) REFERENCES [dbo].[orders] ([id]) GO ALTER TABLE [dbo].[order_details] CHECK CONSTRAINT [fk_order_details__orders] GO ALTER TABLE [dbo].[order_details] WITH CHECK ADD CONSTRAINT [fk_order_details__products] FOREIGN KEY([product_id]) REFERENCES [dbo].[products] ([id]) GO ALTER TABLE [dbo].[order_details] CHECK CONSTRAINT [fk_order_details__products] GO ALTER TABLE [dbo].[orders] WITH CHECK ADD CONSTRAINT [fk_orders__customers] FOREIGN KEY([customer_id]) REFERENCES [dbo].[customers] ([id]) GO ALTER TABLE [dbo].[orders] CHECK CONSTRAINT [fk_orders__customers] GO ALTER TABLE [dbo].[orders] WITH CHECK ADD CONSTRAINT [fk_orders__employees] FOREIGN KEY([employee_id]) REFERENCES [dbo].[employees] ([id]) GO ALTER TABLE [dbo].[orders] CHECK CONSTRAINT [fk_orders__employees]