Skip to content

Instantly share code, notes, and snippets.

@muthuishere
Created April 1, 2024 03:03
Show Gist options
  • Save muthuishere/386fc50da70606533162debaff5d9350 to your computer and use it in GitHub Desktop.
Save muthuishere/386fc50da70606533162debaff5d9350 to your computer and use it in GitHub Desktop.
mock ecom store schema and data
This file has been truncated, but you can view the full file.
-- Drop existing tables if they exist
DROP TABLE IF EXISTS user_profile, inventory, order_detail, payment_details, shipping_details CASCADE;
-- User Profile Table
CREATE TABLE user_profile (
user_id VARCHAR(100) PRIMARY KEY,
name VARCHAR(100),
email VARCHAR(100) UNIQUE,
address VARCHAR(255),
phone VARCHAR(20),
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
-- Inventory Table with Category
CREATE TABLE inventory (
product_id VARCHAR(100) PRIMARY KEY,
name VARCHAR(500),
description TEXT,
price DECIMAL(10, 2),
supplier_price DECIMAL(10, 2),
supplier VARCHAR(500),
quantity INT,
rating NUMERIC(2, 1),
brand VARCHAR(100),
category VARCHAR(100)
);
-- Order Detail Table
CREATE TABLE order_detail (
order_id VARCHAR(100) PRIMARY KEY,
user_id VARCHAR(100),
product_id VARCHAR(100),
quantity INT,
order_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
status VARCHAR(50),
FOREIGN KEY (user_id) REFERENCES user_profile(user_id),
FOREIGN KEY (product_id) REFERENCES inventory(product_id)
);
-- Payment Details Table
CREATE TABLE payment_details (
payment_id VARCHAR(100) PRIMARY KEY,
order_id VARCHAR(100),
amount DECIMAL(10, 2),
payment_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
payment_method VARCHAR(50),
FOREIGN KEY (order_id) REFERENCES order_detail(order_id)
);
-- Shipping Details Table
CREATE TABLE shipping_details (
shipping_id VARCHAR(100) PRIMARY KEY,
order_id VARCHAR(100),
address VARCHAR(255),
shipped_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
received_date TIMESTAMP,
FOREIGN KEY (order_id) REFERENCES order_detail(order_id)
);
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000001', 'Bobby Boyer', 'Immanuel.OKeefe20@gmail.com', '250 N Cedar Street', '8554463867');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000002', 'Jonathan Ondricka', 'Alexis28@hotmail.com', '806 Ferry Road', '7034772192');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000003', 'Mr. Clifford Beahan', 'Tyra_Oberbrunner21@hotmail.com', '62430 Casper Neck', '6448347899');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000004', 'Mrs. Joan Moen I', 'Ressie.Gleason3@yahoo.com', '6318 Kiehn Glens', '4850159084');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000005', 'Lisa Kub', 'Abbey_Reichert@gmail.com', '249 Dickinson Motorway', '9367584770');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000006', 'Rosemary Barton', 'Camren_OHara20@hotmail.com', '1792 Emelie Motorway', '3098467878');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000007', 'Antonio Hudson', 'Davonte23@gmail.com', '6137 Stehr Extensions', '4378539912');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000008', 'Bruce Hoppe', 'Isaias27@hotmail.com', '6391 Grayson Islands', '7454934250');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000009', 'Elisa Mills', 'Eulah_Becker14@hotmail.com', '744 Christiansen Locks', '7824120792');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000010', 'Bruce Crooks IV', 'Manuel.DAmore@gmail.com', '14941 W Central Avenue', '0536865702');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000011', 'Robin Mohr-Brakus', 'Abby_Kulas@yahoo.com', '41055 Quitzon Estate', '6294481099');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000012', 'Rolando Casper', 'Jenifer3@gmail.com', '84299 Parkside', '0970856047');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000013', 'Lyle Olson MD', 'Eleanora_Mann77@gmail.com', '7082 Muller Meadow', '9080092438');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000014', 'Dr. Domingo Yost', 'Rosamond_Strosin@gmail.com', '55447 Warren Close', '1397958646');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000015', 'Ron Ward', 'Kira_Wilkinson@hotmail.com', '34992 Maybelle Run', '8630098491');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000016', 'Edgar Goldner II', 'Hortense13@hotmail.com', '714 N Cedar Street', '6568315566');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000017', 'Bethany Schamberger', 'Sabina_Pagac19@yahoo.com', '658 Lavada Alley', '9040177993');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000018', 'Ramona Flatley-Harris', 'Giuseppe0@yahoo.com', '59575 Mill Street', '6932325063');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000019', 'Angela Boehm', 'Johnny8@hotmail.com', '396 Gonzalo Isle', '4293851633');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000020', 'Violet Halvorson', 'Coralie71@hotmail.com', '85931 Pagac Brook', '5888480261');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000021', 'Jeffrey Hessel', 'Sim.Conroy@yahoo.com', '5955 S Market Street', '9451172356');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000022', 'Tracey Dietrich', 'Rachelle18@gmail.com', '761 Rey Shoals', '6459141280');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000023', 'Dewey Tromp', 'Bret.Homenick@gmail.com', '3935 Magnolia Trail', '0021239586');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000024', 'Beatrice Rodriguez', 'Lelia_Daugherty69@yahoo.com', '6494 Lind Pass', '9312890599');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000025', 'Lucy Wiegand', 'Keegan22@hotmail.com', '6274 Jerrod Plain', '8648362984');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000026', 'Chester Wiza', 'Laney_Powlowski70@hotmail.com', '323 Emmerich Course', '8575456060');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000027', 'Bernard Breitenberg-Lynch', 'Anabel_Tremblay64@yahoo.com', '24259 Ritchie Mountains', '9938847449');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000028', 'Miss Tara Kertzmann', 'Bryana21@yahoo.com', '889 St John''s Road', '9819949527');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000029', 'Megan Connelly', 'Josiane.Herzog@gmail.com', '842 Nitzsche Knoll', '4022071700');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000030', 'Cynthia Lang', 'Alize_Schultz41@gmail.com', '9883 Irving Loop', '8168318281');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000031', 'Kerry Hansen', 'Juvenal_Batz@yahoo.com', '192 Roberts Branch', '8590657772');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000032', 'Rene Lemke', 'Gerry31@yahoo.com', '25440 S Water Street', '2271809509');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000033', 'Jose Quigley', 'Velda_Trantow33@yahoo.com', '1975 Main Street', '3753340368');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000034', 'Shawn Miller', 'Dedrick36@hotmail.com', '33811 E Main Street', '5644238235');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000035', 'Cheryl Boehm', 'Vita_Walker56@hotmail.com', '80090 Schmidt Plains', '9464682200');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000036', 'Rolando Vandervort', 'Johnpaul_Morar@gmail.com', '47427 Lime Grove', '0398014276');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000037', 'Carole Bailey', 'Syble_Kiehn@yahoo.com', '12115 Tennyson Road', '5268470055');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000038', 'Dr. Vernon Keebler', 'Quinton_Howe64@gmail.com', '44261 Maye Wells', '5866985520');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000039', 'Shari Gottlieb', 'Rossie0@hotmail.com', '94686 N Broadway', '1366347820');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000040', 'Javier Treutel', 'Gina84@hotmail.com', '54268 Schimmel Burg', '9176394166');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000041', 'Erik Franecki-Schmitt Sr.', 'Nichole.Hagenes@yahoo.com', '916 Bayer Dale', '2197119226');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000042', 'Hilda Rowe', 'Dayana_OConner37@yahoo.com', '489 W Walnut Street', '9876079525');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000043', 'Nina Beer', 'Molly.Mayer42@hotmail.com', '2436 Gloucester Road', '8794041890');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000044', 'Leroy Friesen', 'Sharon58@hotmail.com', '12640 Olaf Hill', '0771282485');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000045', 'Francisco Nicolas Sr.', 'Dale12@gmail.com', '893 Cummerata Trail', '8297414660');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000046', 'Dr. Sam Ankunding', 'Emory_Champlin@hotmail.com', '5563 Juniper Close', '2666624242');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000047', 'Misty Kris', 'Mozell18@hotmail.com', '770 W Washington Avenue', '8048297547');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000048', 'Ida Denesik', 'Monty62@gmail.com', '9885 Priory Road', '0064721140');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000049', 'Kate Johnson', 'Wyatt80@yahoo.com', '4264 Park Lane', '7854199563');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000050', 'Kristopher Yundt', 'Alexandrea11@yahoo.com', '385 Mill Street', '5090336147');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000051', 'Vanessa Heaney', 'Althea.Johns26@gmail.com', '5981 Atlantic Avenue', '4324444005');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000052', 'Rudy Kutch', 'Nathaniel2@gmail.com', '156 Park Crescent', '2935755905');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000053', 'Earnest Marvin', 'Trudie.Zemlak36@gmail.com', '9299 Railway Street', '3399787871');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000054', 'Ms. Shannon Hegmann', 'Elinore55@yahoo.com', '7936 Cliff Road', '8153482006');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000055', 'Terry Connelly', 'Obie.Emmerich45@hotmail.com', '4086 Braun Terrace', '0192124648');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000056', 'Sherri Bednar', 'Jaylan.Heathcote@hotmail.com', '255 Chester Lakes', '1832019080');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000057', 'Roxanne Kertzmann', 'Felix.Metz@yahoo.com', '3417 Camden Mission', '5825597914');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000058', 'Lorenzo Kuhlman', 'Earline_Hane98@yahoo.com', '62184 W 12th Street', '9723872532');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000059', 'Danny Berge', 'Murphy.Medhurst59@yahoo.com', '22218 W 8th Street', '1363598638');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000060', 'Christy Rogahn', 'Orrin.Nienow-Aufderhar36@yahoo.com', '39988 Ryan Lodge', '9781912327');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000061', 'Ella Wolf', 'Rachel59@hotmail.com', '80281 Cathrine Field', '4500784335');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000062', 'Cecelia Bradtke', 'Scottie.Ondricka60@hotmail.com', '9219 Cassin Trace', '9491092671');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000063', 'Bridget Mayert', 'Tatyana54@yahoo.com', '876 Market Street', '2390019050');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000064', 'Alton Stracke-Altenwerth', 'Trinity53@gmail.com', '1692 Smith Street', '3998768553');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000065', 'Alvin Crist', 'Violet75@gmail.com', '3001 Heller Circle', '8535345288');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000066', 'Benny Luettgen', 'Ahmed.Gerhold@hotmail.com', '514 Jefferson Avenue', '9482774690');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000067', 'Carrie Beatty', 'Adonis.Runolfsdottir90@hotmail.com', '6233 Elbert Mountains', '3553273257');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000068', 'Rita Thompson', 'Camryn.Bechtelar66@gmail.com', '597 Destiny Gateway', '6824706440');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000069', 'Garry Koss', 'Leilani_Altenwerth@hotmail.com', '33085 Beatty Track', '8493394359');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000070', 'Esther Kozey', 'Jesse_Nolan16@hotmail.com', '88565 N Harrison Street', '4806837137');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000071', 'Garry Hauck', 'Brielle_Braun@gmail.com', '7624 Smith Lights', '9852099949');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000072', 'Brandi Prohaska', 'Modesto_Wilkinson@hotmail.com', '469 Lacy Rue', '9140881792');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000073', 'Leroy O''Connell', 'Lazaro.Rowe@gmail.com', '2363 Ruecker Valley', '2206416786');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000074', 'Crystal Stark', 'Valentina82@hotmail.com', '456 Selina Gardens', '9091354906');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000075', 'Seth Mitchell', 'Quinten.Hintz66@yahoo.com', '457 Broad Lane', '7673129446');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000076', 'Ken Johnston V', 'Tom.Blick@hotmail.com', '69547 Rosamond Field', '9625479214');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000077', 'Wendy Goldner IV', 'Antone.Herman@yahoo.com', '9507 Gottlieb Gateway', '5526252890');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000078', 'Stephen Reichert', 'Miguel.Robel4@hotmail.com', '4575 Rippin Stravenue', '1415740481');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000079', 'Kari Little', 'Emmet.Heidenreich@gmail.com', '16043 Brenna Landing', '0835796030');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000080', 'Kirk Gerhold', 'Wallace_Champlin84@hotmail.com', '321 Hickory Street', '0590386308');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000081', 'Sabrina Weissnat', 'Loraine.Cruickshank@gmail.com', '327 Hills Summit', '0572277164');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000082', 'Jody Heathcote', 'Shirley56@hotmail.com', '6029 Mill Street', '6732024001');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000083', 'Dr. David Bernhard', 'Quinton.Rodriguez@gmail.com', '5520 Beach Road', '1256464713');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000084', 'Susan Emard', 'Leonor.Mertz@gmail.com', '20325 Brock Heights', '6147525782');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000085', 'Dr. Faith McClure', 'Bell.Beier@yahoo.com', '597 Crescent Road', '9897974532');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000086', 'Bobbie Von', 'Wendell_Jerde@gmail.com', '69611 Pound Lane', '4618626634');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000087', 'Grady Ullrich', 'Tracy18@gmail.com', '773 Cartwright Ridge', '4186644961');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000088', 'Emily Mayert III', 'Baron15@hotmail.com', '3693 Jason Motorway', '5454317736');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000089', 'Mr. Marco Bosco', 'Litzy48@yahoo.com', '14414 Gleichner Haven', '0828904581');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000090', 'Ms. Annie Kohler', 'Roxane_Frami@hotmail.com', '94225 Hassan Mills', '0832611249');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000091', 'Jason Senger', 'Eriberto.Rippin33@yahoo.com', '56370 Suzanne Loop', '9994943238');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000092', 'Mr. Guadalupe Morar', 'Boris_Parker-Johnston@gmail.com', '124 Delaney Point', '8379389021');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000093', 'Calvin Wilkinson', 'Prince.Johnston@gmail.com', '5140 Daisha Brook', '8977484442');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000094', 'Mr. Alton Brekke', 'Margarette_Witting26@gmail.com', '16775 Archibald Fort', '9739336455');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000095', 'Steven Emard', 'Amalia_Kris@yahoo.com', '9730 Bayer Neck', '1487292982');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000096', 'Donald Gleason', 'Magdalena.Vandervort7@yahoo.com', '28976 Laurel Rue', '4649983829');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000097', 'Bernice Ernser', 'Victor64@gmail.com', '14604 Jermaine Junctions', '8035994112');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000098', 'Connie Hettinger', 'Guillermo.Homenick@yahoo.com', '9279 Marcelo Tunnel', '5980301091');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000099', 'Dr. Perry Schoen', 'Clare1@gmail.com', '323 Bernardo Oval', '3705016989');
INSERT INTO user_profile (user_id, name, email, address, phone) VALUES ('U0000100', 'Leonard Mohr', 'Benton92@yahoo.com', '67999 Gavin Unions', '9292962756');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000001', 'StyleCraft ProTennis Racket', 'Supplier1',166.94,'StyleCraft ProTennis Racket - High quality and reliable', 250.41, 169, 1.3, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000002', 'ActiveGear GlamUp Makeup Kit', 'Supplier1',30.97,'ActiveGear GlamUp Makeup Kit - High quality and reliable', 46.45, 291, 4.3, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000003', 'GourmetKitchen GlossyShine Shampoo', 'Supplier1',24.62,'GourmetKitchen GlossyShine Shampoo - High quality and reliable', 36.93, 171, 4.7, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000004', 'ActiveGear GlossyShine Shampoo', 'Supplier5',82.04,'ActiveGear GlossyShine Shampoo - High quality and reliable', 123.06, 828, 3.4, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000005', 'Liteware SwiftRun Running Shoes', 'Supplier4',151.35,'Liteware SwiftRun Running Shoes - High quality and reliable', 227.02, 551, 2.1, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000006', 'StyleCraft Chef''s Delights', 'Supplier5',31.39,'StyleCraft Chef''s Delights - High quality and reliable', 47.09, 61, 3.7, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000007', 'Liteware SuperBlend Blender', 'Supplier3',109.1,'Liteware SuperBlend Blender - High quality and reliable', 163.65, 38, 2.3, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000008', 'StyleCraft SilkyHair Hair Dryer', 'Supplier1',11.84,'StyleCraft SilkyHair Hair Dryer - High quality and reliable', 17.76, 408, 1.9, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000009', 'GourmetKitchen QuickToast Toaster', 'Supplier3',48.13,'GourmetKitchen QuickToast Toaster - High quality and reliable', 72.2, 12, 4.9, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000010', 'Liteware BlueSound Headphones', 'Supplier1',998.08,'Liteware BlueSound Headphones - High quality and reliable', 1497.12, 873, 1.3, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000011', 'PureBeauty SpaceWars Video Game', 'Supplier4',65.86,'PureBeauty SpaceWars Video Game - High quality and reliable', 98.79, 853, 4.9, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000012', 'ActiveGear ProTennis Racket', 'Supplier1',148.64,'ActiveGear ProTennis Racket - High quality and reliable', 222.96, 55, 4.4, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000013', 'Liteware Z-Laptop', 'Supplier5',778.77,'Liteware Z-Laptop - High quality and reliable', 1168.15, 162, 3.7, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000014', 'FunPlay BlueSound Headphones', 'Supplier5',428.18,'FunPlay BlueSound Headphones - High quality and reliable', 642.27, 300, 1.8, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000015', 'FunPlay The Life of Visionaries', 'Supplier3',20.29,'FunPlay The Life of Visionaries - High quality and reliable', 30.43, 10, 4.1, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000016', 'GourmetKitchen Comfy Sweater', 'Supplier5',44.34,'GourmetKitchen Comfy Sweater - High quality and reliable', 66.51, 524, 1.2, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000017', 'Techtronics Winter Jacket', 'Supplier2',51.09,'Techtronics Winter Jacket - High quality and reliable', 76.64, 141, 3.5, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000018', 'StyleCraft SwiftRun Running Shoes', 'Supplier5',17.24,'StyleCraft SwiftRun Running Shoes - High quality and reliable', 25.86, 966, 1.8, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000019', 'GourmetKitchen ChefMaster Cookware Set', 'Supplier2',103.79,'GourmetKitchen ChefMaster Cookware Set - High quality and reliable', 155.69, 650, 4, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000020', 'FunPlay QuickToast Toaster', 'Supplier2',156.92,'FunPlay QuickToast Toaster - High quality and reliable', 235.38, 58, 4.4, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000021', 'StyleCraft Ultimate Football', 'Supplier1',112.64,'StyleCraft Ultimate Football - High quality and reliable', 168.96, 451, 2.1, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000022', 'FunPlay NatureSkin Skincare Set', 'Supplier5',40.4,'FunPlay NatureSkin Skincare Set - High quality and reliable', 60.6, 512, 4.4, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000023', 'StyleCraft Classic Tee', 'Supplier2',100.2,'StyleCraft Classic Tee - High quality and reliable', 150.3, 412, 3, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000024', 'Liteware Elegant Dress', 'Supplier4',51.08,'Liteware Elegant Dress - High quality and reliable', 76.62, 161, 3.2, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000025', 'ActiveGear Z-Laptop', 'Supplier5',311.67,'ActiveGear Z-Laptop - High quality and reliable', 467.5, 208, 2.9, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000026', 'Liteware GlamUp Makeup Kit', 'Supplier2',14.12,'Liteware GlamUp Makeup Kit - High quality and reliable', 21.18, 145, 2.8, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000027', 'PureBeauty Princess Bella Doll', 'Supplier5',64.47,'PureBeauty Princess Bella Doll - High quality and reliable', 96.7, 23, 1.5, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000028', 'Techtronics SuperBlend Blender', 'Supplier4',162.86,'Techtronics SuperBlend Blender - High quality and reliable', 244.29, 813, 4.7, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000029', 'FunPlay Winter Jacket', 'Supplier1',102.93,'FunPlay Winter Jacket - High quality and reliable', 154.4, 143, 1.8, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000030', 'StyleCraft Elegant Dress', 'Supplier4',48.38,'StyleCraft Elegant Dress - High quality and reliable', 72.57, 315, 1.4, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000031', 'Liteware WristTech Smartwatch', 'Supplier2',231.38,'Liteware WristTech Smartwatch - High quality and reliable', 347.07, 541, 1.1, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000032', 'Techtronics SilkyHair Hair Dryer', 'Supplier2',53.59,'Techtronics SilkyHair Hair Dryer - High quality and reliable', 80.39, 411, 3.5, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000033', 'PureBeauty ProTennis Racket', 'Supplier4',57.42,'PureBeauty ProTennis Racket - High quality and reliable', 86.13, 920, 2.2, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000034', 'ActiveGear BlueSound Headphones', 'Supplier3',568,'ActiveGear BlueSound Headphones - High quality and reliable', 852, 497, 4.5, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000035', 'PureBeauty GlamUp Makeup Kit', 'Supplier4',7.48,'PureBeauty GlamUp Makeup Kit - High quality and reliable', 11.22, 781, 1.7, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000036', 'Liteware SpaceWars Video Game', 'Supplier2',57.65,'Liteware SpaceWars Video Game - High quality and reliable', 86.47, 324, 2.7, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000037', 'FunPlay SilkyHair Hair Dryer', 'Supplier4',95.53,'FunPlay SilkyHair Hair Dryer - High quality and reliable', 143.3, 583, 3.9, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000038', 'Liteware Space Ranger Action Figure', 'Supplier1',36.51,'Liteware Space Ranger Action Figure - High quality and reliable', 54.77, 447, 2.3, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000039', 'FunPlay SuperBlend Blender', 'Supplier3',193.82,'FunPlay SuperBlend Blender - High quality and reliable', 290.73, 538, 3.9, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000040', 'StyleCraft ChefMaster Cookware Set', 'Supplier3',50.9,'StyleCraft ChefMaster Cookware Set - High quality and reliable', 76.35, 270, 2, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000041', 'PureBeauty QuickToast Toaster', 'Supplier5',118.41,'PureBeauty QuickToast Toaster - High quality and reliable', 177.62, 681, 1.2, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000042', 'FunPlay SpaceWars Video Game', 'Supplier5',54.33,'FunPlay SpaceWars Video Game - High quality and reliable', 81.5, 366, 3.4, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000043', 'Liteware ProTennis Racket', 'Supplier1',153.8,'Liteware ProTennis Racket - High quality and reliable', 230.7, 660, 2.2, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000044', 'PureBeauty Urban Jeans', 'Supplier2',75.09,'PureBeauty Urban Jeans - High quality and reliable', 112.64, 84, 2.4, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000045', 'Liteware ProTennis Racket', 'Supplier4',121.57,'Liteware ProTennis Racket - High quality and reliable', 182.35, 601, 1.2, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000046', 'Liteware SwiftRun Running Shoes', 'Supplier4',95.19,'Liteware SwiftRun Running Shoes - High quality and reliable', 142.78, 780, 4.8, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000047', 'FunPlay Galaxy Quest', 'Supplier4',17.19,'FunPlay Galaxy Quest - High quality and reliable', 25.79, 67, 2.9, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000048', 'ActiveGear Time''s Echo', 'Supplier1',25.22,'ActiveGear Time''s Echo - High quality and reliable', 37.83, 657, 2.7, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000049', 'StyleCraft BlueSound Headphones', 'Supplier4',1015.93,'StyleCraft BlueSound Headphones - High quality and reliable', 1523.89, 904, 2.6, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000050', 'GourmetKitchen NatureSkin Skincare Set', 'Supplier4',7.56,'GourmetKitchen NatureSkin Skincare Set - High quality and reliable', 11.34, 934, 1.5, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000051', 'ActiveGear Ultimate Football', 'Supplier1',120.06,'ActiveGear Ultimate Football - High quality and reliable', 180.09, 698, 4.1, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000052', 'Liteware PrecisionKnife Set', 'Supplier2',110.57,'Liteware PrecisionKnife Set - High quality and reliable', 165.85, 957, 4.6, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000053', 'Techtronics Winter Jacket', 'Supplier1',43.75,'Techtronics Winter Jacket - High quality and reliable', 65.62, 676, 4.2, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000054', 'ActiveGear GlossyShine Shampoo', 'Supplier2',91.2,'ActiveGear GlossyShine Shampoo - High quality and reliable', 136.8, 558, 3.5, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000055', 'Techtronics SwiftRun Running Shoes', 'Supplier4',16.12,'Techtronics SwiftRun Running Shoes - High quality and reliable', 24.18, 321, 2, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000056', 'FunPlay SilkyHair Hair Dryer', 'Supplier2',104.17,'FunPlay SilkyHair Hair Dryer - High quality and reliable', 156.25, 746, 3.2, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000057', 'Liteware Mystery of the Old Mansion', 'Supplier1',17.28,'Liteware Mystery of the Old Mansion - High quality and reliable', 25.92, 287, 3, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000058', 'Liteware Classic Tee', 'Supplier3',126.51,'Liteware Classic Tee - High quality and reliable', 189.77, 595, 4, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000059', 'ActiveGear SwiftRun Running Shoes', 'Supplier3',96.66,'ActiveGear SwiftRun Running Shoes - High quality and reliable', 144.99, 773, 3.1, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000060', 'PureBeauty PrecisionKnife Set', 'Supplier5',41.83,'PureBeauty PrecisionKnife Set - High quality and reliable', 62.74, 884, 2.6, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000061', 'Liteware SuperBlend Blender', 'Supplier3',106.2,'Liteware SuperBlend Blender - High quality and reliable', 159.3, 358, 4.3, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000062', 'PureBeauty BlueSound Headphones', 'Supplier2',559.38,'PureBeauty BlueSound Headphones - High quality and reliable', 839.07, 897, 4.4, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000063', 'StyleCraft CrystalClear 4K TV', 'Supplier1',864.3,'StyleCraft CrystalClear 4K TV - High quality and reliable', 1296.45, 576, 3.4, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000064', 'GourmetKitchen Princess Bella Doll', 'Supplier2',95.01,'GourmetKitchen Princess Bella Doll - High quality and reliable', 142.52, 418, 1, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000065', 'GourmetKitchen X-Phone', 'Supplier1',158.26,'GourmetKitchen X-Phone - High quality and reliable', 237.39, 908, 2.9, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000066', 'FunPlay Elegance Perfume', 'Supplier1',93.74,'FunPlay Elegance Perfume - High quality and reliable', 140.61, 870, 4.2, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000067', 'Techtronics Princess Bella Doll', 'Supplier3',92.76,'Techtronics Princess Bella Doll - High quality and reliable', 139.14, 841, 2.3, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000068', 'ActiveGear Winter Jacket', 'Supplier5',112.71,'ActiveGear Winter Jacket - High quality and reliable', 169.06, 89, 2.9, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000069', 'Liteware ChefMaster Cookware Set', 'Supplier5',110.92,'Liteware ChefMaster Cookware Set - High quality and reliable', 166.38, 464, 4, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000070', 'Techtronics Galaxy Quest', 'Supplier1',23.48,'Techtronics Galaxy Quest - High quality and reliable', 35.22, 505, 4.7, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000071', 'ActiveGear Kingdom Quest Board Game', 'Supplier4',41.49,'ActiveGear Kingdom Quest Board Game - High quality and reliable', 62.23, 67, 3.1, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000072', 'StyleCraft Kingdom Quest Board Game', 'Supplier1',95.03,'StyleCraft Kingdom Quest Board Game - High quality and reliable', 142.55, 657, 3.4, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000073', 'ActiveGear ChefMaster Cookware Set', 'Supplier3',111.49,'ActiveGear ChefMaster Cookware Set - High quality and reliable', 167.23, 298, 1.2, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000074', 'StyleCraft SuperBlend Blender', 'Supplier4',208.42,'StyleCraft SuperBlend Blender - High quality and reliable', 312.63, 508, 3.7, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000075', 'FunPlay Ultimate Football', 'Supplier3',23.19,'FunPlay Ultimate Football - High quality and reliable', 34.79, 28, 1.4, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000076', 'GourmetKitchen Princess Bella Doll', 'Supplier5',77.78,'GourmetKitchen Princess Bella Doll - High quality and reliable', 116.67, 163, 2.8, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000077', 'Liteware Galaxy Quest', 'Supplier1',26.58,'Liteware Galaxy Quest - High quality and reliable', 39.87, 648, 3.2, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000078', 'PureBeauty Chef''s Delights', 'Supplier2',19.24,'PureBeauty Chef''s Delights - High quality and reliable', 28.86, 976, 4.5, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000079', 'Techtronics PrecisionKnife Set', 'Supplier4',31.4,'Techtronics PrecisionKnife Set - High quality and reliable', 47.1, 345, 1.1, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000080', 'FunPlay ProTennis Racket', 'Supplier2',60.63,'FunPlay ProTennis Racket - High quality and reliable', 90.95, 972, 3.5, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000081', 'StyleCraft Classic Tee', 'Supplier2',18.59,'StyleCraft Classic Tee - High quality and reliable', 27.88, 152, 2.6, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000082', 'Techtronics ProTennis Racket', 'Supplier1',21.66,'Techtronics ProTennis Racket - High quality and reliable', 32.49, 690, 4.5, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000083', 'ActiveGear BrainyPuzzle', 'Supplier4',65.86,'ActiveGear BrainyPuzzle - High quality and reliable', 98.79, 948, 4.4, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000084', 'PureBeauty Princess Bella Doll', 'Supplier1',40.42,'PureBeauty Princess Bella Doll - High quality and reliable', 60.63, 821, 1.3, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000085', 'GourmetKitchen BrainyPuzzle', 'Supplier4',17.56,'GourmetKitchen BrainyPuzzle - High quality and reliable', 26.34, 642, 3.8, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000086', 'Techtronics GlossyShine Shampoo', 'Supplier2',24.69,'Techtronics GlossyShine Shampoo - High quality and reliable', 37.04, 175, 2.4, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000087', 'Liteware ChefMaster Cookware Set', 'Supplier3',183.37,'Liteware ChefMaster Cookware Set - High quality and reliable', 275.06, 251, 3.1, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000088', 'FunPlay Kingdom Quest Board Game', 'Supplier4',27.48,'FunPlay Kingdom Quest Board Game - High quality and reliable', 41.22, 10, 3, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000089', 'Liteware Elegant Dress', 'Supplier3',17.51,'Liteware Elegant Dress - High quality and reliable', 26.27, 14, 3.4, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000090', 'ActiveGear SuperBlend Blender', 'Supplier2',182.8,'ActiveGear SuperBlend Blender - High quality and reliable', 274.2, 677, 4.7, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000091', 'StyleCraft Time''s Echo', 'Supplier5',9.65,'StyleCraft Time''s Echo - High quality and reliable', 14.48, 234, 4, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000092', 'Liteware BlueSound Headphones', 'Supplier4',118.08,'Liteware BlueSound Headphones - High quality and reliable', 177.12, 399, 2, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000093', 'FunPlay Urban Jeans', 'Supplier2',93.57,'FunPlay Urban Jeans - High quality and reliable', 140.35, 587, 1.5, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000094', 'Techtronics CrystalClear 4K TV', 'Supplier5',934.66,'Techtronics CrystalClear 4K TV - High quality and reliable', 1401.99, 100, 1.9, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000095', 'Techtronics BrainyPuzzle', 'Supplier5',62.83,'Techtronics BrainyPuzzle - High quality and reliable', 94.25, 694, 2.5, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000096', 'GourmetKitchen GlossyShine Shampoo', 'Supplier3',12.25,'GourmetKitchen GlossyShine Shampoo - High quality and reliable', 18.38, 207, 4.7, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000097', 'FunPlay WristTech Smartwatch', 'Supplier2',654.45,'FunPlay WristTech Smartwatch - High quality and reliable', 981.68, 552, 4.4, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000098', 'GourmetKitchen Mystery of the Old Mansion', 'Supplier1',28.79,'GourmetKitchen Mystery of the Old Mansion - High quality and reliable', 43.19, 285, 2.1, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000099', 'GourmetKitchen Princess Bella Doll', 'Supplier4',17.53,'GourmetKitchen Princess Bella Doll - High quality and reliable', 26.3, 581, 4.1, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000100', 'StyleCraft SpaceWars Video Game', 'Supplier2',69.91,'StyleCraft SpaceWars Video Game - High quality and reliable', 104.86, 638, 1.2, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000101', 'GourmetKitchen GlamUp Makeup Kit', 'Supplier5',51.87,'GourmetKitchen GlamUp Makeup Kit - High quality and reliable', 77.8, 512, 2.7, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000102', 'StyleCraft Comfy Sweater', 'Supplier3',13.01,'StyleCraft Comfy Sweater - High quality and reliable', 19.52, 296, 4.9, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000103', 'GourmetKitchen GlossyShine Shampoo', 'Supplier5',97.37,'GourmetKitchen GlossyShine Shampoo - High quality and reliable', 146.06, 860, 1.4, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000104', 'FunPlay SkyDunk Basketball', 'Supplier4',145.67,'FunPlay SkyDunk Basketball - High quality and reliable', 218.5, 984, 1.4, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000105', 'Techtronics ZenYoga Mat', 'Supplier5',146.51,'Techtronics ZenYoga Mat - High quality and reliable', 219.76, 941, 3.3, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000106', 'ActiveGear BrainyPuzzle', 'Supplier3',11.54,'ActiveGear BrainyPuzzle - High quality and reliable', 17.31, 684, 4.9, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000107', 'Liteware SwiftRun Running Shoes', 'Supplier3',89.87,'Liteware SwiftRun Running Shoes - High quality and reliable', 134.81, 479, 1.1, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000108', 'ActiveGear Ultimate Football', 'Supplier4',68.56,'ActiveGear Ultimate Football - High quality and reliable', 102.84, 182, 1.8, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000109', 'GourmetKitchen PrecisionKnife Set', 'Supplier3',166.8,'GourmetKitchen PrecisionKnife Set - High quality and reliable', 250.2, 70, 3.3, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000110', 'GourmetKitchen Galaxy Quest', 'Supplier5',12.25,'GourmetKitchen Galaxy Quest - High quality and reliable', 18.38, 300, 4.8, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000111', 'FunPlay Elegant Dress', 'Supplier3',17,'FunPlay Elegant Dress - High quality and reliable', 25.5, 927, 4.6, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000112', 'GourmetKitchen Galaxy Quest', 'Supplier2',24.29,'GourmetKitchen Galaxy Quest - High quality and reliable', 36.44, 653, 4.9, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000113', 'GourmetKitchen CrystalClear 4K TV', 'Supplier3',213.72,'GourmetKitchen CrystalClear 4K TV - High quality and reliable', 320.58, 803, 3.9, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000114', 'PureBeauty ZenYoga Mat', 'Supplier3',37.34,'PureBeauty ZenYoga Mat - High quality and reliable', 56.01, 622, 2.8, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000115', 'FunPlay BrainyPuzzle', 'Supplier3',61.14,'FunPlay BrainyPuzzle - High quality and reliable', 91.71, 396, 3.7, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000116', 'StyleCraft Ultimate Football', 'Supplier2',166.24,'StyleCraft Ultimate Football - High quality and reliable', 249.36, 211, 1.6, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000117', 'PureBeauty Ultimate Football', 'Supplier4',29.81,'PureBeauty Ultimate Football - High quality and reliable', 44.71, 297, 4.5, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000118', 'GourmetKitchen Galaxy Quest', 'Supplier4',7.6,'GourmetKitchen Galaxy Quest - High quality and reliable', 11.4, 490, 3.2, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000119', 'StyleCraft ProTennis Racket', 'Supplier5',97.99,'StyleCraft ProTennis Racket - High quality and reliable', 146.98, 791, 3.3, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000120', 'PureBeauty SwiftRun Running Shoes', 'Supplier4',144.75,'PureBeauty SwiftRun Running Shoes - High quality and reliable', 217.12, 54, 1.7, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000121', 'PureBeauty Space Ranger Action Figure', 'Supplier2',104.02,'PureBeauty Space Ranger Action Figure - High quality and reliable', 156.03, 132, 2.8, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000122', 'GourmetKitchen X-Phone', 'Supplier3',952.83,'GourmetKitchen X-Phone - High quality and reliable', 1429.25, 900, 3, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000123', 'PureBeauty ProTennis Racket', 'Supplier3',86.34,'PureBeauty ProTennis Racket - High quality and reliable', 129.51, 562, 3.7, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000124', 'StyleCraft Chef''s Delights', 'Supplier1',18.55,'StyleCraft Chef''s Delights - High quality and reliable', 27.83, 529, 4, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000125', 'PureBeauty The Life of Visionaries', 'Supplier5',21.14,'PureBeauty The Life of Visionaries - High quality and reliable', 31.71, 641, 1.4, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000126', 'StyleCraft X-Phone', 'Supplier1',453.3,'StyleCraft X-Phone - High quality and reliable', 679.95, 392, 1, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000127', 'Techtronics SwiftRun Running Shoes', 'Supplier5',12.28,'Techtronics SwiftRun Running Shoes - High quality and reliable', 18.42, 246, 4.4, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000128', 'PureBeauty Time''s Echo', 'Supplier4',10.59,'PureBeauty Time''s Echo - High quality and reliable', 15.88, 481, 4.6, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000129', 'Techtronics CrystalClear 4K TV', 'Supplier4',159.48,'Techtronics CrystalClear 4K TV - High quality and reliable', 239.22, 296, 3.9, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000130', 'FunPlay Space Ranger Action Figure', 'Supplier2',72.07,'FunPlay Space Ranger Action Figure - High quality and reliable', 108.1, 298, 1.9, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000131', 'FunPlay GlossyShine Shampoo', 'Supplier4',92.64,'FunPlay GlossyShine Shampoo - High quality and reliable', 138.96, 723, 2.6, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000132', 'PureBeauty Ultimate Football', 'Supplier4',85.2,'PureBeauty Ultimate Football - High quality and reliable', 127.8, 398, 2.5, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000133', 'ActiveGear WristTech Smartwatch', 'Supplier5',286.05,'ActiveGear WristTech Smartwatch - High quality and reliable', 429.08, 451, 1.9, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000134', 'FunPlay SilkyHair Hair Dryer', 'Supplier4',47.01,'FunPlay SilkyHair Hair Dryer - High quality and reliable', 70.52, 477, 4, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000135', 'Liteware WristTech Smartwatch', 'Supplier3',714.47,'Liteware WristTech Smartwatch - High quality and reliable', 1071.7, 854, 2.7, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000136', 'ActiveGear GlossyShine Shampoo', 'Supplier4',64.06,'ActiveGear GlossyShine Shampoo - High quality and reliable', 96.09, 498, 4, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000137', 'FunPlay ChefMaster Cookware Set', 'Supplier2',97.62,'FunPlay ChefMaster Cookware Set - High quality and reliable', 146.43, 789, 2.5, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000138', 'StyleCraft MorningBrew Coffee Maker', 'Supplier5',71.53,'StyleCraft MorningBrew Coffee Maker - High quality and reliable', 107.3, 908, 4, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000139', 'Techtronics Kingdom Quest Board Game', 'Supplier2',93.55,'Techtronics Kingdom Quest Board Game - High quality and reliable', 140.32, 933, 1.2, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000140', 'FunPlay SpaceWars Video Game', 'Supplier1',83.07,'FunPlay SpaceWars Video Game - High quality and reliable', 124.6, 810, 4.3, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000141', 'FunPlay X-Phone', 'Supplier2',718.2,'FunPlay X-Phone - High quality and reliable', 1077.3, 771, 3.9, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000142', 'GourmetKitchen Winter Jacket', 'Supplier1',20.67,'GourmetKitchen Winter Jacket - High quality and reliable', 31.01, 170, 1.5, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000143', 'GourmetKitchen BlueSound Headphones', 'Supplier1',699.89,'GourmetKitchen BlueSound Headphones - High quality and reliable', 1049.84, 501, 3.5, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000144', 'ActiveGear Comfy Sweater', 'Supplier4',21.13,'ActiveGear Comfy Sweater - High quality and reliable', 31.7, 436, 3.2, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000145', 'StyleCraft SwiftRun Running Shoes', 'Supplier4',11.51,'StyleCraft SwiftRun Running Shoes - High quality and reliable', 17.27, 518, 5, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000146', 'GourmetKitchen GlamUp Makeup Kit', 'Supplier4',92,'GourmetKitchen GlamUp Makeup Kit - High quality and reliable', 138, 459, 2.6, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000147', 'FunPlay SuperBlend Blender', 'Supplier1',27.87,'FunPlay SuperBlend Blender - High quality and reliable', 41.8, 424, 3, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000148', 'PureBeauty Classic Tee', 'Supplier2',34.25,'PureBeauty Classic Tee - High quality and reliable', 51.38, 415, 1, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000149', 'ActiveGear GlamUp Makeup Kit', 'Supplier1',10.66,'ActiveGear GlamUp Makeup Kit - High quality and reliable', 15.99, 992, 1.3, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000150', 'Liteware Z-Laptop', 'Supplier3',924.7,'Liteware Z-Laptop - High quality and reliable', 1387.05, 913, 1.7, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000151', 'StyleCraft PrecisionKnife Set', 'Supplier3',188.4,'StyleCraft PrecisionKnife Set - High quality and reliable', 282.6, 167, 4, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000152', 'PureBeauty Time''s Echo', 'Supplier2',20.09,'PureBeauty Time''s Echo - High quality and reliable', 30.13, 919, 1.9, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000153', 'ActiveGear QuickToast Toaster', 'Supplier1',88.26,'ActiveGear QuickToast Toaster - High quality and reliable', 132.39, 29, 1.6, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000154', 'GourmetKitchen X-Phone', 'Supplier1',94.39,'GourmetKitchen X-Phone - High quality and reliable', 141.59, 848, 2.6, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000155', 'Techtronics Princess Bella Doll', 'Supplier3',77.93,'Techtronics Princess Bella Doll - High quality and reliable', 116.9, 526, 3.8, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000156', 'PureBeauty Kingdom Quest Board Game', 'Supplier2',102.59,'PureBeauty Kingdom Quest Board Game - High quality and reliable', 153.88, 363, 2.5, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000157', 'FunPlay SwiftRun Running Shoes', 'Supplier4',75.84,'FunPlay SwiftRun Running Shoes - High quality and reliable', 113.76, 408, 2.1, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000158', 'FunPlay MorningBrew Coffee Maker', 'Supplier3',58.5,'FunPlay MorningBrew Coffee Maker - High quality and reliable', 87.75, 612, 1.4, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000159', 'Techtronics GlossyShine Shampoo', 'Supplier4',31.89,'Techtronics GlossyShine Shampoo - High quality and reliable', 47.84, 598, 4.9, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000160', 'FunPlay ZenYoga Mat', 'Supplier3',159.18,'FunPlay ZenYoga Mat - High quality and reliable', 238.77, 670, 3.9, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000161', 'Liteware Princess Bella Doll', 'Supplier4',67.25,'Liteware Princess Bella Doll - High quality and reliable', 100.88, 217, 3.4, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000162', 'GourmetKitchen Princess Bella Doll', 'Supplier1',69.88,'GourmetKitchen Princess Bella Doll - High quality and reliable', 104.82, 461, 2.5, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000163', 'Liteware Elegant Dress', 'Supplier4',27.24,'Liteware Elegant Dress - High quality and reliable', 40.86, 516, 3.8, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000164', 'Liteware Urban Jeans', 'Supplier2',92.93,'Liteware Urban Jeans - High quality and reliable', 139.4, 134, 3.1, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000165', 'ActiveGear Galaxy Quest', 'Supplier3',33.26,'ActiveGear Galaxy Quest - High quality and reliable', 49.89, 715, 4.1, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000166', 'StyleCraft SuperBlend Blender', 'Supplier3',171.79,'StyleCraft SuperBlend Blender - High quality and reliable', 257.69, 262, 3.3, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000167', 'GourmetKitchen BlueSound Headphones', 'Supplier5',930.29,'GourmetKitchen BlueSound Headphones - High quality and reliable', 1395.43, 514, 4.9, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000168', 'PureBeauty Classic Tee', 'Supplier2',32.87,'PureBeauty Classic Tee - High quality and reliable', 49.3, 686, 4.1, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000169', 'FunPlay Winter Jacket', 'Supplier4',53.5,'FunPlay Winter Jacket - High quality and reliable', 80.25, 253, 1.1, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000170', 'Techtronics BlueSound Headphones', 'Supplier4',359.88,'Techtronics BlueSound Headphones - High quality and reliable', 539.82, 946, 1.3, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000171', 'Liteware Galaxy Quest', 'Supplier1',24.49,'Liteware Galaxy Quest - High quality and reliable', 36.73, 746, 2.6, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000172', 'Liteware SwiftRun Running Shoes', 'Supplier2',73.22,'Liteware SwiftRun Running Shoes - High quality and reliable', 109.83, 337, 3.7, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000173', 'GourmetKitchen Space Ranger Action Figure', 'Supplier2',97.25,'GourmetKitchen Space Ranger Action Figure - High quality and reliable', 145.88, 778, 3.4, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000174', 'Liteware Mystery of the Old Mansion', 'Supplier4',20.52,'Liteware Mystery of the Old Mansion - High quality and reliable', 30.78, 602, 3.5, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000175', 'GourmetKitchen BlueSound Headphones', 'Supplier5',128.93,'GourmetKitchen BlueSound Headphones - High quality and reliable', 193.4, 122, 5, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000176', 'Techtronics Mystery of the Old Mansion', 'Supplier5',18.13,'Techtronics Mystery of the Old Mansion - High quality and reliable', 27.2, 998, 4.4, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000177', 'StyleCraft SwiftRun Running Shoes', 'Supplier2',73.64,'StyleCraft SwiftRun Running Shoes - High quality and reliable', 110.46, 765, 1.2, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000178', 'StyleCraft Ultimate Football', 'Supplier1',152.62,'StyleCraft Ultimate Football - High quality and reliable', 228.93, 194, 2.6, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000179', 'PureBeauty GlamUp Makeup Kit', 'Supplier2',32.34,'PureBeauty GlamUp Makeup Kit - High quality and reliable', 48.51, 463, 2.3, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000180', 'GourmetKitchen Kingdom Quest Board Game', 'Supplier2',21.82,'GourmetKitchen Kingdom Quest Board Game - High quality and reliable', 32.73, 260, 2.2, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000181', 'Liteware NatureSkin Skincare Set', 'Supplier2',53.25,'Liteware NatureSkin Skincare Set - High quality and reliable', 79.88, 459, 4.2, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000182', 'FunPlay MorningBrew Coffee Maker', 'Supplier5',42.87,'FunPlay MorningBrew Coffee Maker - High quality and reliable', 64.3, 225, 2.3, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000183', 'PureBeauty SuperBlend Blender', 'Supplier3',43.69,'PureBeauty SuperBlend Blender - High quality and reliable', 65.53, 342, 4.6, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000184', 'FunPlay Urban Jeans', 'Supplier5',31.17,'FunPlay Urban Jeans - High quality and reliable', 46.76, 271, 1.9, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000185', 'StyleCraft ChefMaster Cookware Set', 'Supplier4',167.33,'StyleCraft ChefMaster Cookware Set - High quality and reliable', 251, 985, 4.4, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000186', 'Techtronics Elegant Dress', 'Supplier3',127.45,'Techtronics Elegant Dress - High quality and reliable', 191.18, 483, 1.4, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000187', 'PureBeauty BrainyPuzzle', 'Supplier3',46.46,'PureBeauty BrainyPuzzle - High quality and reliable', 69.69, 176, 4.7, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000188', 'StyleCraft Urban Jeans', 'Supplier1',46.04,'StyleCraft Urban Jeans - High quality and reliable', 69.06, 97, 2.3, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000189', 'FunPlay PrecisionKnife Set', 'Supplier3',51.8,'FunPlay PrecisionKnife Set - High quality and reliable', 77.7, 938, 3.3, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000190', 'GourmetKitchen Comfy Sweater', 'Supplier2',22.15,'GourmetKitchen Comfy Sweater - High quality and reliable', 33.22, 767, 1.1, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000191', 'FunPlay Ultimate Football', 'Supplier5',15.14,'FunPlay Ultimate Football - High quality and reliable', 22.71, 549, 2.1, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000192', 'ActiveGear Kingdom Quest Board Game', 'Supplier3',71.49,'ActiveGear Kingdom Quest Board Game - High quality and reliable', 107.23, 878, 1.1, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000193', 'FunPlay SwiftRun Running Shoes', 'Supplier4',125.76,'FunPlay SwiftRun Running Shoes - High quality and reliable', 188.64, 787, 4.8, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000194', 'Liteware Urban Jeans', 'Supplier3',13.18,'Liteware Urban Jeans - High quality and reliable', 19.77, 876, 1.6, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000195', 'FunPlay Ultimate Football', 'Supplier2',150.78,'FunPlay Ultimate Football - High quality and reliable', 226.17, 839, 1.3, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000196', 'Techtronics QuickToast Toaster', 'Supplier4',207.74,'Techtronics QuickToast Toaster - High quality and reliable', 311.61, 196, 4.1, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000197', 'Techtronics X-Phone', 'Supplier2',400.41,'Techtronics X-Phone - High quality and reliable', 600.62, 791, 3.4, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000198', 'PureBeauty Galaxy Quest', 'Supplier4',31.88,'PureBeauty Galaxy Quest - High quality and reliable', 47.82, 481, 1.8, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000199', 'FunPlay Chef''s Delights', 'Supplier3',9.79,'FunPlay Chef''s Delights - High quality and reliable', 14.68, 223, 4.3, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000200', 'FunPlay Galaxy Quest', 'Supplier2',14.78,'FunPlay Galaxy Quest - High quality and reliable', 22.17, 248, 4.5, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000201', 'StyleCraft WristTech Smartwatch', 'Supplier2',818.61,'StyleCraft WristTech Smartwatch - High quality and reliable', 1227.91, 576, 4.6, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000202', 'StyleCraft Kingdom Quest Board Game', 'Supplier4',47.47,'StyleCraft Kingdom Quest Board Game - High quality and reliable', 71.2, 606, 2.3, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000203', 'FunPlay ZenYoga Mat', 'Supplier3',164.19,'FunPlay ZenYoga Mat - High quality and reliable', 246.28, 329, 3.5, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000204', 'StyleCraft Mystery of the Old Mansion', 'Supplier2',18.92,'StyleCraft Mystery of the Old Mansion - High quality and reliable', 28.38, 239, 3.5, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000205', 'PureBeauty BrainyPuzzle', 'Supplier2',65.04,'PureBeauty BrainyPuzzle - High quality and reliable', 97.56, 199, 1.1, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000206', 'GourmetKitchen Ultimate Football', 'Supplier4',67.53,'GourmetKitchen Ultimate Football - High quality and reliable', 101.3, 880, 2.3, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000207', 'PureBeauty BlueSound Headphones', 'Supplier5',574.49,'PureBeauty BlueSound Headphones - High quality and reliable', 861.74, 16, 4.7, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000208', 'GourmetKitchen Space Ranger Action Figure', 'Supplier4',34.9,'GourmetKitchen Space Ranger Action Figure - High quality and reliable', 52.35, 575, 3.8, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000209', 'FunPlay Elegance Perfume', 'Supplier3',42.34,'FunPlay Elegance Perfume - High quality and reliable', 63.51, 951, 1.5, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000210', 'Techtronics Winter Jacket', 'Supplier4',100.52,'Techtronics Winter Jacket - High quality and reliable', 150.78, 552, 3, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000211', 'FunPlay Kingdom Quest Board Game', 'Supplier5',100.9,'FunPlay Kingdom Quest Board Game - High quality and reliable', 151.35, 346, 2.9, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000212', 'GourmetKitchen BlueSound Headphones', 'Supplier4',682.23,'GourmetKitchen BlueSound Headphones - High quality and reliable', 1023.35, 848, 4.9, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000213', 'Techtronics GlamUp Makeup Kit', 'Supplier2',88.32,'Techtronics GlamUp Makeup Kit - High quality and reliable', 132.48, 956, 2.3, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000214', 'Liteware WristTech Smartwatch', 'Supplier4',479.01,'Liteware WristTech Smartwatch - High quality and reliable', 718.51, 934, 3.1, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000215', 'PureBeauty BrainyPuzzle', 'Supplier1',42.7,'PureBeauty BrainyPuzzle - High quality and reliable', 64.05, 261, 3, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000216', 'GourmetKitchen ChefMaster Cookware Set', 'Supplier3',30.55,'GourmetKitchen ChefMaster Cookware Set - High quality and reliable', 45.83, 483, 3.2, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000217', 'Liteware QuickToast Toaster', 'Supplier5',123.07,'Liteware QuickToast Toaster - High quality and reliable', 184.6, 537, 2.8, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000218', 'GourmetKitchen BrainyPuzzle', 'Supplier5',19.78,'GourmetKitchen BrainyPuzzle - High quality and reliable', 29.67, 903, 2.6, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000219', 'Liteware SwiftRun Running Shoes', 'Supplier1',126.06,'Liteware SwiftRun Running Shoes - High quality and reliable', 189.09, 391, 3, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000220', 'Techtronics NatureSkin Skincare Set', 'Supplier3',35.5,'Techtronics NatureSkin Skincare Set - High quality and reliable', 53.25, 617, 3, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000221', 'PureBeauty Elegance Perfume', 'Supplier5',25.89,'PureBeauty Elegance Perfume - High quality and reliable', 38.84, 945, 3.4, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000222', 'ActiveGear Z-Laptop', 'Supplier4',233.35,'ActiveGear Z-Laptop - High quality and reliable', 350.02, 730, 3.9, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000223', 'ActiveGear Galaxy Quest', 'Supplier1',20.18,'ActiveGear Galaxy Quest - High quality and reliable', 30.27, 140, 3.8, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000224', 'FunPlay SkyDunk Basketball', 'Supplier4',80.95,'FunPlay SkyDunk Basketball - High quality and reliable', 121.43, 434, 4.8, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000225', 'GourmetKitchen GlamUp Makeup Kit', 'Supplier4',88.9,'GourmetKitchen GlamUp Makeup Kit - High quality and reliable', 133.35, 29, 2.6, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000226', 'FunPlay Princess Bella Doll', 'Supplier3',67.56,'FunPlay Princess Bella Doll - High quality and reliable', 101.34, 109, 4.8, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000227', 'FunPlay WristTech Smartwatch', 'Supplier4',333.53,'FunPlay WristTech Smartwatch - High quality and reliable', 500.29, 580, 1.2, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000228', 'PureBeauty X-Phone', 'Supplier4',443.82,'PureBeauty X-Phone - High quality and reliable', 665.73, 538, 4.9, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000229', 'GourmetKitchen SkyDunk Basketball', 'Supplier1',169.9,'GourmetKitchen SkyDunk Basketball - High quality and reliable', 254.85, 585, 1.5, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000230', 'Liteware ProTennis Racket', 'Supplier3',140.65,'Liteware ProTennis Racket - High quality and reliable', 210.98, 62, 3.5, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000231', 'ActiveGear Time''s Echo', 'Supplier2',32.66,'ActiveGear Time''s Echo - High quality and reliable', 48.99, 973, 3.5, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000232', 'StyleCraft MorningBrew Coffee Maker', 'Supplier4',185.99,'StyleCraft MorningBrew Coffee Maker - High quality and reliable', 278.99, 263, 4.7, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000233', 'ActiveGear Comfy Sweater', 'Supplier1',39.68,'ActiveGear Comfy Sweater - High quality and reliable', 59.52, 317, 2.9, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000234', 'StyleCraft NatureSkin Skincare Set', 'Supplier5',94.21,'StyleCraft NatureSkin Skincare Set - High quality and reliable', 141.31, 641, 3, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000235', 'PureBeauty QuickToast Toaster', 'Supplier4',69.84,'PureBeauty QuickToast Toaster - High quality and reliable', 104.76, 188, 2.2, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000236', 'StyleCraft Princess Bella Doll', 'Supplier3',51.84,'StyleCraft Princess Bella Doll - High quality and reliable', 77.76, 756, 4.9, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000237', 'StyleCraft Galaxy Quest', 'Supplier2',29.5,'StyleCraft Galaxy Quest - High quality and reliable', 44.25, 982, 1.8, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000238', 'StyleCraft SkyDunk Basketball', 'Supplier2',149.19,'StyleCraft SkyDunk Basketball - High quality and reliable', 223.78, 989, 1.5, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000239', 'FunPlay WristTech Smartwatch', 'Supplier1',1002.76,'FunPlay WristTech Smartwatch - High quality and reliable', 1504.14, 107, 2.8, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000240', 'Liteware SpaceWars Video Game', 'Supplier1',16.08,'Liteware SpaceWars Video Game - High quality and reliable', 24.12, 249, 4.5, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000241', 'FunPlay Galaxy Quest', 'Supplier3',24.67,'FunPlay Galaxy Quest - High quality and reliable', 37.01, 962, 1, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000242', 'ActiveGear Urban Jeans', 'Supplier2',135.37,'ActiveGear Urban Jeans - High quality and reliable', 203.06, 464, 2.1, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000243', 'Techtronics Chef''s Delights', 'Supplier4',23.24,'Techtronics Chef''s Delights - High quality and reliable', 34.86, 347, 4.1, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000244', 'Liteware Classic Tee', 'Supplier2',44.19,'Liteware Classic Tee - High quality and reliable', 66.28, 650, 2, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000245', 'GourmetKitchen Urban Jeans', 'Supplier5',74.54,'GourmetKitchen Urban Jeans - High quality and reliable', 111.81, 471, 1.2, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000246', 'GourmetKitchen Galaxy Quest', 'Supplier2',28.23,'GourmetKitchen Galaxy Quest - High quality and reliable', 42.34, 505, 3.1, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000247', 'PureBeauty Comfy Sweater', 'Supplier1',127.54,'PureBeauty Comfy Sweater - High quality and reliable', 191.31, 297, 3.7, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000248', 'PureBeauty WristTech Smartwatch', 'Supplier5',348.73,'PureBeauty WristTech Smartwatch - High quality and reliable', 523.1, 641, 2.8, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000249', 'Liteware Elegance Perfume', 'Supplier5',13.91,'Liteware Elegance Perfume - High quality and reliable', 20.87, 591, 4.4, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000250', 'StyleCraft Galaxy Quest', 'Supplier2',23.94,'StyleCraft Galaxy Quest - High quality and reliable', 35.91, 748, 1.3, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000251', 'ActiveGear GlossyShine Shampoo', 'Supplier5',57.36,'ActiveGear GlossyShine Shampoo - High quality and reliable', 86.04, 287, 3, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000252', 'ActiveGear X-Phone', 'Supplier4',360.3,'ActiveGear X-Phone - High quality and reliable', 540.45, 213, 2.4, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000253', 'StyleCraft The Life of Visionaries', 'Supplier3',11.69,'StyleCraft The Life of Visionaries - High quality and reliable', 17.54, 885, 3.5, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000254', 'ActiveGear QuickToast Toaster', 'Supplier4',99.07,'ActiveGear QuickToast Toaster - High quality and reliable', 148.6, 542, 4.7, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000255', 'FunPlay GlossyShine Shampoo', 'Supplier2',93.53,'FunPlay GlossyShine Shampoo - High quality and reliable', 140.3, 301, 2.2, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000256', 'PureBeauty NatureSkin Skincare Set', 'Supplier1',4.43,'PureBeauty NatureSkin Skincare Set - High quality and reliable', 6.64, 412, 4.7, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000257', 'Liteware Z-Laptop', 'Supplier2',753.7,'Liteware Z-Laptop - High quality and reliable', 1130.55, 873, 4.1, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000258', 'FunPlay PrecisionKnife Set', 'Supplier2',96.09,'FunPlay PrecisionKnife Set - High quality and reliable', 144.13, 79, 2.6, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000259', 'FunPlay Space Ranger Action Figure', 'Supplier1',51.8,'FunPlay Space Ranger Action Figure - High quality and reliable', 77.7, 367, 4.3, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000260', 'PureBeauty ProTennis Racket', 'Supplier2',77.18,'PureBeauty ProTennis Racket - High quality and reliable', 115.77, 306, 4.8, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000261', 'FunPlay SilkyHair Hair Dryer', 'Supplier5',83.57,'FunPlay SilkyHair Hair Dryer - High quality and reliable', 125.35, 689, 2.4, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000262', 'Liteware MorningBrew Coffee Maker', 'Supplier4',184.07,'Liteware MorningBrew Coffee Maker - High quality and reliable', 276.11, 770, 2, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000263', 'Liteware BlueSound Headphones', 'Supplier1',312.39,'Liteware BlueSound Headphones - High quality and reliable', 468.58, 868, 2.5, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000264', 'Techtronics SwiftRun Running Shoes', 'Supplier3',15.39,'Techtronics SwiftRun Running Shoes - High quality and reliable', 23.09, 548, 3.7, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000265', 'PureBeauty BrainyPuzzle', 'Supplier4',11.44,'PureBeauty BrainyPuzzle - High quality and reliable', 17.16, 258, 1.9, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000266', 'Liteware Z-Laptop', 'Supplier1',259.99,'Liteware Z-Laptop - High quality and reliable', 389.99, 722, 3, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000267', 'StyleCraft Space Ranger Action Figure', 'Supplier1',77.83,'StyleCraft Space Ranger Action Figure - High quality and reliable', 116.75, 318, 3.1, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000268', 'Techtronics PrecisionKnife Set', 'Supplier5',73.47,'Techtronics PrecisionKnife Set - High quality and reliable', 110.2, 688, 2.7, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000269', 'Liteware Classic Tee', 'Supplier4',87.38,'Liteware Classic Tee - High quality and reliable', 131.07, 349, 4.8, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000270', 'StyleCraft Time''s Echo', 'Supplier4',25.82,'StyleCraft Time''s Echo - High quality and reliable', 38.73, 515, 4.1, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000271', 'FunPlay NatureSkin Skincare Set', 'Supplier3',80.33,'FunPlay NatureSkin Skincare Set - High quality and reliable', 120.5, 573, 1.9, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000272', 'ActiveGear Elegance Perfume', 'Supplier2',38.53,'ActiveGear Elegance Perfume - High quality and reliable', 57.8, 271, 1.1, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000273', 'GourmetKitchen GlossyShine Shampoo', 'Supplier2',62.98,'GourmetKitchen GlossyShine Shampoo - High quality and reliable', 94.47, 85, 1.7, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000274', 'StyleCraft ChefMaster Cookware Set', 'Supplier1',203.93,'StyleCraft ChefMaster Cookware Set - High quality and reliable', 305.89, 156, 2, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000275', 'FunPlay PrecisionKnife Set', 'Supplier1',77.14,'FunPlay PrecisionKnife Set - High quality and reliable', 115.71, 620, 4.8, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000276', 'GourmetKitchen SilkyHair Hair Dryer', 'Supplier1',45.89,'GourmetKitchen SilkyHair Hair Dryer - High quality and reliable', 68.84, 488, 2.4, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000277', 'GourmetKitchen BrainyPuzzle', 'Supplier5',93.16,'GourmetKitchen BrainyPuzzle - High quality and reliable', 139.74, 631, 1.9, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000278', 'ActiveGear Z-Laptop', 'Supplier4',599.7,'ActiveGear Z-Laptop - High quality and reliable', 899.55, 756, 1.3, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000279', 'Techtronics GlamUp Makeup Kit', 'Supplier4',36.78,'Techtronics GlamUp Makeup Kit - High quality and reliable', 55.17, 536, 4.7, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000280', 'Techtronics Classic Tee', 'Supplier5',117.67,'Techtronics Classic Tee - High quality and reliable', 176.5, 731, 4.9, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000281', 'PureBeauty GlamUp Makeup Kit', 'Supplier2',75.99,'PureBeauty GlamUp Makeup Kit - High quality and reliable', 113.98, 305, 3.7, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000282', 'GourmetKitchen Winter Jacket', 'Supplier2',111.74,'GourmetKitchen Winter Jacket - High quality and reliable', 167.61, 120, 3.7, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000283', 'PureBeauty SwiftRun Running Shoes', 'Supplier1',11.22,'PureBeauty SwiftRun Running Shoes - High quality and reliable', 16.83, 733, 4, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000284', 'FunPlay SwiftRun Running Shoes', 'Supplier3',32.18,'FunPlay SwiftRun Running Shoes - High quality and reliable', 48.27, 879, 4.4, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000285', 'PureBeauty Princess Bella Doll', 'Supplier1',16.69,'PureBeauty Princess Bella Doll - High quality and reliable', 25.04, 434, 3.5, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000286', 'ActiveGear CrystalClear 4K TV', 'Supplier4',63.17,'ActiveGear CrystalClear 4K TV - High quality and reliable', 94.75, 424, 4.2, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000287', 'PureBeauty Galaxy Quest', 'Supplier4',14.51,'PureBeauty Galaxy Quest - High quality and reliable', 21.77, 649, 4.9, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000288', 'Techtronics NatureSkin Skincare Set', 'Supplier2',10.79,'Techtronics NatureSkin Skincare Set - High quality and reliable', 16.18, 892, 4.1, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000289', 'PureBeauty Z-Laptop', 'Supplier4',131.77,'PureBeauty Z-Laptop - High quality and reliable', 197.66, 50, 2.2, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000290', 'PureBeauty Mystery of the Old Mansion', 'Supplier4',32.19,'PureBeauty Mystery of the Old Mansion - High quality and reliable', 48.28, 301, 4.7, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000291', 'Liteware BlueSound Headphones', 'Supplier5',684.13,'Liteware BlueSound Headphones - High quality and reliable', 1026.19, 673, 4.1, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000292', 'Techtronics Classic Tee', 'Supplier4',139.47,'Techtronics Classic Tee - High quality and reliable', 209.2, 224, 1.4, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000293', 'FunPlay Elegance Perfume', 'Supplier3',50.61,'FunPlay Elegance Perfume - High quality and reliable', 75.91, 827, 3.7, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000294', 'GourmetKitchen Kingdom Quest Board Game', 'Supplier3',9.65,'GourmetKitchen Kingdom Quest Board Game - High quality and reliable', 14.48, 98, 4.3, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000295', 'PureBeauty Princess Bella Doll', 'Supplier1',58.94,'PureBeauty Princess Bella Doll - High quality and reliable', 88.41, 622, 1.9, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000296', 'Techtronics The Life of Visionaries', 'Supplier1',7.38,'Techtronics The Life of Visionaries - High quality and reliable', 11.07, 103, 3.3, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000297', 'FunPlay Time''s Echo', 'Supplier3',33.58,'FunPlay Time''s Echo - High quality and reliable', 50.37, 441, 3.3, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000298', 'StyleCraft Ultimate Football', 'Supplier1',115.88,'StyleCraft Ultimate Football - High quality and reliable', 173.82, 575, 3.4, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000299', 'PureBeauty PrecisionKnife Set', 'Supplier5',67.21,'PureBeauty PrecisionKnife Set - High quality and reliable', 100.81, 556, 3.7, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000300', 'StyleCraft BrainyPuzzle', 'Supplier2',21.57,'StyleCraft BrainyPuzzle - High quality and reliable', 32.36, 97, 1.7, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000301', 'Liteware Princess Bella Doll', 'Supplier5',48.57,'Liteware Princess Bella Doll - High quality and reliable', 72.86, 454, 3.5, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000302', 'ActiveGear Classic Tee', 'Supplier1',121.63,'ActiveGear Classic Tee - High quality and reliable', 182.44, 403, 3, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000303', 'Liteware Mystery of the Old Mansion', 'Supplier3',31.63,'Liteware Mystery of the Old Mansion - High quality and reliable', 47.45, 280, 3.6, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000304', 'StyleCraft The Life of Visionaries', 'Supplier1',7.52,'StyleCraft The Life of Visionaries - High quality and reliable', 11.28, 952, 1.5, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000305', 'ActiveGear Elegant Dress', 'Supplier1',79.99,'ActiveGear Elegant Dress - High quality and reliable', 119.98, 363, 4.8, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000306', 'ActiveGear SkyDunk Basketball', 'Supplier4',63.62,'ActiveGear SkyDunk Basketball - High quality and reliable', 95.43, 875, 4.1, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000307', 'Liteware Ultimate Football', 'Supplier5',169.45,'Liteware Ultimate Football - High quality and reliable', 254.17, 296, 4.7, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000308', 'StyleCraft ZenYoga Mat', 'Supplier1',49.59,'StyleCraft ZenYoga Mat - High quality and reliable', 74.39, 67, 1.9, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000309', 'GourmetKitchen WristTech Smartwatch', 'Supplier3',1024.41,'GourmetKitchen WristTech Smartwatch - High quality and reliable', 1536.62, 637, 2, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000310', 'FunPlay SkyDunk Basketball', 'Supplier2',43.28,'FunPlay SkyDunk Basketball - High quality and reliable', 64.92, 45, 1.2, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000311', 'StyleCraft WristTech Smartwatch', 'Supplier3',431.95,'StyleCraft WristTech Smartwatch - High quality and reliable', 647.92, 844, 4.7, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000312', 'StyleCraft Elegant Dress', 'Supplier4',118.38,'StyleCraft Elegant Dress - High quality and reliable', 177.57, 937, 2, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000313', 'GourmetKitchen PrecisionKnife Set', 'Supplier2',42.12,'GourmetKitchen PrecisionKnife Set - High quality and reliable', 63.18, 857, 2.6, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000314', 'Liteware X-Phone', 'Supplier5',656.52,'Liteware X-Phone - High quality and reliable', 984.78, 369, 2.5, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000315', 'ActiveGear Ultimate Football', 'Supplier3',66.99,'ActiveGear Ultimate Football - High quality and reliable', 100.48, 114, 1.6, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000316', 'FunPlay BlueSound Headphones', 'Supplier5',978.84,'FunPlay BlueSound Headphones - High quality and reliable', 1468.26, 95, 1.8, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000317', 'StyleCraft Chef''s Delights', 'Supplier1',27.7,'StyleCraft Chef''s Delights - High quality and reliable', 41.55, 829, 4, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000318', 'Liteware PrecisionKnife Set', 'Supplier4',111.05,'Liteware PrecisionKnife Set - High quality and reliable', 166.57, 67, 1.5, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000319', 'PureBeauty Time''s Echo', 'Supplier1',31.54,'PureBeauty Time''s Echo - High quality and reliable', 47.31, 730, 2.6, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000320', 'StyleCraft Kingdom Quest Board Game', 'Supplier1',77.8,'StyleCraft Kingdom Quest Board Game - High quality and reliable', 116.7, 296, 3.4, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000321', 'StyleCraft Princess Bella Doll', 'Supplier3',33.55,'StyleCraft Princess Bella Doll - High quality and reliable', 50.32, 791, 4.3, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000322', 'GourmetKitchen GlossyShine Shampoo', 'Supplier2',72.68,'GourmetKitchen GlossyShine Shampoo - High quality and reliable', 109.02, 188, 3.3, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000323', 'FunPlay SpaceWars Video Game', 'Supplier2',87.15,'FunPlay SpaceWars Video Game - High quality and reliable', 130.73, 680, 1.3, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000324', 'GourmetKitchen SwiftRun Running Shoes', 'Supplier4',90.55,'GourmetKitchen SwiftRun Running Shoes - High quality and reliable', 135.82, 352, 2.1, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000325', 'FunPlay Kingdom Quest Board Game', 'Supplier2',67.94,'FunPlay Kingdom Quest Board Game - High quality and reliable', 101.91, 481, 3.4, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000326', 'ActiveGear GlamUp Makeup Kit', 'Supplier4',47.43,'ActiveGear GlamUp Makeup Kit - High quality and reliable', 71.14, 75, 4, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000327', 'Techtronics SkyDunk Basketball', 'Supplier2',120,'Techtronics SkyDunk Basketball - High quality and reliable', 180, 897, 1.8, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000328', 'FunPlay SpaceWars Video Game', 'Supplier4',75.38,'FunPlay SpaceWars Video Game - High quality and reliable', 113.07, 570, 4.9, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000329', 'StyleCraft GlamUp Makeup Kit', 'Supplier2',94.38,'StyleCraft GlamUp Makeup Kit - High quality and reliable', 141.57, 122, 2.1, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000330', 'Techtronics ProTennis Racket', 'Supplier3',65.43,'Techtronics ProTennis Racket - High quality and reliable', 98.15, 306, 2.2, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000331', 'PureBeauty SwiftRun Running Shoes', 'Supplier3',87.39,'PureBeauty SwiftRun Running Shoes - High quality and reliable', 131.09, 101, 1.9, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000332', 'Techtronics Time''s Echo', 'Supplier4',15.18,'Techtronics Time''s Echo - High quality and reliable', 22.77, 944, 2.7, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000333', 'PureBeauty SuperBlend Blender', 'Supplier5',72.14,'PureBeauty SuperBlend Blender - High quality and reliable', 108.21, 900, 3.4, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000334', 'FunPlay QuickToast Toaster', 'Supplier5',90.94,'FunPlay QuickToast Toaster - High quality and reliable', 136.41, 676, 4.9, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000335', 'GourmetKitchen ZenYoga Mat', 'Supplier4',14.18,'GourmetKitchen ZenYoga Mat - High quality and reliable', 21.27, 194, 4.6, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000336', 'PureBeauty CrystalClear 4K TV', 'Supplier5',669.3,'PureBeauty CrystalClear 4K TV - High quality and reliable', 1003.95, 903, 2, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000337', 'Techtronics GlamUp Makeup Kit', 'Supplier2',16.74,'Techtronics GlamUp Makeup Kit - High quality and reliable', 25.11, 198, 2.4, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000338', 'ActiveGear The Life of Visionaries', 'Supplier3',29.18,'ActiveGear The Life of Visionaries - High quality and reliable', 43.77, 758, 4.9, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000339', 'FunPlay Winter Jacket', 'Supplier4',36.65,'FunPlay Winter Jacket - High quality and reliable', 54.97, 614, 3.8, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000340', 'Techtronics Kingdom Quest Board Game', 'Supplier5',24.56,'Techtronics Kingdom Quest Board Game - High quality and reliable', 36.84, 599, 4.8, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000341', 'PureBeauty Space Ranger Action Figure', 'Supplier1',47.04,'PureBeauty Space Ranger Action Figure - High quality and reliable', 70.56, 168, 3.7, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000342', 'ActiveGear MorningBrew Coffee Maker', 'Supplier4',179.13,'ActiveGear MorningBrew Coffee Maker - High quality and reliable', 268.69, 389, 1, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000343', 'Liteware Chef''s Delights', 'Supplier4',18.79,'Liteware Chef''s Delights - High quality and reliable', 28.18, 906, 3, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000344', 'Techtronics MorningBrew Coffee Maker', 'Supplier5',43.73,'Techtronics MorningBrew Coffee Maker - High quality and reliable', 65.59, 970, 3.7, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000345', 'GourmetKitchen SwiftRun Running Shoes', 'Supplier2',87.72,'GourmetKitchen SwiftRun Running Shoes - High quality and reliable', 131.58, 827, 4, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000346', 'PureBeauty ZenYoga Mat', 'Supplier4',160.1,'PureBeauty ZenYoga Mat - High quality and reliable', 240.15, 661, 2.6, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000347', 'Liteware BlueSound Headphones', 'Supplier5',291.5,'Liteware BlueSound Headphones - High quality and reliable', 437.25, 949, 4, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000348', 'Liteware Classic Tee', 'Supplier5',129.18,'Liteware Classic Tee - High quality and reliable', 193.77, 898, 2.6, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000349', 'StyleCraft PrecisionKnife Set', 'Supplier5',176.91,'StyleCraft PrecisionKnife Set - High quality and reliable', 265.37, 857, 2.8, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000350', 'GourmetKitchen Classic Tee', 'Supplier2',122.55,'GourmetKitchen Classic Tee - High quality and reliable', 183.82, 174, 1.4, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000351', 'PureBeauty ProTennis Racket', 'Supplier5',42.16,'PureBeauty ProTennis Racket - High quality and reliable', 63.24, 179, 3.5, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000352', 'Techtronics SuperBlend Blender', 'Supplier1',129.19,'Techtronics SuperBlend Blender - High quality and reliable', 193.78, 163, 4.2, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000353', 'ActiveGear The Life of Visionaries', 'Supplier3',14.25,'ActiveGear The Life of Visionaries - High quality and reliable', 21.38, 629, 4.1, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000354', 'ActiveGear Kingdom Quest Board Game', 'Supplier2',58.55,'ActiveGear Kingdom Quest Board Game - High quality and reliable', 87.82, 84, 3.9, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000355', 'PureBeauty Elegant Dress', 'Supplier3',132.5,'PureBeauty Elegant Dress - High quality and reliable', 198.75, 18, 4.7, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000356', 'PureBeauty SilkyHair Hair Dryer', 'Supplier2',14.12,'PureBeauty SilkyHair Hair Dryer - High quality and reliable', 21.18, 403, 1.5, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000357', 'Liteware Space Ranger Action Figure', 'Supplier1',29.28,'Liteware Space Ranger Action Figure - High quality and reliable', 43.92, 472, 1.5, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000358', 'Techtronics The Life of Visionaries', 'Supplier2',34.26,'Techtronics The Life of Visionaries - High quality and reliable', 51.39, 344, 4.4, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000359', 'PureBeauty Kingdom Quest Board Game', 'Supplier2',30,'PureBeauty Kingdom Quest Board Game - High quality and reliable', 45, 681, 4.8, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000360', 'PureBeauty X-Phone', 'Supplier2',872.02,'PureBeauty X-Phone - High quality and reliable', 1308.03, 685, 4.9, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000361', 'StyleCraft SpaceWars Video Game', 'Supplier2',22.16,'StyleCraft SpaceWars Video Game - High quality and reliable', 33.24, 474, 3.7, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000362', 'StyleCraft Winter Jacket', 'Supplier5',134.72,'StyleCraft Winter Jacket - High quality and reliable', 202.08, 70, 4.9, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000363', 'Techtronics BrainyPuzzle', 'Supplier4',77.79,'Techtronics BrainyPuzzle - High quality and reliable', 116.69, 935, 1.8, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000364', 'ActiveGear GlamUp Makeup Kit', 'Supplier4',33.3,'ActiveGear GlamUp Makeup Kit - High quality and reliable', 49.95, 811, 1.1, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000365', 'ActiveGear BrainyPuzzle', 'Supplier3',40.62,'ActiveGear BrainyPuzzle - High quality and reliable', 60.93, 940, 2.6, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000366', 'ActiveGear GlamUp Makeup Kit', 'Supplier1',65.73,'ActiveGear GlamUp Makeup Kit - High quality and reliable', 98.59, 815, 2.9, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000367', 'FunPlay WristTech Smartwatch', 'Supplier5',789.01,'FunPlay WristTech Smartwatch - High quality and reliable', 1183.51, 557, 4.6, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000368', 'PureBeauty Galaxy Quest', 'Supplier5',24.75,'PureBeauty Galaxy Quest - High quality and reliable', 37.12, 876, 4.8, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000369', 'GourmetKitchen Galaxy Quest', 'Supplier5',30.61,'GourmetKitchen Galaxy Quest - High quality and reliable', 45.91, 259, 3.8, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000370', 'Techtronics Classic Tee', 'Supplier3',96,'Techtronics Classic Tee - High quality and reliable', 144, 181, 3.8, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000371', 'ActiveGear SpaceWars Video Game', 'Supplier1',66.96,'ActiveGear SpaceWars Video Game - High quality and reliable', 100.44, 37, 1.7, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000372', 'PureBeauty SuperBlend Blender', 'Supplier2',66.14,'PureBeauty SuperBlend Blender - High quality and reliable', 99.21, 452, 3.9, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000373', 'Techtronics ZenYoga Mat', 'Supplier1',69.93,'Techtronics ZenYoga Mat - High quality and reliable', 104.9, 822, 2.6, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000374', 'PureBeauty Classic Tee', 'Supplier3',19.56,'PureBeauty Classic Tee - High quality and reliable', 29.34, 17, 1.7, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000375', 'FunPlay ChefMaster Cookware Set', 'Supplier5',200.29,'FunPlay ChefMaster Cookware Set - High quality and reliable', 300.44, 688, 2.6, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000376', 'ActiveGear ProTennis Racket', 'Supplier1',155.99,'ActiveGear ProTennis Racket - High quality and reliable', 233.99, 621, 2.4, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000377', 'ActiveGear CrystalClear 4K TV', 'Supplier4',726.99,'ActiveGear CrystalClear 4K TV - High quality and reliable', 1090.49, 513, 4.8, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000378', 'GourmetKitchen Classic Tee', 'Supplier2',63.85,'GourmetKitchen Classic Tee - High quality and reliable', 95.78, 336, 4.5, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000379', 'GourmetKitchen The Life of Visionaries', 'Supplier1',28.8,'GourmetKitchen The Life of Visionaries - High quality and reliable', 43.2, 430, 4.3, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000380', 'PureBeauty CrystalClear 4K TV', 'Supplier4',490.22,'PureBeauty CrystalClear 4K TV - High quality and reliable', 735.33, 258, 4, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000381', 'ActiveGear Mystery of the Old Mansion', 'Supplier3',23.02,'ActiveGear Mystery of the Old Mansion - High quality and reliable', 34.53, 113, 1.3, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000382', 'PureBeauty GlossyShine Shampoo', 'Supplier5',58.24,'PureBeauty GlossyShine Shampoo - High quality and reliable', 87.36, 167, 4.3, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000383', 'ActiveGear The Life of Visionaries', 'Supplier3',33.95,'ActiveGear The Life of Visionaries - High quality and reliable', 50.93, 464, 4.1, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000384', 'PureBeauty SpaceWars Video Game', 'Supplier3',39.87,'PureBeauty SpaceWars Video Game - High quality and reliable', 59.8, 105, 2.6, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000385', 'GourmetKitchen Elegance Perfume', 'Supplier3',26.77,'GourmetKitchen Elegance Perfume - High quality and reliable', 40.16, 729, 3.2, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000386', 'PureBeauty PrecisionKnife Set', 'Supplier2',108.58,'PureBeauty PrecisionKnife Set - High quality and reliable', 162.87, 545, 3.1, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000387', 'Liteware WristTech Smartwatch', 'Supplier2',870.76,'Liteware WristTech Smartwatch - High quality and reliable', 1306.14, 222, 2.8, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000388', 'Liteware Winter Jacket', 'Supplier4',106.53,'Liteware Winter Jacket - High quality and reliable', 159.8, 517, 3.7, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000389', 'PureBeauty Comfy Sweater', 'Supplier1',87.43,'PureBeauty Comfy Sweater - High quality and reliable', 131.15, 197, 1.8, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000390', 'Liteware Winter Jacket', 'Supplier4',65.34,'Liteware Winter Jacket - High quality and reliable', 98.01, 963, 3.9, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000391', 'FunPlay GlossyShine Shampoo', 'Supplier4',38.36,'FunPlay GlossyShine Shampoo - High quality and reliable', 57.54, 634, 1.8, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000392', 'ActiveGear Time''s Echo', 'Supplier5',7.19,'ActiveGear Time''s Echo - High quality and reliable', 10.79, 240, 1.9, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000393', 'PureBeauty SpaceWars Video Game', 'Supplier3',82.15,'PureBeauty SpaceWars Video Game - High quality and reliable', 123.23, 467, 4.2, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000394', 'Techtronics BlueSound Headphones', 'Supplier1',626.83,'Techtronics BlueSound Headphones - High quality and reliable', 940.25, 260, 4.2, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000395', 'FunPlay Elegance Perfume', 'Supplier2',42.51,'FunPlay Elegance Perfume - High quality and reliable', 63.77, 174, 2.9, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000396', 'PureBeauty GlamUp Makeup Kit', 'Supplier3',60.97,'PureBeauty GlamUp Makeup Kit - High quality and reliable', 91.45, 540, 1.4, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000397', 'Liteware Princess Bella Doll', 'Supplier1',38.62,'Liteware Princess Bella Doll - High quality and reliable', 57.93, 396, 1.7, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000398', 'StyleCraft GlamUp Makeup Kit', 'Supplier4',37.61,'StyleCraft GlamUp Makeup Kit - High quality and reliable', 56.41, 687, 3.1, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000399', 'PureBeauty SpaceWars Video Game', 'Supplier2',94.6,'PureBeauty SpaceWars Video Game - High quality and reliable', 141.9, 357, 2, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000400', 'ActiveGear Comfy Sweater', 'Supplier3',129.9,'ActiveGear Comfy Sweater - High quality and reliable', 194.85, 87, 4.5, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000401', 'GourmetKitchen Time''s Echo', 'Supplier4',22.44,'GourmetKitchen Time''s Echo - High quality and reliable', 33.66, 95, 2.4, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000402', 'Liteware MorningBrew Coffee Maker', 'Supplier4',116.23,'Liteware MorningBrew Coffee Maker - High quality and reliable', 174.34, 978, 3.6, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000403', 'ActiveGear CrystalClear 4K TV', 'Supplier3',46.19,'ActiveGear CrystalClear 4K TV - High quality and reliable', 69.28, 828, 2.1, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000404', 'Liteware Winter Jacket', 'Supplier1',43.4,'Liteware Winter Jacket - High quality and reliable', 65.1, 932, 4.5, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000405', 'StyleCraft Princess Bella Doll', 'Supplier4',80.66,'StyleCraft Princess Bella Doll - High quality and reliable', 120.99, 339, 2.7, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000406', 'StyleCraft PrecisionKnife Set', 'Supplier5',144.48,'StyleCraft PrecisionKnife Set - High quality and reliable', 216.72, 894, 3.9, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000407', 'ActiveGear Urban Jeans', 'Supplier2',39.24,'ActiveGear Urban Jeans - High quality and reliable', 58.86, 372, 1.2, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000408', 'FunPlay Kingdom Quest Board Game', 'Supplier1',93.91,'FunPlay Kingdom Quest Board Game - High quality and reliable', 140.87, 829, 1.6, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000409', 'Liteware Z-Laptop', 'Supplier4',977.02,'Liteware Z-Laptop - High quality and reliable', 1465.53, 396, 3.2, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000410', 'Techtronics GlossyShine Shampoo', 'Supplier2',42.14,'Techtronics GlossyShine Shampoo - High quality and reliable', 63.21, 686, 4.7, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000411', 'GourmetKitchen Classic Tee', 'Supplier5',25.09,'GourmetKitchen Classic Tee - High quality and reliable', 37.63, 578, 3.5, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000412', 'PureBeauty Time''s Echo', 'Supplier4',34.49,'PureBeauty Time''s Echo - High quality and reliable', 51.73, 321, 2, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000413', 'PureBeauty Chef''s Delights', 'Supplier2',19.17,'PureBeauty Chef''s Delights - High quality and reliable', 28.76, 863, 2, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000414', 'Techtronics Mystery of the Old Mansion', 'Supplier1',25.46,'Techtronics Mystery of the Old Mansion - High quality and reliable', 38.19, 952, 3.7, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000415', 'Liteware ProTennis Racket', 'Supplier3',136.8,'Liteware ProTennis Racket - High quality and reliable', 205.2, 956, 2.4, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000416', 'Liteware SilkyHair Hair Dryer', 'Supplier5',38.27,'Liteware SilkyHair Hair Dryer - High quality and reliable', 57.41, 464, 4.9, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000417', 'PureBeauty ProTennis Racket', 'Supplier4',45.01,'PureBeauty ProTennis Racket - High quality and reliable', 67.52, 384, 4.7, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000418', 'PureBeauty SkyDunk Basketball', 'Supplier3',152.19,'PureBeauty SkyDunk Basketball - High quality and reliable', 228.28, 500, 1.8, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000419', 'FunPlay Mystery of the Old Mansion', 'Supplier2',24.45,'FunPlay Mystery of the Old Mansion - High quality and reliable', 36.67, 261, 1.6, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000420', 'StyleCraft Space Ranger Action Figure', 'Supplier2',95.21,'StyleCraft Space Ranger Action Figure - High quality and reliable', 142.81, 604, 2.8, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000421', 'PureBeauty PrecisionKnife Set', 'Supplier3',51.54,'PureBeauty PrecisionKnife Set - High quality and reliable', 77.31, 441, 2, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000422', 'Liteware PrecisionKnife Set', 'Supplier4',19.66,'Liteware PrecisionKnife Set - High quality and reliable', 29.49, 190, 4.1, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000423', 'ActiveGear MorningBrew Coffee Maker', 'Supplier2',40.43,'ActiveGear MorningBrew Coffee Maker - High quality and reliable', 60.64, 171, 2.1, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000424', 'GourmetKitchen QuickToast Toaster', 'Supplier3',156.8,'GourmetKitchen QuickToast Toaster - High quality and reliable', 235.2, 308, 2.2, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000425', 'GourmetKitchen Kingdom Quest Board Game', 'Supplier2',32.91,'GourmetKitchen Kingdom Quest Board Game - High quality and reliable', 49.36, 741, 1.8, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000426', 'GourmetKitchen ChefMaster Cookware Set', 'Supplier2',146.59,'GourmetKitchen ChefMaster Cookware Set - High quality and reliable', 219.88, 361, 4.2, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000427', 'ActiveGear Classic Tee', 'Supplier2',108.75,'ActiveGear Classic Tee - High quality and reliable', 163.12, 551, 3.5, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000428', 'FunPlay Z-Laptop', 'Supplier4',160.44,'FunPlay Z-Laptop - High quality and reliable', 240.66, 871, 3.4, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000429', 'Techtronics Galaxy Quest', 'Supplier1',20.03,'Techtronics Galaxy Quest - High quality and reliable', 30.05, 504, 1.7, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000430', 'StyleCraft SwiftRun Running Shoes', 'Supplier4',86.13,'StyleCraft SwiftRun Running Shoes - High quality and reliable', 129.19, 229, 3.8, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000431', 'StyleCraft ChefMaster Cookware Set', 'Supplier1',15.39,'StyleCraft ChefMaster Cookware Set - High quality and reliable', 23.09, 308, 4.8, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000432', 'Techtronics PrecisionKnife Set', 'Supplier2',92.43,'Techtronics PrecisionKnife Set - High quality and reliable', 138.65, 706, 1.1, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000433', 'Techtronics GlamUp Makeup Kit', 'Supplier4',21.4,'Techtronics GlamUp Makeup Kit - High quality and reliable', 32.1, 988, 3.7, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000434', 'PureBeauty CrystalClear 4K TV', 'Supplier5',654.56,'PureBeauty CrystalClear 4K TV - High quality and reliable', 981.84, 563, 1.8, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000435', 'Techtronics ProTennis Racket', 'Supplier2',171.69,'Techtronics ProTennis Racket - High quality and reliable', 257.53, 761, 3.9, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000436', 'Techtronics SilkyHair Hair Dryer', 'Supplier5',64.71,'Techtronics SilkyHair Hair Dryer - High quality and reliable', 97.06, 552, 2.5, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000437', 'PureBeauty MorningBrew Coffee Maker', 'Supplier5',138.76,'PureBeauty MorningBrew Coffee Maker - High quality and reliable', 208.14, 989, 4.3, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000438', 'PureBeauty ProTennis Racket', 'Supplier4',133.48,'PureBeauty ProTennis Racket - High quality and reliable', 200.22, 295, 4.8, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000439', 'Liteware SuperBlend Blender', 'Supplier2',147.88,'Liteware SuperBlend Blender - High quality and reliable', 221.82, 449, 4.7, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000440', 'GourmetKitchen SpaceWars Video Game', 'Supplier3',64.91,'GourmetKitchen SpaceWars Video Game - High quality and reliable', 97.36, 618, 1.1, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000441', 'ActiveGear WristTech Smartwatch', 'Supplier4',594.81,'ActiveGear WristTech Smartwatch - High quality and reliable', 892.21, 322, 1.6, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000442', 'PureBeauty X-Phone', 'Supplier1',300.37,'PureBeauty X-Phone - High quality and reliable', 450.56, 141, 4.3, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000443', 'ActiveGear SkyDunk Basketball', 'Supplier3',100.01,'ActiveGear SkyDunk Basketball - High quality and reliable', 150.02, 561, 3.4, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000444', 'PureBeauty BrainyPuzzle', 'Supplier4',94.78,'PureBeauty BrainyPuzzle - High quality and reliable', 142.17, 238, 2, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000445', 'ActiveGear Kingdom Quest Board Game', 'Supplier5',96.89,'ActiveGear Kingdom Quest Board Game - High quality and reliable', 145.34, 946, 1.1, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000446', 'Techtronics Princess Bella Doll', 'Supplier3',35.72,'Techtronics Princess Bella Doll - High quality and reliable', 53.58, 253, 3.7, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000447', 'GourmetKitchen MorningBrew Coffee Maker', 'Supplier2',170.46,'GourmetKitchen MorningBrew Coffee Maker - High quality and reliable', 255.69, 815, 3.8, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000448', 'FunPlay SpaceWars Video Game', 'Supplier4',7.1,'FunPlay SpaceWars Video Game - High quality and reliable', 10.65, 957, 1.7, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000449', 'PureBeauty Elegance Perfume', 'Supplier3',71.63,'PureBeauty Elegance Perfume - High quality and reliable', 107.44, 671, 1.8, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000450', 'Techtronics Kingdom Quest Board Game', 'Supplier4',85.91,'Techtronics Kingdom Quest Board Game - High quality and reliable', 128.87, 509, 3.9, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000451', 'PureBeauty SpaceWars Video Game', 'Supplier3',88.52,'PureBeauty SpaceWars Video Game - High quality and reliable', 132.78, 40, 4.8, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000452', 'FunPlay BrainyPuzzle', 'Supplier3',25.87,'FunPlay BrainyPuzzle - High quality and reliable', 38.8, 888, 1.3, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000453', 'PureBeauty Urban Jeans', 'Supplier2',29.64,'PureBeauty Urban Jeans - High quality and reliable', 44.46, 648, 1.1, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000454', 'Techtronics BrainyPuzzle', 'Supplier5',62.9,'Techtronics BrainyPuzzle - High quality and reliable', 94.35, 973, 1.1, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000455', 'FunPlay GlossyShine Shampoo', 'Supplier2',52.64,'FunPlay GlossyShine Shampoo - High quality and reliable', 78.96, 542, 4.5, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000456', 'StyleCraft Mystery of the Old Mansion', 'Supplier3',11.88,'StyleCraft Mystery of the Old Mansion - High quality and reliable', 17.82, 352, 4.2, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000457', 'Techtronics ZenYoga Mat', 'Supplier2',172.5,'Techtronics ZenYoga Mat - High quality and reliable', 258.75, 393, 4.9, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000458', 'PureBeauty ProTennis Racket', 'Supplier4',22.28,'PureBeauty ProTennis Racket - High quality and reliable', 33.42, 434, 2.6, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000459', 'StyleCraft The Life of Visionaries', 'Supplier3',11.53,'StyleCraft The Life of Visionaries - High quality and reliable', 17.29, 28, 4.6, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000460', 'Techtronics Elegance Perfume', 'Supplier4',104.31,'Techtronics Elegance Perfume - High quality and reliable', 156.47, 976, 3.4, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000461', 'StyleCraft Mystery of the Old Mansion', 'Supplier2',31.48,'StyleCraft Mystery of the Old Mansion - High quality and reliable', 47.22, 125, 1.7, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000462', 'ActiveGear Ultimate Football', 'Supplier1',108.07,'ActiveGear Ultimate Football - High quality and reliable', 162.1, 988, 3.8, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000463', 'PureBeauty SuperBlend Blender', 'Supplier1',18.08,'PureBeauty SuperBlend Blender - High quality and reliable', 27.12, 767, 1.6, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000464', 'Techtronics The Life of Visionaries', 'Supplier5',7.37,'Techtronics The Life of Visionaries - High quality and reliable', 11.05, 278, 1.2, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000465', 'FunPlay Galaxy Quest', 'Supplier5',8.93,'FunPlay Galaxy Quest - High quality and reliable', 13.39, 645, 1.7, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000466', 'GourmetKitchen Elegant Dress', 'Supplier2',40.68,'GourmetKitchen Elegant Dress - High quality and reliable', 61.02, 615, 1.6, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000467', 'StyleCraft Classic Tee', 'Supplier3',62.77,'StyleCraft Classic Tee - High quality and reliable', 94.16, 783, 1, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000468', 'FunPlay Classic Tee', 'Supplier3',127.75,'FunPlay Classic Tee - High quality and reliable', 191.62, 499, 4.8, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000469', 'StyleCraft GlamUp Makeup Kit', 'Supplier2',47.88,'StyleCraft GlamUp Makeup Kit - High quality and reliable', 71.82, 524, 2.4, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000470', 'StyleCraft MorningBrew Coffee Maker', 'Supplier5',90.9,'StyleCraft MorningBrew Coffee Maker - High quality and reliable', 136.35, 298, 4.4, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000471', 'PureBeauty Classic Tee', 'Supplier2',74.35,'PureBeauty Classic Tee - High quality and reliable', 111.52, 697, 5, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000472', 'ActiveGear The Life of Visionaries', 'Supplier3',32.99,'ActiveGear The Life of Visionaries - High quality and reliable', 49.48, 620, 2, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000473', 'StyleCraft Elegant Dress', 'Supplier3',113.85,'StyleCraft Elegant Dress - High quality and reliable', 170.77, 45, 4.4, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000474', 'FunPlay SuperBlend Blender', 'Supplier2',189.48,'FunPlay SuperBlend Blender - High quality and reliable', 284.22, 958, 3.6, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000475', 'Liteware Time''s Echo', 'Supplier5',33.67,'Liteware Time''s Echo - High quality and reliable', 50.51, 660, 1.5, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000476', 'FunPlay Mystery of the Old Mansion', 'Supplier5',22.04,'FunPlay Mystery of the Old Mansion - High quality and reliable', 33.06, 440, 5, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000477', 'Liteware WristTech Smartwatch', 'Supplier2',751.48,'Liteware WristTech Smartwatch - High quality and reliable', 1127.22, 578, 3.2, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000478', 'GourmetKitchen NatureSkin Skincare Set', 'Supplier5',40.13,'GourmetKitchen NatureSkin Skincare Set - High quality and reliable', 60.2, 900, 1.1, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000479', 'GourmetKitchen SkyDunk Basketball', 'Supplier2',152.63,'GourmetKitchen SkyDunk Basketball - High quality and reliable', 228.94, 423, 2, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000480', 'Techtronics Winter Jacket', 'Supplier5',102.19,'Techtronics Winter Jacket - High quality and reliable', 153.28, 765, 2.7, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000481', 'GourmetKitchen Galaxy Quest', 'Supplier4',13.45,'GourmetKitchen Galaxy Quest - High quality and reliable', 20.17, 515, 1.1, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000482', 'Liteware ZenYoga Mat', 'Supplier5',113.43,'Liteware ZenYoga Mat - High quality and reliable', 170.15, 891, 4.2, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000483', 'FunPlay BlueSound Headphones', 'Supplier1',461.74,'FunPlay BlueSound Headphones - High quality and reliable', 692.61, 608, 1.5, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000484', 'GourmetKitchen WristTech Smartwatch', 'Supplier1',254.75,'GourmetKitchen WristTech Smartwatch - High quality and reliable', 382.12, 629, 3.1, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000485', 'PureBeauty ZenYoga Mat', 'Supplier1',19.83,'PureBeauty ZenYoga Mat - High quality and reliable', 29.74, 356, 2.7, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000486', 'ActiveGear ProTennis Racket', 'Supplier5',51.55,'ActiveGear ProTennis Racket - High quality and reliable', 77.32, 531, 3.4, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000487', 'PureBeauty The Life of Visionaries', 'Supplier1',22.94,'PureBeauty The Life of Visionaries - High quality and reliable', 34.41, 655, 2.1, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000488', 'PureBeauty X-Phone', 'Supplier1',290.02,'PureBeauty X-Phone - High quality and reliable', 435.03, 680, 1.5, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000489', 'StyleCraft ZenYoga Mat', 'Supplier5',104.19,'StyleCraft ZenYoga Mat - High quality and reliable', 156.28, 843, 2.1, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000490', 'Liteware Elegance Perfume', 'Supplier2',36.78,'Liteware Elegance Perfume - High quality and reliable', 55.17, 929, 1.7, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000491', 'GourmetKitchen PrecisionKnife Set', 'Supplier3',161.98,'GourmetKitchen PrecisionKnife Set - High quality and reliable', 242.97, 446, 2.4, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000492', 'Techtronics Comfy Sweater', 'Supplier4',102.4,'Techtronics Comfy Sweater - High quality and reliable', 153.6, 668, 3.5, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000493', 'FunPlay SilkyHair Hair Dryer', 'Supplier2',95.86,'FunPlay SilkyHair Hair Dryer - High quality and reliable', 143.79, 650, 1.4, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000494', 'Techtronics Princess Bella Doll', 'Supplier2',66.35,'Techtronics Princess Bella Doll - High quality and reliable', 99.52, 863, 4.2, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000495', 'GourmetKitchen ProTennis Racket', 'Supplier2',148.35,'GourmetKitchen ProTennis Racket - High quality and reliable', 222.52, 31, 3.5, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000496', 'PureBeauty Chef''s Delights', 'Supplier4',30.52,'PureBeauty Chef''s Delights - High quality and reliable', 45.78, 421, 1.3, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000497', 'StyleCraft SuperBlend Blender', 'Supplier3',174.95,'StyleCraft SuperBlend Blender - High quality and reliable', 262.42, 296, 2.5, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000498', 'GourmetKitchen Winter Jacket', 'Supplier3',100.98,'GourmetKitchen Winter Jacket - High quality and reliable', 151.47, 201, 2.6, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000499', 'Liteware Z-Laptop', 'Supplier4',917.56,'Liteware Z-Laptop - High quality and reliable', 1376.34, 160, 4.2, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000500', 'ActiveGear GlamUp Makeup Kit', 'Supplier2',22.64,'ActiveGear GlamUp Makeup Kit - High quality and reliable', 33.96, 50, 3.5, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000501', 'FunPlay NatureSkin Skincare Set', 'Supplier4',63.15,'FunPlay NatureSkin Skincare Set - High quality and reliable', 94.72, 245, 3.8, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000502', 'GourmetKitchen Kingdom Quest Board Game', 'Supplier1',102.72,'GourmetKitchen Kingdom Quest Board Game - High quality and reliable', 154.08, 919, 2.2, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000503', 'StyleCraft Elegant Dress', 'Supplier5',112.61,'StyleCraft Elegant Dress - High quality and reliable', 168.91, 226, 1.9, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000504', 'ActiveGear SwiftRun Running Shoes', 'Supplier2',104.58,'ActiveGear SwiftRun Running Shoes - High quality and reliable', 156.87, 111, 2.5, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000505', 'Liteware Classic Tee', 'Supplier1',98.82,'Liteware Classic Tee - High quality and reliable', 148.23, 566, 1.6, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000506', 'PureBeauty Space Ranger Action Figure', 'Supplier2',48.52,'PureBeauty Space Ranger Action Figure - High quality and reliable', 72.78, 329, 4.4, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000507', 'FunPlay Kingdom Quest Board Game', 'Supplier5',55.76,'FunPlay Kingdom Quest Board Game - High quality and reliable', 83.64, 919, 3.1, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000508', 'Techtronics Ultimate Football', 'Supplier5',129.37,'Techtronics Ultimate Football - High quality and reliable', 194.06, 536, 4.5, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000509', 'Techtronics Chef''s Delights', 'Supplier4',30.16,'Techtronics Chef''s Delights - High quality and reliable', 45.24, 995, 3.8, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000510', 'GourmetKitchen The Life of Visionaries', 'Supplier2',29.2,'GourmetKitchen The Life of Visionaries - High quality and reliable', 43.8, 422, 1.5, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000511', 'StyleCraft Time''s Echo', 'Supplier1',26.48,'StyleCraft Time''s Echo - High quality and reliable', 39.72, 33, 3.1, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000512', 'ActiveGear GlossyShine Shampoo', 'Supplier5',103.09,'ActiveGear GlossyShine Shampoo - High quality and reliable', 154.63, 768, 3.3, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000513', 'StyleCraft The Life of Visionaries', 'Supplier2',19.07,'StyleCraft The Life of Visionaries - High quality and reliable', 28.61, 453, 2.5, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000514', 'Techtronics Winter Jacket', 'Supplier5',137.66,'Techtronics Winter Jacket - High quality and reliable', 206.49, 822, 2.3, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000515', 'Liteware MorningBrew Coffee Maker', 'Supplier5',62.34,'Liteware MorningBrew Coffee Maker - High quality and reliable', 93.51, 514, 2.7, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000516', 'GourmetKitchen Classic Tee', 'Supplier3',22.34,'GourmetKitchen Classic Tee - High quality and reliable', 33.51, 531, 4, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000517', 'FunPlay SuperBlend Blender', 'Supplier3',42.31,'FunPlay SuperBlend Blender - High quality and reliable', 63.47, 238, 4.9, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000518', 'PureBeauty Urban Jeans', 'Supplier3',110.09,'PureBeauty Urban Jeans - High quality and reliable', 165.13, 701, 2.4, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000519', 'StyleCraft Z-Laptop', 'Supplier5',552.23,'StyleCraft Z-Laptop - High quality and reliable', 828.35, 565, 3.2, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000520', 'FunPlay MorningBrew Coffee Maker', 'Supplier1',107.76,'FunPlay MorningBrew Coffee Maker - High quality and reliable', 161.64, 590, 1.8, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000521', 'Techtronics SuperBlend Blender', 'Supplier5',93.85,'Techtronics SuperBlend Blender - High quality and reliable', 140.77, 932, 4.1, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000522', 'PureBeauty Chef''s Delights', 'Supplier5',34.2,'PureBeauty Chef''s Delights - High quality and reliable', 51.3, 591, 4.2, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000523', 'GourmetKitchen Urban Jeans', 'Supplier3',47.36,'GourmetKitchen Urban Jeans - High quality and reliable', 71.04, 490, 1.7, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000524', 'GourmetKitchen Galaxy Quest', 'Supplier1',31.34,'GourmetKitchen Galaxy Quest - High quality and reliable', 47.01, 222, 4.3, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000525', 'Techtronics BlueSound Headphones', 'Supplier5',180.34,'Techtronics BlueSound Headphones - High quality and reliable', 270.51, 212, 1.8, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000526', 'StyleCraft The Life of Visionaries', 'Supplier1',14.5,'StyleCraft The Life of Visionaries - High quality and reliable', 21.75, 347, 4.2, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000527', 'FunPlay Mystery of the Old Mansion', 'Supplier4',18.63,'FunPlay Mystery of the Old Mansion - High quality and reliable', 27.95, 823, 3.5, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000528', 'StyleCraft Elegance Perfume', 'Supplier3',61.98,'StyleCraft Elegance Perfume - High quality and reliable', 92.97, 572, 1.3, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000529', 'Techtronics NatureSkin Skincare Set', 'Supplier4',85.88,'Techtronics NatureSkin Skincare Set - High quality and reliable', 128.82, 347, 2.8, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000530', 'FunPlay ProTennis Racket', 'Supplier1',21.71,'FunPlay ProTennis Racket - High quality and reliable', 32.56, 938, 2.6, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000531', 'PureBeauty SilkyHair Hair Dryer', 'Supplier5',91.77,'PureBeauty SilkyHair Hair Dryer - High quality and reliable', 137.66, 318, 1.7, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000532', 'StyleCraft ZenYoga Mat', 'Supplier3',133.25,'StyleCraft ZenYoga Mat - High quality and reliable', 199.88, 406, 4.8, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000533', 'PureBeauty QuickToast Toaster', 'Supplier1',68.33,'PureBeauty QuickToast Toaster - High quality and reliable', 102.5, 469, 1.2, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000534', 'GourmetKitchen SkyDunk Basketball', 'Supplier4',166.56,'GourmetKitchen SkyDunk Basketball - High quality and reliable', 249.84, 948, 1.3, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000535', 'StyleCraft GlamUp Makeup Kit', 'Supplier3',46.3,'StyleCraft GlamUp Makeup Kit - High quality and reliable', 69.45, 208, 3.2, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000536', 'FunPlay Chef''s Delights', 'Supplier1',28.53,'FunPlay Chef''s Delights - High quality and reliable', 42.8, 506, 1.6, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000537', 'ActiveGear Z-Laptop', 'Supplier3',701.94,'ActiveGear Z-Laptop - High quality and reliable', 1052.91, 977, 4.6, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000538', 'Liteware ZenYoga Mat', 'Supplier2',108.31,'Liteware ZenYoga Mat - High quality and reliable', 162.47, 94, 1.4, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000539', 'Liteware Mystery of the Old Mansion', 'Supplier3',32.69,'Liteware Mystery of the Old Mansion - High quality and reliable', 49.03, 125, 2.9, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000540', 'ActiveGear Urban Jeans', 'Supplier1',48.13,'ActiveGear Urban Jeans - High quality and reliable', 72.2, 945, 4.9, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000541', 'PureBeauty BlueSound Headphones', 'Supplier5',397.09,'PureBeauty BlueSound Headphones - High quality and reliable', 595.63, 641, 4.3, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000542', 'PureBeauty X-Phone', 'Supplier1',403.63,'PureBeauty X-Phone - High quality and reliable', 605.44, 110, 3.2, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000543', 'Techtronics Z-Laptop', 'Supplier1',331.8,'Techtronics Z-Laptop - High quality and reliable', 497.7, 118, 2.9, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000544', 'FunPlay The Life of Visionaries', 'Supplier3',29.06,'FunPlay The Life of Visionaries - High quality and reliable', 43.59, 933, 3.9, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000545', 'StyleCraft PrecisionKnife Set', 'Supplier5',75.15,'StyleCraft PrecisionKnife Set - High quality and reliable', 112.73, 856, 1.3, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000546', 'ActiveGear BrainyPuzzle', 'Supplier5',28.04,'ActiveGear BrainyPuzzle - High quality and reliable', 42.06, 839, 2.5, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000547', 'StyleCraft SwiftRun Running Shoes', 'Supplier2',65.36,'StyleCraft SwiftRun Running Shoes - High quality and reliable', 98.04, 750, 2.9, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000548', 'FunPlay Classic Tee', 'Supplier2',101.15,'FunPlay Classic Tee - High quality and reliable', 151.73, 781, 3.1, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000549', 'StyleCraft X-Phone', 'Supplier4',779.49,'StyleCraft X-Phone - High quality and reliable', 1169.24, 392, 3.5, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000550', 'GourmetKitchen Elegant Dress', 'Supplier4',10.88,'GourmetKitchen Elegant Dress - High quality and reliable', 16.32, 412, 2, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000551', 'StyleCraft Elegant Dress', 'Supplier3',52.12,'StyleCraft Elegant Dress - High quality and reliable', 78.18, 104, 4.6, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000552', 'PureBeauty ZenYoga Mat', 'Supplier5',22.92,'PureBeauty ZenYoga Mat - High quality and reliable', 34.38, 320, 4, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000553', 'FunPlay SkyDunk Basketball', 'Supplier2',78.59,'FunPlay SkyDunk Basketball - High quality and reliable', 117.89, 195, 4.6, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000554', 'Techtronics SpaceWars Video Game', 'Supplier2',58.39,'Techtronics SpaceWars Video Game - High quality and reliable', 87.59, 171, 2.5, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000555', 'ActiveGear MorningBrew Coffee Maker', 'Supplier5',136.26,'ActiveGear MorningBrew Coffee Maker - High quality and reliable', 204.39, 379, 4, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000556', 'PureBeauty GlossyShine Shampoo', 'Supplier3',42.28,'PureBeauty GlossyShine Shampoo - High quality and reliable', 63.42, 976, 1.1, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000557', 'Techtronics Time''s Echo', 'Supplier5',29.96,'Techtronics Time''s Echo - High quality and reliable', 44.94, 267, 2.1, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000558', 'ActiveGear Mystery of the Old Mansion', 'Supplier4',31.18,'ActiveGear Mystery of the Old Mansion - High quality and reliable', 46.77, 398, 3.7, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000559', 'ActiveGear SpaceWars Video Game', 'Supplier5',10.72,'ActiveGear SpaceWars Video Game - High quality and reliable', 16.08, 836, 4.5, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000560', 'PureBeauty Classic Tee', 'Supplier3',13.38,'PureBeauty Classic Tee - High quality and reliable', 20.07, 940, 3, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000561', 'PureBeauty Elegant Dress', 'Supplier3',106.63,'PureBeauty Elegant Dress - High quality and reliable', 159.94, 188, 2, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000562', 'Techtronics Space Ranger Action Figure', 'Supplier3',19.23,'Techtronics Space Ranger Action Figure - High quality and reliable', 28.84, 47, 1.6, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000563', 'ActiveGear SkyDunk Basketball', 'Supplier1',154.11,'ActiveGear SkyDunk Basketball - High quality and reliable', 231.17, 598, 3.5, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000564', 'Techtronics BlueSound Headphones', 'Supplier1',881.58,'Techtronics BlueSound Headphones - High quality and reliable', 1322.37, 47, 3.3, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000565', 'GourmetKitchen The Life of Visionaries', 'Supplier2',19.62,'GourmetKitchen The Life of Visionaries - High quality and reliable', 29.43, 953, 3.4, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000566', 'Liteware ProTennis Racket', 'Supplier5',24.13,'Liteware ProTennis Racket - High quality and reliable', 36.2, 854, 3.8, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000567', 'StyleCraft Kingdom Quest Board Game', 'Supplier1',96.47,'StyleCraft Kingdom Quest Board Game - High quality and reliable', 144.7, 983, 4.3, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000568', 'GourmetKitchen GlamUp Makeup Kit', 'Supplier1',7.46,'GourmetKitchen GlamUp Makeup Kit - High quality and reliable', 11.19, 232, 4.7, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000569', 'GourmetKitchen Classic Tee', 'Supplier3',34.43,'GourmetKitchen Classic Tee - High quality and reliable', 51.64, 13, 2.2, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000570', 'FunPlay BlueSound Headphones', 'Supplier4',382.91,'FunPlay BlueSound Headphones - High quality and reliable', 574.37, 346, 2.5, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000571', 'Techtronics BlueSound Headphones', 'Supplier5',684.4,'Techtronics BlueSound Headphones - High quality and reliable', 1026.6, 826, 4.8, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000572', 'GourmetKitchen MorningBrew Coffee Maker', 'Supplier4',174.45,'GourmetKitchen MorningBrew Coffee Maker - High quality and reliable', 261.67, 771, 1.7, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000573', 'Techtronics ZenYoga Mat', 'Supplier4',32.57,'Techtronics ZenYoga Mat - High quality and reliable', 48.86, 182, 1.2, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000574', 'PureBeauty NatureSkin Skincare Set', 'Supplier4',104.16,'PureBeauty NatureSkin Skincare Set - High quality and reliable', 156.24, 792, 1.2, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000575', 'GourmetKitchen X-Phone', 'Supplier2',571.95,'GourmetKitchen X-Phone - High quality and reliable', 857.93, 771, 1.5, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000576', 'StyleCraft Princess Bella Doll', 'Supplier1',7.48,'StyleCraft Princess Bella Doll - High quality and reliable', 11.22, 973, 2.6, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000577', 'Liteware SuperBlend Blender', 'Supplier3',105.76,'Liteware SuperBlend Blender - High quality and reliable', 158.64, 493, 4.5, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000578', 'FunPlay X-Phone', 'Supplier2',607.97,'FunPlay X-Phone - High quality and reliable', 911.96, 219, 1.2, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000579', 'Liteware Elegant Dress', 'Supplier5',34.73,'Liteware Elegant Dress - High quality and reliable', 52.09, 807, 2.3, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000580', 'ActiveGear Elegant Dress', 'Supplier2',91.9,'ActiveGear Elegant Dress - High quality and reliable', 137.85, 119, 3.1, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000581', 'StyleCraft GlossyShine Shampoo', 'Supplier5',97.57,'StyleCraft GlossyShine Shampoo - High quality and reliable', 146.35, 663, 2.8, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000582', 'StyleCraft Elegant Dress', 'Supplier1',54.29,'StyleCraft Elegant Dress - High quality and reliable', 81.44, 116, 3.9, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000583', 'Techtronics QuickToast Toaster', 'Supplier4',32.16,'Techtronics QuickToast Toaster - High quality and reliable', 48.24, 326, 4.7, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000584', 'PureBeauty Elegance Perfume', 'Supplier2',49.95,'PureBeauty Elegance Perfume - High quality and reliable', 74.93, 222, 4.2, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000585', 'Techtronics Classic Tee', 'Supplier3',87.21,'Techtronics Classic Tee - High quality and reliable', 130.81, 666, 2.2, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000586', 'PureBeauty SkyDunk Basketball', 'Supplier3',146.26,'PureBeauty SkyDunk Basketball - High quality and reliable', 219.39, 529, 3.1, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000587', 'ActiveGear ZenYoga Mat', 'Supplier4',40.66,'ActiveGear ZenYoga Mat - High quality and reliable', 60.99, 52, 3.2, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000588', 'FunPlay ChefMaster Cookware Set', 'Supplier3',168.95,'FunPlay ChefMaster Cookware Set - High quality and reliable', 253.42, 456, 2.8, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000589', 'GourmetKitchen Winter Jacket', 'Supplier3',31,'GourmetKitchen Winter Jacket - High quality and reliable', 46.5, 530, 3.2, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000590', 'PureBeauty ProTennis Racket', 'Supplier1',84.93,'PureBeauty ProTennis Racket - High quality and reliable', 127.4, 22, 3.1, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000591', 'ActiveGear SilkyHair Hair Dryer', 'Supplier1',66.74,'ActiveGear SilkyHair Hair Dryer - High quality and reliable', 100.11, 363, 3, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000592', 'ActiveGear BrainyPuzzle', 'Supplier2',49.55,'ActiveGear BrainyPuzzle - High quality and reliable', 74.32, 574, 3.8, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000593', 'StyleCraft QuickToast Toaster', 'Supplier3',84.94,'StyleCraft QuickToast Toaster - High quality and reliable', 127.41, 101, 3, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000594', 'ActiveGear Comfy Sweater', 'Supplier2',111.45,'ActiveGear Comfy Sweater - High quality and reliable', 167.18, 150, 1.8, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000595', 'StyleCraft Space Ranger Action Figure', 'Supplier4',16.34,'StyleCraft Space Ranger Action Figure - High quality and reliable', 24.51, 409, 2.5, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000596', 'StyleCraft Comfy Sweater', 'Supplier5',26.24,'StyleCraft Comfy Sweater - High quality and reliable', 39.36, 955, 4.3, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000597', 'Techtronics CrystalClear 4K TV', 'Supplier5',37.66,'Techtronics CrystalClear 4K TV - High quality and reliable', 56.49, 571, 3.5, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000598', 'Liteware SuperBlend Blender', 'Supplier2',80.95,'Liteware SuperBlend Blender - High quality and reliable', 121.43, 84, 2, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000599', 'GourmetKitchen Princess Bella Doll', 'Supplier4',26.94,'GourmetKitchen Princess Bella Doll - High quality and reliable', 40.41, 753, 4.4, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000600', 'FunPlay WristTech Smartwatch', 'Supplier4',1030.31,'FunPlay WristTech Smartwatch - High quality and reliable', 1545.46, 469, 3.5, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000601', 'PureBeauty Galaxy Quest', 'Supplier5',21.18,'PureBeauty Galaxy Quest - High quality and reliable', 31.77, 303, 1.9, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000602', 'StyleCraft NatureSkin Skincare Set', 'Supplier1',32.27,'StyleCraft NatureSkin Skincare Set - High quality and reliable', 48.41, 811, 2.5, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000603', 'Techtronics Kingdom Quest Board Game', 'Supplier5',19.81,'Techtronics Kingdom Quest Board Game - High quality and reliable', 29.71, 417, 2.4, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000604', 'StyleCraft Ultimate Football', 'Supplier5',94.38,'StyleCraft Ultimate Football - High quality and reliable', 141.57, 301, 1.6, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000605', 'FunPlay ZenYoga Mat', 'Supplier5',114.8,'FunPlay ZenYoga Mat - High quality and reliable', 172.2, 139, 2.1, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000606', 'PureBeauty Time''s Echo', 'Supplier2',7.58,'PureBeauty Time''s Echo - High quality and reliable', 11.37, 416, 1.3, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000607', 'ActiveGear Mystery of the Old Mansion', 'Supplier3',32.78,'ActiveGear Mystery of the Old Mansion - High quality and reliable', 49.17, 627, 4, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000608', 'PureBeauty WristTech Smartwatch', 'Supplier4',106.93,'PureBeauty WristTech Smartwatch - High quality and reliable', 160.4, 528, 3.7, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000609', 'GourmetKitchen Kingdom Quest Board Game', 'Supplier3',90.38,'GourmetKitchen Kingdom Quest Board Game - High quality and reliable', 135.57, 416, 4.2, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000610', 'Liteware ProTennis Racket', 'Supplier2',56.48,'Liteware ProTennis Racket - High quality and reliable', 84.72, 522, 3.8, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000611', 'Techtronics Winter Jacket', 'Supplier3',21.42,'Techtronics Winter Jacket - High quality and reliable', 32.13, 932, 2.1, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000612', 'FunPlay SpaceWars Video Game', 'Supplier4',47.58,'FunPlay SpaceWars Video Game - High quality and reliable', 71.37, 357, 2.5, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000613', 'PureBeauty Chef''s Delights', 'Supplier2',23.01,'PureBeauty Chef''s Delights - High quality and reliable', 34.52, 110, 2.3, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000614', 'ActiveGear WristTech Smartwatch', 'Supplier4',537.96,'ActiveGear WristTech Smartwatch - High quality and reliable', 806.94, 865, 3.4, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000615', 'FunPlay BlueSound Headphones', 'Supplier4',116.5,'FunPlay BlueSound Headphones - High quality and reliable', 174.75, 341, 4.7, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000616', 'FunPlay Ultimate Football', 'Supplier1',98.01,'FunPlay Ultimate Football - High quality and reliable', 147.02, 650, 4.7, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000617', 'FunPlay Galaxy Quest', 'Supplier5',21.22,'FunPlay Galaxy Quest - High quality and reliable', 31.83, 465, 1.7, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000618', 'StyleCraft QuickToast Toaster', 'Supplier4',66.38,'StyleCraft QuickToast Toaster - High quality and reliable', 99.57, 570, 1.8, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000619', 'FunPlay MorningBrew Coffee Maker', 'Supplier3',35.59,'FunPlay MorningBrew Coffee Maker - High quality and reliable', 53.39, 857, 2.7, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000620', 'Techtronics Winter Jacket', 'Supplier4',28.28,'Techtronics Winter Jacket - High quality and reliable', 42.42, 717, 1.3, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000621', 'StyleCraft QuickToast Toaster', 'Supplier3',21.57,'StyleCraft QuickToast Toaster - High quality and reliable', 32.36, 421, 2.2, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000622', 'StyleCraft Elegant Dress', 'Supplier2',65.9,'StyleCraft Elegant Dress - High quality and reliable', 98.85, 536, 3.7, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000623', 'Techtronics Space Ranger Action Figure', 'Supplier3',103.92,'Techtronics Space Ranger Action Figure - High quality and reliable', 155.88, 542, 2.7, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000624', 'GourmetKitchen Time''s Echo', 'Supplier5',16.57,'GourmetKitchen Time''s Echo - High quality and reliable', 24.86, 892, 3.3, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000625', 'Techtronics SkyDunk Basketball', 'Supplier3',29.62,'Techtronics SkyDunk Basketball - High quality and reliable', 44.43, 297, 3.6, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000626', 'Liteware SuperBlend Blender', 'Supplier1',177.45,'Liteware SuperBlend Blender - High quality and reliable', 266.17, 27, 2.6, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000627', 'Liteware Mystery of the Old Mansion', 'Supplier5',8.03,'Liteware Mystery of the Old Mansion - High quality and reliable', 12.04, 960, 1.1, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000628', 'Techtronics SpaceWars Video Game', 'Supplier2',89.83,'Techtronics SpaceWars Video Game - High quality and reliable', 134.75, 560, 3.7, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000629', 'PureBeauty The Life of Visionaries', 'Supplier2',25.24,'PureBeauty The Life of Visionaries - High quality and reliable', 37.86, 422, 1.9, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000630', 'GourmetKitchen SkyDunk Basketball', 'Supplier4',96.45,'GourmetKitchen SkyDunk Basketball - High quality and reliable', 144.68, 378, 4, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000631', 'PureBeauty ChefMaster Cookware Set', 'Supplier3',193.09,'PureBeauty ChefMaster Cookware Set - High quality and reliable', 289.63, 835, 4.6, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000632', 'PureBeauty SkyDunk Basketball', 'Supplier5',88.23,'PureBeauty SkyDunk Basketball - High quality and reliable', 132.34, 30, 1.4, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000633', 'ActiveGear BrainyPuzzle', 'Supplier1',58.83,'ActiveGear BrainyPuzzle - High quality and reliable', 88.25, 333, 3.2, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000634', 'Techtronics Time''s Echo', 'Supplier2',30.13,'Techtronics Time''s Echo - High quality and reliable', 45.2, 738, 4.4, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000635', 'Liteware Mystery of the Old Mansion', 'Supplier5',15.15,'Liteware Mystery of the Old Mansion - High quality and reliable', 22.73, 991, 1.4, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000636', 'Liteware Galaxy Quest', 'Supplier4',21.07,'Liteware Galaxy Quest - High quality and reliable', 31.61, 457, 1.5, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000637', 'StyleCraft Classic Tee', 'Supplier3',14.79,'StyleCraft Classic Tee - High quality and reliable', 22.18, 429, 1.6, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000638', 'GourmetKitchen SwiftRun Running Shoes', 'Supplier5',45.77,'GourmetKitchen SwiftRun Running Shoes - High quality and reliable', 68.66, 906, 2.9, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000639', 'Liteware MorningBrew Coffee Maker', 'Supplier4',21.53,'Liteware MorningBrew Coffee Maker - High quality and reliable', 32.3, 791, 4.3, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000640', 'GourmetKitchen ProTennis Racket', 'Supplier4',151.96,'GourmetKitchen ProTennis Racket - High quality and reliable', 227.94, 54, 4.2, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000641', 'GourmetKitchen MorningBrew Coffee Maker', 'Supplier2',84.85,'GourmetKitchen MorningBrew Coffee Maker - High quality and reliable', 127.27, 675, 3.8, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000642', 'StyleCraft Mystery of the Old Mansion', 'Supplier3',25.59,'StyleCraft Mystery of the Old Mansion - High quality and reliable', 38.38, 847, 3.1, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000643', 'FunPlay Space Ranger Action Figure', 'Supplier5',34.76,'FunPlay Space Ranger Action Figure - High quality and reliable', 52.14, 205, 1.1, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000644', 'ActiveGear X-Phone', 'Supplier1',558.51,'ActiveGear X-Phone - High quality and reliable', 837.76, 704, 3.5, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000645', 'StyleCraft Elegance Perfume', 'Supplier4',45.28,'StyleCraft Elegance Perfume - High quality and reliable', 67.92, 378, 2.1, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000646', 'GourmetKitchen Princess Bella Doll', 'Supplier4',12.9,'GourmetKitchen Princess Bella Doll - High quality and reliable', 19.35, 829, 1.9, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000647', 'PureBeauty Galaxy Quest', 'Supplier3',31.39,'PureBeauty Galaxy Quest - High quality and reliable', 47.09, 30, 2.3, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000648', 'GourmetKitchen GlossyShine Shampoo', 'Supplier4',8.22,'GourmetKitchen GlossyShine Shampoo - High quality and reliable', 12.33, 357, 3.2, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000649', 'ActiveGear SkyDunk Basketball', 'Supplier3',29.3,'ActiveGear SkyDunk Basketball - High quality and reliable', 43.95, 274, 4.9, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000650', 'Liteware Elegant Dress', 'Supplier1',56.99,'Liteware Elegant Dress - High quality and reliable', 85.48, 208, 2, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000651', 'PureBeauty Ultimate Football', 'Supplier3',57.75,'PureBeauty Ultimate Football - High quality and reliable', 86.62, 938, 1.1, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000652', 'ActiveGear Elegance Perfume', 'Supplier1',63.68,'ActiveGear Elegance Perfume - High quality and reliable', 95.52, 868, 3.1, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000653', 'Liteware SuperBlend Blender', 'Supplier1',61.7,'Liteware SuperBlend Blender - High quality and reliable', 92.55, 796, 2.2, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000654', 'StyleCraft BrainyPuzzle', 'Supplier2',97.11,'StyleCraft BrainyPuzzle - High quality and reliable', 145.66, 517, 3, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000655', 'PureBeauty Elegant Dress', 'Supplier2',54.66,'PureBeauty Elegant Dress - High quality and reliable', 81.99, 728, 1.4, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000656', 'GourmetKitchen Ultimate Football', 'Supplier1',20.05,'GourmetKitchen Ultimate Football - High quality and reliable', 30.08, 59, 3.7, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000657', 'StyleCraft SkyDunk Basketball', 'Supplier5',101.89,'StyleCraft SkyDunk Basketball - High quality and reliable', 152.84, 963, 3.4, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000658', 'FunPlay Chef''s Delights', 'Supplier4',25.48,'FunPlay Chef''s Delights - High quality and reliable', 38.22, 891, 2.8, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000659', 'Liteware SilkyHair Hair Dryer', 'Supplier2',45.69,'Liteware SilkyHair Hair Dryer - High quality and reliable', 68.53, 270, 3.4, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000660', 'GourmetKitchen Galaxy Quest', 'Supplier5',12.59,'GourmetKitchen Galaxy Quest - High quality and reliable', 18.88, 334, 2.5, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000661', 'FunPlay NatureSkin Skincare Set', 'Supplier5',102.76,'FunPlay NatureSkin Skincare Set - High quality and reliable', 154.14, 546, 2.5, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000662', 'Techtronics GlamUp Makeup Kit', 'Supplier3',9.54,'Techtronics GlamUp Makeup Kit - High quality and reliable', 14.31, 725, 4.2, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000663', 'FunPlay The Life of Visionaries', 'Supplier5',9.81,'FunPlay The Life of Visionaries - High quality and reliable', 14.71, 729, 2.6, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000664', 'GourmetKitchen Classic Tee', 'Supplier3',27.51,'GourmetKitchen Classic Tee - High quality and reliable', 41.27, 143, 4.3, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000665', 'ActiveGear SpaceWars Video Game', 'Supplier4',103.13,'ActiveGear SpaceWars Video Game - High quality and reliable', 154.69, 811, 2, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000666', 'ActiveGear ChefMaster Cookware Set', 'Supplier1',135.25,'ActiveGear ChefMaster Cookware Set - High quality and reliable', 202.88, 610, 4.3, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000667', 'StyleCraft Elegance Perfume', 'Supplier1',45.13,'StyleCraft Elegance Perfume - High quality and reliable', 67.7, 252, 3.8, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000668', 'PureBeauty CrystalClear 4K TV', 'Supplier4',980.51,'PureBeauty CrystalClear 4K TV - High quality and reliable', 1470.76, 198, 4.9, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000669', 'Liteware ChefMaster Cookware Set', 'Supplier4',175.88,'Liteware ChefMaster Cookware Set - High quality and reliable', 263.82, 775, 3.7, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000670', 'Liteware SkyDunk Basketball', 'Supplier3',55.8,'Liteware SkyDunk Basketball - High quality and reliable', 83.7, 300, 4.2, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000671', 'Liteware WristTech Smartwatch', 'Supplier4',463.8,'Liteware WristTech Smartwatch - High quality and reliable', 695.7, 682, 4.3, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000672', 'GourmetKitchen BlueSound Headphones', 'Supplier5',796.92,'GourmetKitchen BlueSound Headphones - High quality and reliable', 1195.38, 924, 3.4, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000673', 'FunPlay X-Phone', 'Supplier3',427.92,'FunPlay X-Phone - High quality and reliable', 641.88, 503, 4.2, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000674', 'Liteware Galaxy Quest', 'Supplier3',25.07,'Liteware Galaxy Quest - High quality and reliable', 37.61, 182, 1.6, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000675', 'ActiveGear SpaceWars Video Game', 'Supplier3',96.06,'ActiveGear SpaceWars Video Game - High quality and reliable', 144.09, 448, 3.5, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000676', 'PureBeauty SilkyHair Hair Dryer', 'Supplier5',49.41,'PureBeauty SilkyHair Hair Dryer - High quality and reliable', 74.11, 923, 4.4, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000677', 'ActiveGear SuperBlend Blender', 'Supplier1',56.88,'ActiveGear SuperBlend Blender - High quality and reliable', 85.32, 788, 1.7, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000678', 'StyleCraft BlueSound Headphones', 'Supplier2',321.17,'StyleCraft BlueSound Headphones - High quality and reliable', 481.75, 386, 1.8, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000679', 'FunPlay CrystalClear 4K TV', 'Supplier4',958.08,'FunPlay CrystalClear 4K TV - High quality and reliable', 1437.12, 894, 1.7, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000680', 'StyleCraft Chef''s Delights', 'Supplier5',11.27,'StyleCraft Chef''s Delights - High quality and reliable', 16.91, 84, 2.3, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000681', 'FunPlay Princess Bella Doll', 'Supplier4',33.23,'FunPlay Princess Bella Doll - High quality and reliable', 49.84, 967, 3.5, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000682', 'GourmetKitchen SkyDunk Basketball', 'Supplier1',135.51,'GourmetKitchen SkyDunk Basketball - High quality and reliable', 203.26, 265, 2.8, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000683', 'PureBeauty SpaceWars Video Game', 'Supplier4',85.43,'PureBeauty SpaceWars Video Game - High quality and reliable', 128.15, 187, 1.4, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000684', 'Liteware ProTennis Racket', 'Supplier1',135.4,'Liteware ProTennis Racket - High quality and reliable', 203.1, 85, 2.7, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000685', 'PureBeauty MorningBrew Coffee Maker', 'Supplier4',44.75,'PureBeauty MorningBrew Coffee Maker - High quality and reliable', 67.12, 422, 2.2, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000686', 'PureBeauty Space Ranger Action Figure', 'Supplier4',87.99,'PureBeauty Space Ranger Action Figure - High quality and reliable', 131.98, 869, 3.6, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000687', 'StyleCraft NatureSkin Skincare Set', 'Supplier3',59.29,'StyleCraft NatureSkin Skincare Set - High quality and reliable', 88.94, 588, 2.6, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000688', 'Liteware CrystalClear 4K TV', 'Supplier1',399.51,'Liteware CrystalClear 4K TV - High quality and reliable', 599.26, 379, 2.6, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000689', 'StyleCraft ZenYoga Mat', 'Supplier3',98.82,'StyleCraft ZenYoga Mat - High quality and reliable', 148.23, 23, 2.9, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000690', 'StyleCraft Comfy Sweater', 'Supplier3',20.04,'StyleCraft Comfy Sweater - High quality and reliable', 30.06, 742, 2.2, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000691', 'Techtronics ZenYoga Mat', 'Supplier5',49.68,'Techtronics ZenYoga Mat - High quality and reliable', 74.52, 668, 1.6, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000692', 'FunPlay CrystalClear 4K TV', 'Supplier2',329.74,'FunPlay CrystalClear 4K TV - High quality and reliable', 494.61, 338, 4.6, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000693', 'FunPlay Z-Laptop', 'Supplier4',171.01,'FunPlay Z-Laptop - High quality and reliable', 256.51, 487, 4.6, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000694', 'FunPlay Time''s Echo', 'Supplier3',32.4,'FunPlay Time''s Echo - High quality and reliable', 48.6, 217, 4.6, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000695', 'ActiveGear Classic Tee', 'Supplier4',42.38,'ActiveGear Classic Tee - High quality and reliable', 63.57, 118, 2.6, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000696', 'Liteware WristTech Smartwatch', 'Supplier2',240.37,'Liteware WristTech Smartwatch - High quality and reliable', 360.56, 749, 2.7, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000697', 'Techtronics ProTennis Racket', 'Supplier2',144.13,'Techtronics ProTennis Racket - High quality and reliable', 216.19, 734, 4.6, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000698', 'FunPlay Princess Bella Doll', 'Supplier5',71.1,'FunPlay Princess Bella Doll - High quality and reliable', 106.65, 169, 2, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000699', 'StyleCraft BrainyPuzzle', 'Supplier4',70.25,'StyleCraft BrainyPuzzle - High quality and reliable', 105.38, 64, 2.7, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000700', 'PureBeauty MorningBrew Coffee Maker', 'Supplier2',179.91,'PureBeauty MorningBrew Coffee Maker - High quality and reliable', 269.87, 214, 2.2, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000701', 'ActiveGear Mystery of the Old Mansion', 'Supplier4',23.57,'ActiveGear Mystery of the Old Mansion - High quality and reliable', 35.36, 259, 2.7, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000702', 'ActiveGear SpaceWars Video Game', 'Supplier1',100.42,'ActiveGear SpaceWars Video Game - High quality and reliable', 150.63, 650, 4, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000703', 'StyleCraft Elegant Dress', 'Supplier1',139.51,'StyleCraft Elegant Dress - High quality and reliable', 209.26, 803, 2.2, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000704', 'FunPlay MorningBrew Coffee Maker', 'Supplier1',34.77,'FunPlay MorningBrew Coffee Maker - High quality and reliable', 52.16, 957, 2.3, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000705', 'Techtronics Classic Tee', 'Supplier1',29.73,'Techtronics Classic Tee - High quality and reliable', 44.59, 510, 1.8, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000706', 'ActiveGear Ultimate Football', 'Supplier1',124.32,'ActiveGear Ultimate Football - High quality and reliable', 186.48, 349, 3, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000707', 'PureBeauty GlossyShine Shampoo', 'Supplier1',11.94,'PureBeauty GlossyShine Shampoo - High quality and reliable', 17.91, 88, 3, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000708', 'PureBeauty Urban Jeans', 'Supplier2',45.82,'PureBeauty Urban Jeans - High quality and reliable', 68.73, 920, 2, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000709', 'StyleCraft BrainyPuzzle', 'Supplier4',22.73,'StyleCraft BrainyPuzzle - High quality and reliable', 34.09, 931, 3.3, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000710', 'PureBeauty MorningBrew Coffee Maker', 'Supplier1',190.83,'PureBeauty MorningBrew Coffee Maker - High quality and reliable', 286.25, 46, 3.8, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000711', 'PureBeauty SilkyHair Hair Dryer', 'Supplier4',36.29,'PureBeauty SilkyHair Hair Dryer - High quality and reliable', 54.44, 185, 3, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000712', 'FunPlay SuperBlend Blender', 'Supplier4',28.74,'FunPlay SuperBlend Blender - High quality and reliable', 43.11, 898, 3.6, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000713', 'PureBeauty GlossyShine Shampoo', 'Supplier2',49.29,'PureBeauty GlossyShine Shampoo - High quality and reliable', 73.94, 496, 3.5, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000714', 'Techtronics QuickToast Toaster', 'Supplier4',132.73,'Techtronics QuickToast Toaster - High quality and reliable', 199.09, 325, 3.3, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000715', 'FunPlay GlossyShine Shampoo', 'Supplier5',83.57,'FunPlay GlossyShine Shampoo - High quality and reliable', 125.35, 344, 3.2, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000716', 'Liteware Kingdom Quest Board Game', 'Supplier3',18.11,'Liteware Kingdom Quest Board Game - High quality and reliable', 27.16, 394, 1.4, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000717', 'FunPlay X-Phone', 'Supplier1',582.22,'FunPlay X-Phone - High quality and reliable', 873.33, 942, 2.7, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000718', 'Liteware Elegance Perfume', 'Supplier3',11.99,'Liteware Elegance Perfume - High quality and reliable', 17.98, 573, 2.5, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000719', 'PureBeauty Space Ranger Action Figure', 'Supplier4',63.94,'PureBeauty Space Ranger Action Figure - High quality and reliable', 95.91, 109, 4.3, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000720', 'ActiveGear BrainyPuzzle', 'Supplier2',33.42,'ActiveGear BrainyPuzzle - High quality and reliable', 50.13, 708, 2.1, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000721', 'PureBeauty Comfy Sweater', 'Supplier1',116.52,'PureBeauty Comfy Sweater - High quality and reliable', 174.78, 784, 1.5, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000722', 'ActiveGear Mystery of the Old Mansion', 'Supplier2',25.88,'ActiveGear Mystery of the Old Mansion - High quality and reliable', 38.82, 88, 4.1, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000723', 'FunPlay NatureSkin Skincare Set', 'Supplier2',54.9,'FunPlay NatureSkin Skincare Set - High quality and reliable', 82.35, 712, 2.5, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000724', 'PureBeauty SuperBlend Blender', 'Supplier2',24.14,'PureBeauty SuperBlend Blender - High quality and reliable', 36.21, 174, 1.6, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000725', 'ActiveGear GlossyShine Shampoo', 'Supplier4',89.75,'ActiveGear GlossyShine Shampoo - High quality and reliable', 134.62, 876, 2.8, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000726', 'GourmetKitchen Z-Laptop', 'Supplier5',847.03,'GourmetKitchen Z-Laptop - High quality and reliable', 1270.55, 180, 2.4, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000727', 'PureBeauty PrecisionKnife Set', 'Supplier4',36.36,'PureBeauty PrecisionKnife Set - High quality and reliable', 54.54, 340, 4.7, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000728', 'Liteware Kingdom Quest Board Game', 'Supplier3',10.35,'Liteware Kingdom Quest Board Game - High quality and reliable', 15.52, 165, 1.7, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000729', 'Liteware NatureSkin Skincare Set', 'Supplier3',63.61,'Liteware NatureSkin Skincare Set - High quality and reliable', 95.41, 425, 3.7, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000730', 'Techtronics GlossyShine Shampoo', 'Supplier1',39.1,'Techtronics GlossyShine Shampoo - High quality and reliable', 58.65, 727, 1.6, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000731', 'StyleCraft Princess Bella Doll', 'Supplier4',55.16,'StyleCraft Princess Bella Doll - High quality and reliable', 82.74, 340, 3.5, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000732', 'PureBeauty Kingdom Quest Board Game', 'Supplier5',99.13,'PureBeauty Kingdom Quest Board Game - High quality and reliable', 148.69, 723, 3.9, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000733', 'Liteware SuperBlend Blender', 'Supplier5',149.31,'Liteware SuperBlend Blender - High quality and reliable', 223.97, 497, 4, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000734', 'GourmetKitchen SkyDunk Basketball', 'Supplier1',41.6,'GourmetKitchen SkyDunk Basketball - High quality and reliable', 62.4, 168, 3.2, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000735', 'ActiveGear ChefMaster Cookware Set', 'Supplier3',79.97,'ActiveGear ChefMaster Cookware Set - High quality and reliable', 119.95, 631, 3.3, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000736', 'PureBeauty CrystalClear 4K TV', 'Supplier4',540.66,'PureBeauty CrystalClear 4K TV - High quality and reliable', 810.99, 373, 1.7, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000737', 'ActiveGear GlossyShine Shampoo', 'Supplier2',6.63,'ActiveGear GlossyShine Shampoo - High quality and reliable', 9.95, 772, 2.8, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000738', 'ActiveGear Elegant Dress', 'Supplier3',83.49,'ActiveGear Elegant Dress - High quality and reliable', 125.23, 180, 1.9, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000739', 'Liteware SilkyHair Hair Dryer', 'Supplier4',6.42,'Liteware SilkyHair Hair Dryer - High quality and reliable', 9.63, 433, 3, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000740', 'Liteware BlueSound Headphones', 'Supplier4',1012.05,'Liteware BlueSound Headphones - High quality and reliable', 1518.07, 961, 4.1, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000741', 'GourmetKitchen SilkyHair Hair Dryer', 'Supplier4',44.84,'GourmetKitchen SilkyHair Hair Dryer - High quality and reliable', 67.26, 413, 2.6, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000742', 'StyleCraft SilkyHair Hair Dryer', 'Supplier4',101.05,'StyleCraft SilkyHair Hair Dryer - High quality and reliable', 151.57, 388, 4.3, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000743', 'StyleCraft Z-Laptop', 'Supplier5',559.3,'StyleCraft Z-Laptop - High quality and reliable', 838.95, 605, 2.3, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000744', 'GourmetKitchen Time''s Echo', 'Supplier3',18.54,'GourmetKitchen Time''s Echo - High quality and reliable', 27.81, 487, 2.1, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000745', 'FunPlay BrainyPuzzle', 'Supplier3',57.44,'FunPlay BrainyPuzzle - High quality and reliable', 86.16, 423, 3.4, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000746', 'ActiveGear Space Ranger Action Figure', 'Supplier2',11.38,'ActiveGear Space Ranger Action Figure - High quality and reliable', 17.07, 648, 1, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000747', 'ActiveGear WristTech Smartwatch', 'Supplier3',783.32,'ActiveGear WristTech Smartwatch - High quality and reliable', 1174.98, 852, 3.5, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000748', 'Liteware GlamUp Makeup Kit', 'Supplier3',73.08,'Liteware GlamUp Makeup Kit - High quality and reliable', 109.62, 702, 4.4, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000749', 'Liteware ZenYoga Mat', 'Supplier2',91.08,'Liteware ZenYoga Mat - High quality and reliable', 136.62, 811, 2.5, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000750', 'FunPlay Chef''s Delights', 'Supplier3',11.95,'FunPlay Chef''s Delights - High quality and reliable', 17.92, 176, 2.8, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000751', 'Techtronics Chef''s Delights', 'Supplier5',28.55,'Techtronics Chef''s Delights - High quality and reliable', 42.83, 556, 4, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000752', 'ActiveGear WristTech Smartwatch', 'Supplier3',169.7,'ActiveGear WristTech Smartwatch - High quality and reliable', 254.55, 238, 2.8, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000753', 'Techtronics Chef''s Delights', 'Supplier4',14.85,'Techtronics Chef''s Delights - High quality and reliable', 22.27, 686, 3.2, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000754', 'Techtronics PrecisionKnife Set', 'Supplier2',197.43,'Techtronics PrecisionKnife Set - High quality and reliable', 296.14, 567, 4.5, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000755', 'Liteware Mystery of the Old Mansion', 'Supplier5',16.23,'Liteware Mystery of the Old Mansion - High quality and reliable', 24.34, 997, 3, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000756', 'Liteware X-Phone', 'Supplier5',875.4,'Liteware X-Phone - High quality and reliable', 1313.1, 150, 1.7, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000757', 'PureBeauty Winter Jacket', 'Supplier3',66.32,'PureBeauty Winter Jacket - High quality and reliable', 99.48, 789, 3.8, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000758', 'PureBeauty CrystalClear 4K TV', 'Supplier2',382.9,'PureBeauty CrystalClear 4K TV - High quality and reliable', 574.35, 295, 4.5, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000759', 'PureBeauty Z-Laptop', 'Supplier2',276.89,'PureBeauty Z-Laptop - High quality and reliable', 415.33, 209, 1.1, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000760', 'PureBeauty BrainyPuzzle', 'Supplier1',16.39,'PureBeauty BrainyPuzzle - High quality and reliable', 24.59, 80, 3.8, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000761', 'Techtronics Winter Jacket', 'Supplier5',35.98,'Techtronics Winter Jacket - High quality and reliable', 53.97, 465, 4.7, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000762', 'Liteware Chef''s Delights', 'Supplier3',32.65,'Liteware Chef''s Delights - High quality and reliable', 48.97, 196, 4.1, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000763', 'ActiveGear The Life of Visionaries', 'Supplier2',18.59,'ActiveGear The Life of Visionaries - High quality and reliable', 27.88, 186, 3.1, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000764', 'PureBeauty Elegance Perfume', 'Supplier5',89.26,'PureBeauty Elegance Perfume - High quality and reliable', 133.89, 336, 2.6, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000765', 'ActiveGear PrecisionKnife Set', 'Supplier4',190.07,'ActiveGear PrecisionKnife Set - High quality and reliable', 285.11, 225, 3.6, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000766', 'GourmetKitchen Elegance Perfume', 'Supplier4',82.98,'GourmetKitchen Elegance Perfume - High quality and reliable', 124.47, 747, 3.4, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000767', 'Liteware Space Ranger Action Figure', 'Supplier1',48.52,'Liteware Space Ranger Action Figure - High quality and reliable', 72.78, 581, 2.7, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000768', 'Techtronics ZenYoga Mat', 'Supplier3',106.73,'Techtronics ZenYoga Mat - High quality and reliable', 160.09, 984, 4.2, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000769', 'PureBeauty GlossyShine Shampoo', 'Supplier4',31.17,'PureBeauty GlossyShine Shampoo - High quality and reliable', 46.76, 904, 3.6, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000770', 'Techtronics BrainyPuzzle', 'Supplier5',91.71,'Techtronics BrainyPuzzle - High quality and reliable', 137.56, 128, 3.9, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000771', 'ActiveGear BlueSound Headphones', 'Supplier1',930.17,'ActiveGear BlueSound Headphones - High quality and reliable', 1395.25, 509, 4.1, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000772', 'StyleCraft X-Phone', 'Supplier5',107.4,'StyleCraft X-Phone - High quality and reliable', 161.1, 834, 2.5, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000773', 'Liteware NatureSkin Skincare Set', 'Supplier4',79.86,'Liteware NatureSkin Skincare Set - High quality and reliable', 119.79, 355, 3.5, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000774', 'Techtronics Galaxy Quest', 'Supplier2',12.45,'Techtronics Galaxy Quest - High quality and reliable', 18.67, 429, 3, 'Techtronics', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000775', 'Liteware NatureSkin Skincare Set', 'Supplier2',100.46,'Liteware NatureSkin Skincare Set - High quality and reliable', 150.69, 451, 1.4, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000776', 'GourmetKitchen NatureSkin Skincare Set', 'Supplier5',7.91,'GourmetKitchen NatureSkin Skincare Set - High quality and reliable', 11.87, 125, 4.4, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000777', 'GourmetKitchen SuperBlend Blender', 'Supplier3',29.68,'GourmetKitchen SuperBlend Blender - High quality and reliable', 44.52, 681, 3.5, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000778', 'StyleCraft SpaceWars Video Game', 'Supplier1',73.93,'StyleCraft SpaceWars Video Game - High quality and reliable', 110.9, 405, 4.8, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000779', 'PureBeauty Time''s Echo', 'Supplier5',31,'PureBeauty Time''s Echo - High quality and reliable', 46.5, 539, 1.3, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000780', 'Techtronics SilkyHair Hair Dryer', 'Supplier5',65.14,'Techtronics SilkyHair Hair Dryer - High quality and reliable', 97.71, 96, 3.2, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000781', 'Techtronics Winter Jacket', 'Supplier4',90.48,'Techtronics Winter Jacket - High quality and reliable', 135.72, 477, 4.4, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000782', 'Liteware Urban Jeans', 'Supplier2',63.54,'Liteware Urban Jeans - High quality and reliable', 95.31, 587, 3.4, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000783', 'FunPlay SkyDunk Basketball', 'Supplier2',77.1,'FunPlay SkyDunk Basketball - High quality and reliable', 115.65, 909, 3.2, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000784', 'GourmetKitchen Urban Jeans', 'Supplier5',64.72,'GourmetKitchen Urban Jeans - High quality and reliable', 97.08, 331, 1, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000785', 'FunPlay Mystery of the Old Mansion', 'Supplier2',18.42,'FunPlay Mystery of the Old Mansion - High quality and reliable', 27.63, 480, 3.6, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000786', 'Liteware SpaceWars Video Game', 'Supplier2',47.51,'Liteware SpaceWars Video Game - High quality and reliable', 71.27, 157, 2.6, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000787', 'FunPlay Z-Laptop', 'Supplier4',461.13,'FunPlay Z-Laptop - High quality and reliable', 691.69, 509, 3.5, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000788', 'GourmetKitchen Galaxy Quest', 'Supplier1',15.1,'GourmetKitchen Galaxy Quest - High quality and reliable', 22.65, 527, 3.7, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000789', 'PureBeauty GlossyShine Shampoo', 'Supplier5',71.11,'PureBeauty GlossyShine Shampoo - High quality and reliable', 106.66, 389, 4.7, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000790', 'GourmetKitchen ProTennis Racket', 'Supplier5',170.09,'GourmetKitchen ProTennis Racket - High quality and reliable', 255.13, 631, 4.4, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000791', 'ActiveGear Space Ranger Action Figure', 'Supplier3',55.46,'ActiveGear Space Ranger Action Figure - High quality and reliable', 83.19, 705, 2.3, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000792', 'Techtronics ProTennis Racket', 'Supplier1',74.74,'Techtronics ProTennis Racket - High quality and reliable', 112.11, 798, 2.9, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000793', 'FunPlay CrystalClear 4K TV', 'Supplier4',769.27,'FunPlay CrystalClear 4K TV - High quality and reliable', 1153.9, 893, 4.6, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000794', 'ActiveGear ZenYoga Mat', 'Supplier3',162.12,'ActiveGear ZenYoga Mat - High quality and reliable', 243.18, 319, 1.6, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000795', 'GourmetKitchen CrystalClear 4K TV', 'Supplier5',725.05,'GourmetKitchen CrystalClear 4K TV - High quality and reliable', 1087.57, 387, 3.9, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000796', 'PureBeauty MorningBrew Coffee Maker', 'Supplier4',24.77,'PureBeauty MorningBrew Coffee Maker - High quality and reliable', 37.16, 493, 2.5, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000797', 'GourmetKitchen Mystery of the Old Mansion', 'Supplier2',23.82,'GourmetKitchen Mystery of the Old Mansion - High quality and reliable', 35.73, 961, 4.5, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000798', 'Techtronics SwiftRun Running Shoes', 'Supplier5',172,'Techtronics SwiftRun Running Shoes - High quality and reliable', 258, 227, 3.5, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000799', 'PureBeauty MorningBrew Coffee Maker', 'Supplier3',137.48,'PureBeauty MorningBrew Coffee Maker - High quality and reliable', 206.22, 518, 4.7, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000800', 'Liteware X-Phone', 'Supplier1',661.48,'Liteware X-Phone - High quality and reliable', 992.22, 395, 1, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000801', 'Liteware Z-Laptop', 'Supplier5',326.83,'Liteware Z-Laptop - High quality and reliable', 490.25, 812, 5, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000802', 'FunPlay MorningBrew Coffee Maker', 'Supplier1',138.71,'FunPlay MorningBrew Coffee Maker - High quality and reliable', 208.06, 632, 1, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000803', 'FunPlay Classic Tee', 'Supplier3',38.24,'FunPlay Classic Tee - High quality and reliable', 57.36, 255, 2.3, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000804', 'GourmetKitchen Chef''s Delights', 'Supplier1',30.89,'GourmetKitchen Chef''s Delights - High quality and reliable', 46.34, 803, 1.7, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000805', 'Liteware Comfy Sweater', 'Supplier4',30.28,'Liteware Comfy Sweater - High quality and reliable', 45.42, 429, 4, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000806', 'Liteware Urban Jeans', 'Supplier1',35.49,'Liteware Urban Jeans - High quality and reliable', 53.23, 75, 4.3, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000807', 'Liteware SpaceWars Video Game', 'Supplier5',60.11,'Liteware SpaceWars Video Game - High quality and reliable', 90.16, 107, 3.6, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000808', 'FunPlay Mystery of the Old Mansion', 'Supplier3',10.89,'FunPlay Mystery of the Old Mansion - High quality and reliable', 16.34, 25, 5, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000809', 'GourmetKitchen The Life of Visionaries', 'Supplier4',11.11,'GourmetKitchen The Life of Visionaries - High quality and reliable', 16.66, 96, 2.2, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000810', 'PureBeauty Elegance Perfume', 'Supplier4',21.22,'PureBeauty Elegance Perfume - High quality and reliable', 31.83, 942, 4.5, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000811', 'PureBeauty Chef''s Delights', 'Supplier2',10.3,'PureBeauty Chef''s Delights - High quality and reliable', 15.45, 680, 1.7, 'PureBeauty', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000812', 'Liteware Princess Bella Doll', 'Supplier2',41.24,'Liteware Princess Bella Doll - High quality and reliable', 61.86, 356, 2.2, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000813', 'ActiveGear Elegant Dress', 'Supplier3',46.44,'ActiveGear Elegant Dress - High quality and reliable', 69.66, 337, 2.7, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000814', 'ActiveGear QuickToast Toaster', 'Supplier5',85.58,'ActiveGear QuickToast Toaster - High quality and reliable', 128.37, 473, 2.2, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000815', 'PureBeauty NatureSkin Skincare Set', 'Supplier5',96.89,'PureBeauty NatureSkin Skincare Set - High quality and reliable', 145.34, 616, 2.4, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000816', 'StyleCraft BlueSound Headphones', 'Supplier4',67.8,'StyleCraft BlueSound Headphones - High quality and reliable', 101.7, 540, 4.1, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000817', 'FunPlay Space Ranger Action Figure', 'Supplier4',100.04,'FunPlay Space Ranger Action Figure - High quality and reliable', 150.06, 406, 2.1, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000818', 'StyleCraft Classic Tee', 'Supplier5',40.62,'StyleCraft Classic Tee - High quality and reliable', 60.93, 625, 2.2, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000819', 'StyleCraft GlossyShine Shampoo', 'Supplier5',83.98,'StyleCraft GlossyShine Shampoo - High quality and reliable', 125.97, 249, 3.5, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000820', 'Techtronics SpaceWars Video Game', 'Supplier1',37.75,'Techtronics SpaceWars Video Game - High quality and reliable', 56.62, 852, 4.8, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000821', 'GourmetKitchen WristTech Smartwatch', 'Supplier1',778.16,'GourmetKitchen WristTech Smartwatch - High quality and reliable', 1167.24, 304, 3.7, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000822', 'ActiveGear WristTech Smartwatch', 'Supplier5',723.1,'ActiveGear WristTech Smartwatch - High quality and reliable', 1084.65, 621, 1.3, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000823', 'ActiveGear SilkyHair Hair Dryer', 'Supplier4',54.66,'ActiveGear SilkyHair Hair Dryer - High quality and reliable', 81.99, 401, 4.3, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000824', 'StyleCraft GlossyShine Shampoo', 'Supplier5',16.82,'StyleCraft GlossyShine Shampoo - High quality and reliable', 25.23, 970, 1.8, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000825', 'ActiveGear GlamUp Makeup Kit', 'Supplier4',103.35,'ActiveGear GlamUp Makeup Kit - High quality and reliable', 155.02, 797, 1.9, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000826', 'Liteware The Life of Visionaries', 'Supplier1',8.77,'Liteware The Life of Visionaries - High quality and reliable', 13.15, 522, 1.4, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000827', 'Liteware SwiftRun Running Shoes', 'Supplier4',131.3,'Liteware SwiftRun Running Shoes - High quality and reliable', 196.95, 600, 4, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000828', 'Liteware BlueSound Headphones', 'Supplier4',485.58,'Liteware BlueSound Headphones - High quality and reliable', 728.37, 423, 1.4, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000829', 'PureBeauty Space Ranger Action Figure', 'Supplier3',60.41,'PureBeauty Space Ranger Action Figure - High quality and reliable', 90.61, 418, 4.9, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000830', 'GourmetKitchen X-Phone', 'Supplier1',123.13,'GourmetKitchen X-Phone - High quality and reliable', 184.69, 451, 1.6, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000831', 'Liteware GlamUp Makeup Kit', 'Supplier2',101.24,'Liteware GlamUp Makeup Kit - High quality and reliable', 151.86, 932, 1.9, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000832', 'GourmetKitchen GlamUp Makeup Kit', 'Supplier2',79.38,'GourmetKitchen GlamUp Makeup Kit - High quality and reliable', 119.07, 530, 2.1, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000833', 'ActiveGear ProTennis Racket', 'Supplier5',138.48,'ActiveGear ProTennis Racket - High quality and reliable', 207.72, 298, 2.5, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000834', 'GourmetKitchen Z-Laptop', 'Supplier4',183.19,'GourmetKitchen Z-Laptop - High quality and reliable', 274.78, 816, 4.1, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000835', 'GourmetKitchen Princess Bella Doll', 'Supplier4',58.37,'GourmetKitchen Princess Bella Doll - High quality and reliable', 87.55, 946, 3.6, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000836', 'GourmetKitchen SpaceWars Video Game', 'Supplier5',8.07,'GourmetKitchen SpaceWars Video Game - High quality and reliable', 12.11, 594, 3.4, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000837', 'GourmetKitchen Classic Tee', 'Supplier5',24.51,'GourmetKitchen Classic Tee - High quality and reliable', 36.77, 615, 4, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000838', 'GourmetKitchen Classic Tee', 'Supplier1',112.94,'GourmetKitchen Classic Tee - High quality and reliable', 169.41, 533, 2.4, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000839', 'Liteware Z-Laptop', 'Supplier5',162.29,'Liteware Z-Laptop - High quality and reliable', 243.44, 35, 3.1, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000840', 'FunPlay Z-Laptop', 'Supplier3',409.09,'FunPlay Z-Laptop - High quality and reliable', 613.63, 258, 3.8, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000841', 'StyleCraft Z-Laptop', 'Supplier1',283.85,'StyleCraft Z-Laptop - High quality and reliable', 425.78, 438, 1.4, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000842', 'ActiveGear Chef''s Delights', 'Supplier5',14.3,'ActiveGear Chef''s Delights - High quality and reliable', 21.45, 322, 3.2, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000843', 'PureBeauty WristTech Smartwatch', 'Supplier1',978.44,'PureBeauty WristTech Smartwatch - High quality and reliable', 1467.66, 768, 3.4, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000844', 'Liteware PrecisionKnife Set', 'Supplier3',64.4,'Liteware PrecisionKnife Set - High quality and reliable', 96.6, 491, 4.7, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000845', 'StyleCraft BlueSound Headphones', 'Supplier2',427.89,'StyleCraft BlueSound Headphones - High quality and reliable', 641.84, 502, 4.5, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000846', 'Liteware Galaxy Quest', 'Supplier3',15.63,'Liteware Galaxy Quest - High quality and reliable', 23.45, 636, 1.7, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000847', 'StyleCraft GlamUp Makeup Kit', 'Supplier2',21,'StyleCraft GlamUp Makeup Kit - High quality and reliable', 31.5, 837, 1.3, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000848', 'StyleCraft CrystalClear 4K TV', 'Supplier2',941.34,'StyleCraft CrystalClear 4K TV - High quality and reliable', 1412.01, 519, 1.6, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000849', 'StyleCraft Kingdom Quest Board Game', 'Supplier2',68.3,'StyleCraft Kingdom Quest Board Game - High quality and reliable', 102.45, 870, 1.3, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000850', 'Techtronics SilkyHair Hair Dryer', 'Supplier1',18.85,'Techtronics SilkyHair Hair Dryer - High quality and reliable', 28.28, 496, 2.8, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000851', 'StyleCraft X-Phone', 'Supplier2',928,'StyleCraft X-Phone - High quality and reliable', 1392, 336, 4.5, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000852', 'FunPlay Elegance Perfume', 'Supplier3',86.1,'FunPlay Elegance Perfume - High quality and reliable', 129.15, 710, 1.9, 'FunPlay', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000853', 'Liteware NatureSkin Skincare Set', 'Supplier3',73.56,'Liteware NatureSkin Skincare Set - High quality and reliable', 110.34, 930, 1.8, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000854', 'Liteware Urban Jeans', 'Supplier4',96.57,'Liteware Urban Jeans - High quality and reliable', 144.85, 285, 2.3, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000855', 'Techtronics QuickToast Toaster', 'Supplier1',204.39,'Techtronics QuickToast Toaster - High quality and reliable', 306.58, 407, 2.4, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000856', 'StyleCraft SilkyHair Hair Dryer', 'Supplier3',40.1,'StyleCraft SilkyHair Hair Dryer - High quality and reliable', 60.15, 80, 4.8, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000857', 'Liteware Z-Laptop', 'Supplier5',671.9,'Liteware Z-Laptop - High quality and reliable', 1007.85, 68, 3.8, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000858', 'GourmetKitchen Chef''s Delights', 'Supplier3',19.6,'GourmetKitchen Chef''s Delights - High quality and reliable', 29.4, 224, 2.7, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000859', 'GourmetKitchen Space Ranger Action Figure', 'Supplier2',77.17,'GourmetKitchen Space Ranger Action Figure - High quality and reliable', 115.75, 994, 3.1, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000860', 'PureBeauty Z-Laptop', 'Supplier1',665.86,'PureBeauty Z-Laptop - High quality and reliable', 998.79, 835, 1.4, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000861', 'Liteware SpaceWars Video Game', 'Supplier1',36.07,'Liteware SpaceWars Video Game - High quality and reliable', 54.11, 560, 1.8, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000862', 'ActiveGear Ultimate Football', 'Supplier1',144.95,'ActiveGear Ultimate Football - High quality and reliable', 217.42, 188, 4.4, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000863', 'Liteware ChefMaster Cookware Set', 'Supplier2',182.42,'Liteware ChefMaster Cookware Set - High quality and reliable', 273.63, 12, 1.8, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000864', 'Liteware ProTennis Racket', 'Supplier4',156.92,'Liteware ProTennis Racket - High quality and reliable', 235.38, 590, 1.5, 'Liteware', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000865', 'StyleCraft PrecisionKnife Set', 'Supplier1',39.78,'StyleCraft PrecisionKnife Set - High quality and reliable', 59.67, 239, 1.9, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000866', 'Techtronics Comfy Sweater', 'Supplier3',130.29,'Techtronics Comfy Sweater - High quality and reliable', 195.44, 700, 4.9, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000867', 'Techtronics SwiftRun Running Shoes', 'Supplier4',87.54,'Techtronics SwiftRun Running Shoes - High quality and reliable', 131.31, 536, 4.9, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000868', 'GourmetKitchen ZenYoga Mat', 'Supplier1',128.48,'GourmetKitchen ZenYoga Mat - High quality and reliable', 192.72, 282, 1.6, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000869', 'StyleCraft SwiftRun Running Shoes', 'Supplier1',84.97,'StyleCraft SwiftRun Running Shoes - High quality and reliable', 127.45, 965, 3.9, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000870', 'PureBeauty SilkyHair Hair Dryer', 'Supplier1',92.16,'PureBeauty SilkyHair Hair Dryer - High quality and reliable', 138.24, 134, 1.6, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000871', 'Techtronics WristTech Smartwatch', 'Supplier5',826.97,'Techtronics WristTech Smartwatch - High quality and reliable', 1240.45, 316, 2.4, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000872', 'PureBeauty BrainyPuzzle', 'Supplier1',76.63,'PureBeauty BrainyPuzzle - High quality and reliable', 114.94, 695, 2.7, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000873', 'Techtronics SkyDunk Basketball', 'Supplier1',97.26,'Techtronics SkyDunk Basketball - High quality and reliable', 145.89, 171, 4.7, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000874', 'Liteware SuperBlend Blender', 'Supplier4',64.09,'Liteware SuperBlend Blender - High quality and reliable', 96.14, 280, 4.4, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000875', 'FunPlay BlueSound Headphones', 'Supplier5',807.64,'FunPlay BlueSound Headphones - High quality and reliable', 1211.46, 175, 1.4, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000876', 'Liteware Winter Jacket', 'Supplier3',70.94,'Liteware Winter Jacket - High quality and reliable', 106.41, 951, 1.3, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000877', 'FunPlay Classic Tee', 'Supplier3',29.11,'FunPlay Classic Tee - High quality and reliable', 43.66, 636, 3.1, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000878', 'ActiveGear Winter Jacket', 'Supplier4',79.47,'ActiveGear Winter Jacket - High quality and reliable', 119.2, 431, 2.9, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000879', 'Liteware The Life of Visionaries', 'Supplier1',22.28,'Liteware The Life of Visionaries - High quality and reliable', 33.42, 886, 1, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000880', 'StyleCraft The Life of Visionaries', 'Supplier4',15.2,'StyleCraft The Life of Visionaries - High quality and reliable', 22.8, 105, 4.5, 'StyleCraft', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000881', 'PureBeauty SwiftRun Running Shoes', 'Supplier2',74.27,'PureBeauty SwiftRun Running Shoes - High quality and reliable', 111.41, 96, 2.5, 'PureBeauty', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000882', 'ActiveGear Elegant Dress', 'Supplier4',33.85,'ActiveGear Elegant Dress - High quality and reliable', 50.78, 377, 1.8, 'ActiveGear', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000883', 'PureBeauty SpaceWars Video Game', 'Supplier1',56.28,'PureBeauty SpaceWars Video Game - High quality and reliable', 84.42, 54, 1.3, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000884', 'GourmetKitchen Classic Tee', 'Supplier1',137.25,'GourmetKitchen Classic Tee - High quality and reliable', 205.88, 266, 2.8, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000885', 'PureBeauty CrystalClear 4K TV', 'Supplier2',499.23,'PureBeauty CrystalClear 4K TV - High quality and reliable', 748.85, 359, 2.7, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000886', 'GourmetKitchen Winter Jacket', 'Supplier2',62.03,'GourmetKitchen Winter Jacket - High quality and reliable', 93.05, 306, 4.6, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000887', 'GourmetKitchen SkyDunk Basketball', 'Supplier4',149.3,'GourmetKitchen SkyDunk Basketball - High quality and reliable', 223.95, 489, 3.1, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000888', 'PureBeauty MorningBrew Coffee Maker', 'Supplier4',83.57,'PureBeauty MorningBrew Coffee Maker - High quality and reliable', 125.35, 828, 2.2, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000889', 'Liteware Z-Laptop', 'Supplier1',617.14,'Liteware Z-Laptop - High quality and reliable', 925.71, 102, 4.2, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000890', 'PureBeauty BlueSound Headphones', 'Supplier4',300.82,'PureBeauty BlueSound Headphones - High quality and reliable', 451.23, 739, 2.9, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000891', 'ActiveGear Chef''s Delights', 'Supplier2',14.47,'ActiveGear Chef''s Delights - High quality and reliable', 21.71, 926, 1.4, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000892', 'Liteware GlossyShine Shampoo', 'Supplier5',51.71,'Liteware GlossyShine Shampoo - High quality and reliable', 77.56, 77, 1.6, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000893', 'Liteware WristTech Smartwatch', 'Supplier5',460.25,'Liteware WristTech Smartwatch - High quality and reliable', 690.38, 766, 1.3, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000894', 'GourmetKitchen BlueSound Headphones', 'Supplier4',470.88,'GourmetKitchen BlueSound Headphones - High quality and reliable', 706.32, 544, 1.2, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000895', 'GourmetKitchen MorningBrew Coffee Maker', 'Supplier5',53.6,'GourmetKitchen MorningBrew Coffee Maker - High quality and reliable', 80.4, 839, 2.1, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000896', 'Liteware Comfy Sweater', 'Supplier1',132.89,'Liteware Comfy Sweater - High quality and reliable', 199.33, 459, 1, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000897', 'FunPlay QuickToast Toaster', 'Supplier5',175.72,'FunPlay QuickToast Toaster - High quality and reliable', 263.58, 558, 3.4, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000898', 'Techtronics Elegant Dress', 'Supplier5',27.03,'Techtronics Elegant Dress - High quality and reliable', 40.55, 789, 3.7, 'Techtronics', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000899', 'GourmetKitchen X-Phone', 'Supplier4',451.2,'GourmetKitchen X-Phone - High quality and reliable', 676.8, 279, 1.7, 'GourmetKitchen', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000900', 'PureBeauty QuickToast Toaster', 'Supplier1',33.64,'PureBeauty QuickToast Toaster - High quality and reliable', 50.46, 742, 1.7, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000901', 'GourmetKitchen ProTennis Racket', 'Supplier4',43.74,'GourmetKitchen ProTennis Racket - High quality and reliable', 65.61, 780, 2, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000902', 'GourmetKitchen Elegance Perfume', 'Supplier3',92.76,'GourmetKitchen Elegance Perfume - High quality and reliable', 139.14, 285, 3.3, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000903', 'PureBeauty Classic Tee', 'Supplier2',41.98,'PureBeauty Classic Tee - High quality and reliable', 62.97, 88, 3.1, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000904', 'GourmetKitchen The Life of Visionaries', 'Supplier1',25.64,'GourmetKitchen The Life of Visionaries - High quality and reliable', 38.46, 826, 1, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000905', 'PureBeauty SilkyHair Hair Dryer', 'Supplier3',28.89,'PureBeauty SilkyHair Hair Dryer - High quality and reliable', 43.34, 276, 1.1, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000906', 'GourmetKitchen QuickToast Toaster', 'Supplier4',177.43,'GourmetKitchen QuickToast Toaster - High quality and reliable', 266.14, 641, 2.8, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000907', 'FunPlay Chef''s Delights', 'Supplier3',14.68,'FunPlay Chef''s Delights - High quality and reliable', 22.02, 93, 1.8, 'FunPlay', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000908', 'FunPlay QuickToast Toaster', 'Supplier4',35.91,'FunPlay QuickToast Toaster - High quality and reliable', 53.86, 171, 3.8, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000909', 'GourmetKitchen Comfy Sweater', 'Supplier4',127.91,'GourmetKitchen Comfy Sweater - High quality and reliable', 191.87, 242, 3.8, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000910', 'Liteware Kingdom Quest Board Game', 'Supplier3',64.97,'Liteware Kingdom Quest Board Game - High quality and reliable', 97.45, 347, 2.7, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000911', 'PureBeauty WristTech Smartwatch', 'Supplier4',384.69,'PureBeauty WristTech Smartwatch - High quality and reliable', 577.03, 30, 3.4, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000912', 'GourmetKitchen PrecisionKnife Set', 'Supplier3',157.41,'GourmetKitchen PrecisionKnife Set - High quality and reliable', 236.12, 561, 2.1, 'GourmetKitchen', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000913', 'Liteware SilkyHair Hair Dryer', 'Supplier5',102.91,'Liteware SilkyHair Hair Dryer - High quality and reliable', 154.37, 390, 3.8, 'Liteware', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000914', 'Liteware The Life of Visionaries', 'Supplier5',23.32,'Liteware The Life of Visionaries - High quality and reliable', 34.98, 519, 4.4, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000915', 'Liteware CrystalClear 4K TV', 'Supplier3',874.07,'Liteware CrystalClear 4K TV - High quality and reliable', 1311.11, 288, 4.5, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000916', 'Liteware Classic Tee', 'Supplier4',22.61,'Liteware Classic Tee - High quality and reliable', 33.91, 945, 4.7, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000917', 'ActiveGear ProTennis Racket', 'Supplier4',113.01,'ActiveGear ProTennis Racket - High quality and reliable', 169.52, 761, 3.4, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000918', 'StyleCraft MorningBrew Coffee Maker', 'Supplier1',186.38,'StyleCraft MorningBrew Coffee Maker - High quality and reliable', 279.57, 245, 2.2, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000919', 'PureBeauty Classic Tee', 'Supplier4',13.35,'PureBeauty Classic Tee - High quality and reliable', 20.02, 278, 5, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000920', 'GourmetKitchen Chef''s Delights', 'Supplier4',10.74,'GourmetKitchen Chef''s Delights - High quality and reliable', 16.11, 770, 3.5, 'GourmetKitchen', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000921', 'StyleCraft SuperBlend Blender', 'Supplier2',175.26,'StyleCraft SuperBlend Blender - High quality and reliable', 262.89, 772, 2.7, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000922', 'Liteware Galaxy Quest', 'Supplier3',12.35,'Liteware Galaxy Quest - High quality and reliable', 18.52, 568, 3.4, 'Liteware', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000923', 'Techtronics X-Phone', 'Supplier3',994.78,'Techtronics X-Phone - High quality and reliable', 1492.17, 628, 2.5, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000924', 'FunPlay BrainyPuzzle', 'Supplier5',19.24,'FunPlay BrainyPuzzle - High quality and reliable', 28.86, 780, 3, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000925', 'GourmetKitchen GlossyShine Shampoo', 'Supplier1',90.22,'GourmetKitchen GlossyShine Shampoo - High quality and reliable', 135.33, 235, 2.5, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000926', 'Techtronics ProTennis Racket', 'Supplier2',19.25,'Techtronics ProTennis Racket - High quality and reliable', 28.88, 720, 1.4, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000927', 'ActiveGear Chef''s Delights', 'Supplier5',12.4,'ActiveGear Chef''s Delights - High quality and reliable', 18.6, 392, 2.6, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000928', 'GourmetKitchen SwiftRun Running Shoes', 'Supplier1',138.21,'GourmetKitchen SwiftRun Running Shoes - High quality and reliable', 207.31, 472, 4.4, 'GourmetKitchen', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000929', 'StyleCraft Classic Tee', 'Supplier3',130.07,'StyleCraft Classic Tee - High quality and reliable', 195.1, 758, 3.2, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000930', 'Techtronics GlamUp Makeup Kit', 'Supplier3',5.27,'Techtronics GlamUp Makeup Kit - High quality and reliable', 7.9, 145, 1.8, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000931', 'PureBeauty SilkyHair Hair Dryer', 'Supplier1',33.31,'PureBeauty SilkyHair Hair Dryer - High quality and reliable', 49.97, 397, 3.7, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000932', 'Liteware Urban Jeans', 'Supplier4',70,'Liteware Urban Jeans - High quality and reliable', 105, 535, 2.4, 'Liteware', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000933', 'PureBeauty Elegance Perfume', 'Supplier2',57.59,'PureBeauty Elegance Perfume - High quality and reliable', 86.39, 685, 3.4, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000934', 'StyleCraft PrecisionKnife Set', 'Supplier1',101.86,'StyleCraft PrecisionKnife Set - High quality and reliable', 152.79, 65, 1.9, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000935', 'Techtronics SuperBlend Blender', 'Supplier2',110.62,'Techtronics SuperBlend Blender - High quality and reliable', 165.93, 834, 2.1, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000936', 'StyleCraft Classic Tee', 'Supplier1',101.69,'StyleCraft Classic Tee - High quality and reliable', 152.53, 511, 3.9, 'StyleCraft', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000937', 'ActiveGear WristTech Smartwatch', 'Supplier3',234.91,'ActiveGear WristTech Smartwatch - High quality and reliable', 352.37, 280, 2.9, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000938', 'FunPlay Z-Laptop', 'Supplier2',582.84,'FunPlay Z-Laptop - High quality and reliable', 874.26, 944, 4.1, 'FunPlay', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000939', 'PureBeauty WristTech Smartwatch', 'Supplier3',728.37,'PureBeauty WristTech Smartwatch - High quality and reliable', 1092.56, 247, 2.1, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000940', 'StyleCraft SilkyHair Hair Dryer', 'Supplier5',48.61,'StyleCraft SilkyHair Hair Dryer - High quality and reliable', 72.91, 705, 1.6, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000941', 'StyleCraft GlossyShine Shampoo', 'Supplier2',59.38,'StyleCraft GlossyShine Shampoo - High quality and reliable', 89.07, 158, 4.5, 'StyleCraft', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000942', 'ActiveGear SilkyHair Hair Dryer', 'Supplier2',93.22,'ActiveGear SilkyHair Hair Dryer - High quality and reliable', 139.83, 311, 1.4, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000943', 'GourmetKitchen Elegant Dress', 'Supplier4',138.92,'GourmetKitchen Elegant Dress - High quality and reliable', 208.38, 267, 3.3, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000944', 'PureBeauty X-Phone', 'Supplier3',127.15,'PureBeauty X-Phone - High quality and reliable', 190.73, 177, 3.7, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000945', 'Techtronics ChefMaster Cookware Set', 'Supplier4',32.56,'Techtronics ChefMaster Cookware Set - High quality and reliable', 48.84, 290, 1.2, 'Techtronics', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000946', 'StyleCraft SwiftRun Running Shoes', 'Supplier5',47.43,'StyleCraft SwiftRun Running Shoes - High quality and reliable', 71.14, 215, 4.4, 'StyleCraft', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000947', 'ActiveGear GlossyShine Shampoo', 'Supplier3',33.13,'ActiveGear GlossyShine Shampoo - High quality and reliable', 49.7, 517, 2.3, 'ActiveGear', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000948', 'Techtronics Kingdom Quest Board Game', 'Supplier1',28.5,'Techtronics Kingdom Quest Board Game - High quality and reliable', 42.75, 476, 3.3, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000949', 'PureBeauty GlamUp Makeup Kit', 'Supplier5',57.8,'PureBeauty GlamUp Makeup Kit - High quality and reliable', 86.7, 941, 3.8, 'PureBeauty', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000950', 'GourmetKitchen Kingdom Quest Board Game', 'Supplier5',90.4,'GourmetKitchen Kingdom Quest Board Game - High quality and reliable', 135.6, 667, 1.1, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000951', 'Liteware Z-Laptop', 'Supplier3',411.21,'Liteware Z-Laptop - High quality and reliable', 616.81, 964, 4.9, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000952', 'ActiveGear BrainyPuzzle', 'Supplier3',78.41,'ActiveGear BrainyPuzzle - High quality and reliable', 117.61, 847, 2, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000953', 'FunPlay SwiftRun Running Shoes', 'Supplier3',89.91,'FunPlay SwiftRun Running Shoes - High quality and reliable', 134.87, 670, 3.8, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000954', 'StyleCraft X-Phone', 'Supplier3',480.94,'StyleCraft X-Phone - High quality and reliable', 721.41, 621, 1.6, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000955', 'Liteware QuickToast Toaster', 'Supplier3',28.53,'Liteware QuickToast Toaster - High quality and reliable', 42.8, 507, 3.2, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000956', 'Techtronics Princess Bella Doll', 'Supplier4',37.95,'Techtronics Princess Bella Doll - High quality and reliable', 56.93, 427, 3.1, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000957', 'FunPlay SkyDunk Basketball', 'Supplier3',53.72,'FunPlay SkyDunk Basketball - High quality and reliable', 80.58, 744, 3, 'FunPlay', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000958', 'Liteware PrecisionKnife Set', 'Supplier5',18.53,'Liteware PrecisionKnife Set - High quality and reliable', 27.8, 143, 4, 'Liteware', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000959', 'PureBeauty MorningBrew Coffee Maker', 'Supplier3',44.11,'PureBeauty MorningBrew Coffee Maker - High quality and reliable', 66.16, 211, 1.9, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000960', 'StyleCraft X-Phone', 'Supplier4',573.51,'StyleCraft X-Phone - High quality and reliable', 860.26, 143, 3.8, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000961', 'ActiveGear Space Ranger Action Figure', 'Supplier2',89.7,'ActiveGear Space Ranger Action Figure - High quality and reliable', 134.55, 927, 2.6, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000962', 'Liteware Z-Laptop', 'Supplier4',614.45,'Liteware Z-Laptop - High quality and reliable', 921.68, 142, 2.4, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000963', 'ActiveGear Princess Bella Doll', 'Supplier3',34.13,'ActiveGear Princess Bella Doll - High quality and reliable', 51.2, 844, 1.6, 'ActiveGear', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000964', 'PureBeauty PrecisionKnife Set', 'Supplier4',123.92,'PureBeauty PrecisionKnife Set - High quality and reliable', 185.88, 139, 2.5, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000965', 'Techtronics SkyDunk Basketball', 'Supplier2',121.32,'Techtronics SkyDunk Basketball - High quality and reliable', 181.98, 188, 3.3, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000966', 'Liteware BrainyPuzzle', 'Supplier2',97.17,'Liteware BrainyPuzzle - High quality and reliable', 145.75, 374, 1.8, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000967', 'Techtronics Princess Bella Doll', 'Supplier4',68.91,'Techtronics Princess Bella Doll - High quality and reliable', 103.36, 703, 1.3, 'Techtronics', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000968', 'FunPlay MorningBrew Coffee Maker', 'Supplier5',184.22,'FunPlay MorningBrew Coffee Maker - High quality and reliable', 276.33, 620, 3.9, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000969', 'Liteware SpaceWars Video Game', 'Supplier2',11.95,'Liteware SpaceWars Video Game - High quality and reliable', 17.92, 796, 1.1, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000970', 'Liteware X-Phone', 'Supplier5',660.9,'Liteware X-Phone - High quality and reliable', 991.35, 655, 2.6, 'Liteware', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000971', 'PureBeauty Elegant Dress', 'Supplier4',51.55,'PureBeauty Elegant Dress - High quality and reliable', 77.32, 538, 1.3, 'PureBeauty', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000972', 'FunPlay QuickToast Toaster', 'Supplier4',205.01,'FunPlay QuickToast Toaster - High quality and reliable', 307.51, 686, 2.4, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000973', 'Techtronics ZenYoga Mat', 'Supplier2',159.53,'Techtronics ZenYoga Mat - High quality and reliable', 239.3, 536, 1.8, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000974', 'Techtronics NatureSkin Skincare Set', 'Supplier3',26.45,'Techtronics NatureSkin Skincare Set - High quality and reliable', 39.67, 585, 3.1, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000975', 'Liteware Princess Bella Doll', 'Supplier5',94.62,'Liteware Princess Bella Doll - High quality and reliable', 141.93, 959, 3.2, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000976', 'FunPlay SpaceWars Video Game', 'Supplier4',43.35,'FunPlay SpaceWars Video Game - High quality and reliable', 65.03, 67, 3.1, 'FunPlay', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000977', 'StyleCraft MorningBrew Coffee Maker', 'Supplier4',38.09,'StyleCraft MorningBrew Coffee Maker - High quality and reliable', 57.14, 435, 1.7, 'StyleCraft', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000978', 'StyleCraft Z-Laptop', 'Supplier5',358.07,'StyleCraft Z-Laptop - High quality and reliable', 537.11, 122, 2.3, 'StyleCraft', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000979', 'Techtronics SwiftRun Running Shoes', 'Supplier4',15.48,'Techtronics SwiftRun Running Shoes - High quality and reliable', 23.22, 536, 3, 'Techtronics', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000980', 'ActiveGear Mystery of the Old Mansion', 'Supplier5',20.91,'ActiveGear Mystery of the Old Mansion - High quality and reliable', 31.37, 273, 1.3, 'ActiveGear', 'Books');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000981', 'Techtronics SilkyHair Hair Dryer', 'Supplier3',13.57,'Techtronics SilkyHair Hair Dryer - High quality and reliable', 20.36, 864, 4, 'Techtronics', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000982', 'PureBeauty WristTech Smartwatch', 'Supplier4',650.21,'PureBeauty WristTech Smartwatch - High quality and reliable', 975.32, 290, 2.8, 'PureBeauty', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000983', 'ActiveGear MorningBrew Coffee Maker', 'Supplier3',117.04,'ActiveGear MorningBrew Coffee Maker - High quality and reliable', 175.56, 710, 1.3, 'ActiveGear', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000984', 'FunPlay Comfy Sweater', 'Supplier4',124.06,'FunPlay Comfy Sweater - High quality and reliable', 186.09, 118, 1.2, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000985', 'ActiveGear Ultimate Football', 'Supplier3',163.49,'ActiveGear Ultimate Football - High quality and reliable', 245.24, 483, 1.9, 'ActiveGear', 'Sports');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000986', 'GourmetKitchen Winter Jacket', 'Supplier3',21.05,'GourmetKitchen Winter Jacket - High quality and reliable', 31.58, 457, 2.3, 'GourmetKitchen', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000987', 'GourmetKitchen Elegance Perfume', 'Supplier5',12.46,'GourmetKitchen Elegance Perfume - High quality and reliable', 18.69, 333, 4.2, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000988', 'PureBeauty SuperBlend Blender', 'Supplier3',81.49,'PureBeauty SuperBlend Blender - High quality and reliable', 122.23, 210, 4.8, 'PureBeauty', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000989', 'FunPlay MorningBrew Coffee Maker', 'Supplier4',100.32,'FunPlay MorningBrew Coffee Maker - High quality and reliable', 150.48, 594, 4.8, 'FunPlay', 'Home & Kitchen');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000990', 'GourmetKitchen Kingdom Quest Board Game', 'Supplier5',63.96,'GourmetKitchen Kingdom Quest Board Game - High quality and reliable', 95.94, 802, 2.2, 'GourmetKitchen', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000991', 'StyleCraft BrainyPuzzle', 'Supplier2',70.28,'StyleCraft BrainyPuzzle - High quality and reliable', 105.42, 743, 4.1, 'StyleCraft', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000992', 'GourmetKitchen Elegance Perfume', 'Supplier2',70.44,'GourmetKitchen Elegance Perfume - High quality and reliable', 105.66, 363, 2.3, 'GourmetKitchen', 'Beauty & Health');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000993', 'PureBeauty Princess Bella Doll', 'Supplier2',53.46,'PureBeauty Princess Bella Doll - High quality and reliable', 80.19, 731, 2.2, 'PureBeauty', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000994', 'FunPlay Winter Jacket', 'Supplier4',139.97,'FunPlay Winter Jacket - High quality and reliable', 209.95, 390, 4.8, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000995', 'Liteware Space Ranger Action Figure', 'Supplier2',45.62,'Liteware Space Ranger Action Figure - High quality and reliable', 68.43, 487, 1.7, 'Liteware', 'Toys & Games');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000996', 'ActiveGear WristTech Smartwatch', 'Supplier3',303.91,'ActiveGear WristTech Smartwatch - High quality and reliable', 455.87, 399, 4.3, 'ActiveGear', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000997', 'FunPlay Elegant Dress', 'Supplier4',82.77,'FunPlay Elegant Dress - High quality and reliable', 124.16, 746, 3.3, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000998', 'FunPlay Classic Tee', 'Supplier4',97.33,'FunPlay Classic Tee - High quality and reliable', 146, 944, 3.2, 'FunPlay', 'Clothing');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0000999', 'Techtronics BlueSound Headphones', 'Supplier3',146.58,'Techtronics BlueSound Headphones - High quality and reliable', 219.87, 613, 3.2, 'Techtronics', 'Electronics');
INSERT INTO inventory (product_id, name, supplier,supplier_price, description, price, quantity, rating, brand, category) VALUES ('X0001000', 'PureBeauty SpaceWars Video Game', 'Supplier2',74.49,'PureBeauty SpaceWars Video Game - High quality and reliable', 111.73, 851, 1.8, 'PureBeauty', 'Toys & Games');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000001', 'U0000057', 'X0000518', 19, '2024-01-01T18:34:52.056Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000002', 'U0000017', 'X0000009', 28, '2024-02-04T01:33:11.572Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000002', 'OR000002', 72.2, '2024-02-04T01:33:11.572Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000003', 'U0000048', 'X0000039', 55, '2023-12-22T14:38:07.651Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000003', 'OR000003', 290.73, '2023-12-22T14:38:07.651Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000003', 'OR000003', '9885 Priory Road', '2023-12-25T14:38:07.651Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000004', 'U0000067', 'X0000177', 5, '2024-01-10T12:26:03.936Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000004', 'OR000004', 110.46, '2024-01-10T12:26:03.936Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000004', 'OR000004', '6233 Elbert Mountains', '2024-01-11T12:26:03.936Z','2024-01-15T12:26:03.936Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000005', 'U0000050', 'X0000447', 24, '2024-03-23T14:51:22.965Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000006', 'U0000012', 'X0000700', 51, '2024-02-25T21:46:03.012Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000006', 'OR000006', 269.87, '2024-02-25T21:46:03.012Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000007', 'U0000044', 'X0000730', 20, '2023-11-25T16:45:30.258Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000007', 'OR000007', 58.65, '2023-11-25T16:45:30.258Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000007', 'OR000007', '12640 Olaf Hill', '2023-11-27T16:45:30.258Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000008', 'U0000016', 'X0000348', 12, '2024-03-05T14:42:06.130Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000008', 'OR000008', 193.77, '2024-03-05T14:42:06.130Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000008', 'OR000008', '714 N Cedar Street', '2024-03-06T14:42:06.130Z','2024-03-07T14:42:06.130Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000009', 'U0000026', 'X0000494', 27, '2024-02-25T09:32:49.005Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000010', 'U0000059', 'X0000378', 5, '2023-10-17T22:40:28.657Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000010', 'OR000010', 95.78, '2023-10-17T22:40:28.657Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000011', 'U0000067', 'X0000829', 72, '2024-02-01T07:41:07.392Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000011', 'OR000011', 90.61, '2024-02-01T07:41:07.392Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000011', 'OR000011', '6233 Elbert Mountains', '2024-02-02T07:41:07.392Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000012', 'U0000046', 'X0000586', 31, '2024-03-22T17:42:09.071Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000012', 'OR000012', 219.39, '2024-03-22T17:42:09.071Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000012', 'OR000012', '5563 Juniper Close', '2024-03-26T17:42:09.071Z','2024-03-27T17:42:09.071Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000013', 'U0000058', 'X0000140', 58, '2024-01-21T11:08:02.332Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000014', 'U0000005', 'X0000339', 13, '2024-03-01T20:30:54.893Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000014', 'OR000014', 54.97, '2024-03-01T20:30:54.893Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000015', 'U0000029', 'X0000573', 6, '2023-12-01T10:08:17.402Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000015', 'OR000015', 48.86, '2023-12-01T10:08:17.402Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000015', 'OR000015', '842 Nitzsche Knoll', '2023-12-06T10:08:17.402Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000016', 'U0000069', 'X0000383', 24, '2024-03-04T23:59:22.436Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000016', 'OR000016', 50.93, '2024-03-04T23:59:22.436Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000016', 'OR000016', '33085 Beatty Track', '2024-03-05T23:59:22.436Z','2024-03-10T23:59:22.436Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000017', 'U0000045', 'X0000827', 7, '2023-10-15T14:21:13.940Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000018', 'U0000003', 'X0000962', 9, '2024-03-29T12:01:58.946Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000018', 'OR000018', 921.68, '2024-03-29T12:01:58.946Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000019', 'U0000093', 'X0000271', 6, '2024-01-30T22:30:30.297Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000019', 'OR000019', 120.5, '2024-01-30T22:30:30.297Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000019', 'OR000019', '5140 Daisha Brook', '2024-02-01T22:30:30.297Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000020', 'U0000052', 'X0000174', 19, '2023-10-15T21:12:18.554Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000020', 'OR000020', 30.78, '2023-10-15T21:12:18.554Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000020', 'OR000020', '156 Park Crescent', '2023-10-18T21:12:18.554Z','2023-10-21T21:12:18.554Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000021', 'U0000040', 'X0000910', 9, '2024-02-09T15:09:16.732Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000022', 'U0000083', 'X0000578', 22, '2023-10-06T21:37:14.627Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000022', 'OR000022', 911.96, '2023-10-06T21:37:14.627Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000023', 'U0000038', 'X0000323', 6, '2023-10-11T20:24:56.939Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000023', 'OR000023', 130.73, '2023-10-11T20:24:56.939Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000023', 'OR000023', '44261 Maye Wells', '2023-10-13T20:24:56.939Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000024', 'U0000021', 'X0000780', 5, '2024-02-08T12:42:05.811Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000024', 'OR000024', 97.71, '2024-02-08T12:42:05.811Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000024', 'OR000024', '5955 S Market Street', '2024-02-09T12:42:05.811Z','2024-02-13T12:42:05.811Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000025', 'U0000044', 'X0000135', 10, '2024-01-23T02:57:46.918Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000026', 'U0000003', 'X0000962', 15, '2023-12-04T00:45:41.967Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000026', 'OR000026', 921.68, '2023-12-04T00:45:41.967Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000027', 'U0000052', 'X0000579', 12, '2024-03-20T01:51:25.962Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000027', 'OR000027', 52.09, '2024-03-20T01:51:25.962Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000027', 'OR000027', '156 Park Crescent', '2024-03-21T01:51:25.962Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000028', 'U0000069', 'X0000395', 12, '2023-11-03T04:33:59.926Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000028', 'OR000028', 63.77, '2023-11-03T04:33:59.926Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000028', 'OR000028', '33085 Beatty Track', '2023-11-05T04:33:59.926Z','2023-11-07T04:33:59.926Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000029', 'U0000076', 'X0000263', 46, '2023-11-17T15:10:29.509Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000030', 'U0000092', 'X0000361', 32, '2023-10-06T13:44:05.583Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000030', 'OR000030', 33.24, '2023-10-06T13:44:05.583Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000031', 'U0000062', 'X0000993', 27, '2024-02-26T23:34:11.468Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000031', 'OR000031', 80.19, '2024-02-26T23:34:11.468Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000031', 'OR000031', '9219 Cassin Trace', '2024-03-01T23:34:11.468Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000032', 'U0000037', 'X0000701', 56, '2024-01-28T07:27:29.641Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000032', 'OR000032', 35.36, '2024-01-28T07:27:29.641Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000032', 'OR000032', '12115 Tennyson Road', '2024-02-02T07:27:29.641Z','2024-02-07T07:27:29.641Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000033', 'U0000006', 'X0000700', 56, '2024-01-18T07:38:22.992Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000034', 'U0000017', 'X0000508', 12, '2024-03-20T00:15:23.750Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000034', 'OR000034', 194.06, '2024-03-20T00:15:23.750Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000035', 'U0000089', 'X0000127', 87, '2024-01-02T17:46:02.004Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000035', 'OR000035', 18.42, '2024-01-02T17:46:02.004Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000035', 'OR000035', '14414 Gleichner Haven', '2024-01-07T17:46:02.004Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000036', 'U0000073', 'X0000077', 32, '2024-01-05T09:39:15.131Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000036', 'OR000036', 39.87, '2024-01-05T09:39:15.131Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000036', 'OR000036', '2363 Ruecker Valley', '2024-01-08T09:39:15.131Z','2024-01-11T09:39:15.131Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000037', 'U0000050', 'X0000710', 25, '2024-03-25T01:50:35.756Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000038', 'U0000070', 'X0000204', 41, '2024-03-27T19:36:43.535Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000038', 'OR000038', 28.38, '2024-03-27T19:36:43.535Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000039', 'U0000062', 'X0000676', 82, '2023-12-27T09:24:19.122Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000039', 'OR000039', 74.11, '2023-12-27T09:24:19.122Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000039', 'OR000039', '9219 Cassin Trace', '2023-12-31T09:24:19.122Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000040', 'U0000050', 'X0000108', 16, '2023-11-03T04:53:53.174Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000040', 'OR000040', 102.84, '2023-11-03T04:53:53.174Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000040', 'OR000040', '385 Mill Street', '2023-11-06T04:53:53.174Z','2023-11-09T04:53:53.174Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000041', 'U0000059', 'X0000191', 32, '2023-10-29T20:27:42.766Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000042', 'U0000053', 'X0000299', 7, '2023-11-22T21:12:55.078Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000042', 'OR000042', 100.81, '2023-11-22T21:12:55.078Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000043', 'U0000047', 'X0000709', 40, '2024-01-16T00:30:37.322Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000043', 'OR000043', 34.09, '2024-01-16T00:30:37.322Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000043', 'OR000043', '770 W Washington Avenue', '2024-01-20T00:30:37.322Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000044', 'U0000018', 'X0000781', 23, '2024-02-05T02:28:15.249Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000044', 'OR000044', 135.72, '2024-02-05T02:28:15.249Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000044', 'OR000044', '59575 Mill Street', '2024-02-09T02:28:15.249Z','2024-02-11T02:28:15.249Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000045', 'U0000051', 'X0000776', 1, '2024-03-11T10:50:34.222Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000046', 'U0000063', 'X0000434', 16, '2024-01-25T04:30:16.051Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000046', 'OR000046', 981.84, '2024-01-25T04:30:16.051Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000047', 'U0000002', 'X0000408', 58, '2023-10-17T22:40:59.727Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000047', 'OR000047', 140.87, '2023-10-17T22:40:59.727Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000047', 'OR000047', '806 Ferry Road', '2023-10-22T22:40:59.727Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000048', 'U0000100', 'X0000813', 8, '2024-02-04T07:14:31.669Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000048', 'OR000048', 69.66, '2024-02-04T07:14:31.669Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000048', 'OR000048', '67999 Gavin Unions', '2024-02-08T07:14:31.669Z','2024-02-11T07:14:31.669Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000049', 'U0000086', 'X0000750', 47, '2023-11-18T16:39:11.402Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000050', 'U0000023', 'X0000379', 46, '2024-01-31T12:27:51.091Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000050', 'OR000050', 43.2, '2024-01-31T12:27:51.091Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000051', 'U0000049', 'X0000162', 18, '2024-02-27T17:41:44.758Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000051', 'OR000051', 104.82, '2024-02-27T17:41:44.758Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000051', 'OR000051', '4264 Park Lane', '2024-02-29T17:41:44.758Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000052', 'U0000096', 'X0000904', 2, '2024-03-06T23:38:45.170Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000052', 'OR000052', 38.46, '2024-03-06T23:38:45.170Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000052', 'OR000052', '28976 Laurel Rue', '2024-03-07T23:38:45.170Z','2024-03-10T23:38:45.170Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000053', 'U0000031', 'X0000375', 26, '2024-03-06T20:04:25.579Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000054', 'U0000030', 'X0000184', 59, '2024-03-19T19:28:15.545Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000054', 'OR000054', 46.76, '2024-03-19T19:28:15.545Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000055', 'U0000045', 'X0000724', 18, '2023-11-04T02:49:24.243Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000055', 'OR000055', 36.21, '2023-11-04T02:49:24.243Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000055', 'OR000055', '893 Cummerata Trail', '2023-11-09T02:49:24.243Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000056', 'U0000077', 'X0000995', 17, '2024-03-23T20:41:33.023Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000056', 'OR000056', 68.43, '2024-03-23T20:41:33.023Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000056', 'OR000056', '9507 Gottlieb Gateway', '2024-03-25T20:41:33.023Z','2024-03-26T20:41:33.023Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000057', 'U0000008', 'X0000721', 17, '2024-03-31T16:52:53.234Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000058', 'U0000062', 'X0000043', 22, '2024-03-26T12:49:18.044Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000058', 'OR000058', 230.7, '2024-03-26T12:49:18.044Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000059', 'U0000040', 'X0000067', 13, '2024-03-17T15:48:02.546Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000059', 'OR000059', 139.14, '2024-03-17T15:48:02.546Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000059', 'OR000059', '54268 Schimmel Burg', '2024-03-20T15:48:02.546Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000060', 'U0000052', 'X0000754', 40, '2024-03-27T06:29:35.987Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000060', 'OR000060', 296.14, '2024-03-27T06:29:35.987Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000060', 'OR000060', '156 Park Crescent', '2024-04-01T06:29:35.987Z','2024-04-05T06:29:35.987Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000061', 'U0000062', 'X0000352', 10, '2023-11-29T04:40:26.107Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000062', 'U0000030', 'X0000965', 40, '2024-01-12T09:02:23.026Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000062', 'OR000062', 181.98, '2024-01-12T09:02:23.026Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000063', 'U0000094', 'X0000955', 8, '2023-10-10T19:48:54.711Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000063', 'OR000063', 42.8, '2023-10-10T19:48:54.711Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000063', 'OR000063', '16775 Archibald Fort', '2023-10-15T19:48:54.711Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000064', 'U0000031', 'X0000518', 11, '2024-03-06T09:53:01.165Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000064', 'OR000064', 165.13, '2024-03-06T09:53:01.165Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000064', 'OR000064', '192 Roberts Branch', '2024-03-11T09:53:01.165Z','2024-03-13T09:53:01.165Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000065', 'U0000008', 'X0000063', 40, '2023-10-15T20:44:07.023Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000066', 'U0000004', 'X0000775', 43, '2023-12-27T07:50:24.266Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000066', 'OR000066', 150.69, '2023-12-27T07:50:24.266Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000067', 'U0000082', 'X0000531', 21, '2024-03-21T10:08:43.119Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000067', 'OR000067', 137.66, '2024-03-21T10:08:43.119Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000067', 'OR000067', '6029 Mill Street', '2024-03-23T10:08:43.119Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000068', 'U0000021', 'X0000158', 35, '2023-10-24T22:42:20.149Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000068', 'OR000068', 87.75, '2023-10-24T22:42:20.149Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000068', 'OR000068', '5955 S Market Street', '2023-10-29T22:42:20.149Z','2023-11-03T22:42:20.149Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000069', 'U0000031', 'X0000449', 1, '2023-10-16T23:29:09.652Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000070', 'U0000034', 'X0000873', 8, '2023-11-04T03:52:16.055Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000070', 'OR000070', 145.89, '2023-11-04T03:52:16.055Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000071', 'U0000089', 'X0000703', 9, '2023-11-01T03:43:44.496Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000071', 'OR000071', 209.26, '2023-11-01T03:43:44.496Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000071', 'OR000071', '14414 Gleichner Haven', '2023-11-02T03:43:44.496Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000072', 'U0000090', 'X0000772', 32, '2024-01-03T12:32:53.655Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000072', 'OR000072', 161.1, '2024-01-03T12:32:53.655Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000072', 'OR000072', '94225 Hassan Mills', '2024-01-08T12:32:53.655Z','2024-01-09T12:32:53.655Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000073', 'U0000025', 'X0000626', 46, '2024-01-22T18:52:54.284Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000074', 'U0000097', 'X0000585', 71, '2023-12-11T09:46:17.347Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000074', 'OR000074', 130.81, '2023-12-11T09:46:17.347Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000075', 'U0000095', 'X0000904', 31, '2023-10-17T14:39:50.248Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000075', 'OR000075', 38.46, '2023-10-17T14:39:50.248Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000075', 'OR000075', '9730 Bayer Neck', '2023-10-19T14:39:50.248Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000076', 'U0000076', 'X0000630', 44, '2024-03-19T20:29:28.804Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000076', 'OR000076', 144.68, '2024-03-19T20:29:28.804Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000076', 'OR000076', '69547 Rosamond Field', '2024-03-22T20:29:28.804Z','2024-03-24T20:29:28.804Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000077', 'U0000039', 'X0000455', 11, '2023-10-18T05:10:10.776Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000078', 'U0000014', 'X0000338', 1, '2023-12-29T08:16:31.187Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000078', 'OR000078', 43.77, '2023-12-29T08:16:31.187Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000079', 'U0000038', 'X0000665', 6, '2024-02-21T13:04:30.997Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000079', 'OR000079', 154.69, '2024-02-21T13:04:30.997Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000079', 'OR000079', '44261 Maye Wells', '2024-02-24T13:04:30.997Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000080', 'U0000057', 'X0000836', 3, '2024-01-04T03:49:55.353Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000080', 'OR000080', 12.11, '2024-01-04T03:49:55.353Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000080', 'OR000080', '3417 Camden Mission', '2024-01-08T03:49:55.353Z','2024-01-10T03:49:55.353Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000081', 'U0000023', 'X0000571', 1, '2023-12-08T02:19:54.710Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000082', 'U0000074', 'X0000329', 7, '2024-03-27T14:11:32.337Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000082', 'OR000082', 141.57, '2024-03-27T14:11:32.337Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000083', 'U0000015', 'X0000824', 4, '2023-10-07T02:41:59.059Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000083', 'OR000083', 25.23, '2023-10-07T02:41:59.059Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000083', 'OR000083', '34992 Maybelle Run', '2023-10-10T02:41:59.059Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000084', 'U0000049', 'X0000561', 1, '2023-12-13T03:08:58.005Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000084', 'OR000084', 159.94, '2023-12-13T03:08:58.005Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000084', 'OR000084', '4264 Park Lane', '2023-12-14T03:08:58.005Z','2023-12-19T03:08:58.005Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000085', 'U0000019', 'X0000863', 13, '2023-10-05T04:31:11.366Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000086', 'U0000022', 'X0000509', 44, '2024-03-21T23:43:03.007Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000086', 'OR000086', 45.24, '2024-03-21T23:43:03.007Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000087', 'U0000052', 'X0000202', 5, '2023-12-23T07:26:22.124Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000087', 'OR000087', 71.2, '2023-12-23T07:26:22.124Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000087', 'OR000087', '156 Park Crescent', '2023-12-28T07:26:22.124Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000088', 'U0000004', 'X0000947', 49, '2024-03-26T10:17:37.247Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000088', 'OR000088', 49.7, '2024-03-26T10:17:37.247Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000088', 'OR000088', '6318 Kiehn Glens', '2024-03-28T10:17:37.247Z','2024-03-31T10:17:37.247Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000089', 'U0000037', 'X0000531', 38, '2023-10-06T05:40:40.837Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000090', 'U0000084', 'X0000172', 41, '2023-11-19T18:42:35.902Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000090', 'OR000090', 109.83, '2023-11-19T18:42:35.902Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000091', 'U0000010', 'X0000041', 49, '2024-03-19T00:08:56.002Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000091', 'OR000091', 177.62, '2024-03-19T00:08:56.002Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000091', 'OR000091', '14941 W Central Avenue', '2024-03-20T00:08:56.002Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000092', 'U0000068', 'X0000378', 13, '2024-03-01T16:29:59.217Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000092', 'OR000092', 95.78, '2024-03-01T16:29:59.217Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000092', 'OR000092', '597 Destiny Gateway', '2024-03-05T16:29:59.217Z','2024-03-07T16:29:59.217Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000093', 'U0000078', 'X0000395', 6, '2023-12-21T16:55:37.246Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000094', 'U0000064', 'X0000444', 7, '2024-01-20T19:21:58.990Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000094', 'OR000094', 142.17, '2024-01-20T19:21:58.990Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000095', 'U0000044', 'X0000444', 27, '2023-11-15T04:50:10.740Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000095', 'OR000095', 142.17, '2023-11-15T04:50:10.740Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000095', 'OR000095', '12640 Olaf Hill', '2023-11-18T04:50:10.740Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000096', 'U0000089', 'X0000247', 21, '2023-10-06T06:09:46.016Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000096', 'OR000096', 191.31, '2023-10-06T06:09:46.016Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000096', 'OR000096', '14414 Gleichner Haven', '2023-10-08T06:09:46.016Z','2023-10-12T06:09:46.016Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000097', 'U0000020', 'X0000974', 4, '2023-11-24T20:13:24.947Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000098', 'U0000021', 'X0000053', 24, '2024-03-09T14:14:05.936Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000098', 'OR000098', 65.62, '2024-03-09T14:14:05.936Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000099', 'U0000002', 'X0000459', 65, '2024-02-28T02:32:28.224Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000099', 'OR000099', 17.29, '2024-02-28T02:32:28.224Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000099', 'OR000099', '806 Ferry Road', '2024-02-29T02:32:28.224Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000100', 'U0000021', 'X0000029', 6, '2024-02-03T07:35:31.342Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000100', 'OR000100', 154.4, '2024-02-03T07:35:31.342Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000100', 'OR000100', '5955 S Market Street', '2024-02-06T07:35:31.342Z','2024-02-09T07:35:31.342Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000101', 'U0000070', 'X0000298', 40, '2024-01-12T10:08:07.610Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000102', 'U0000012', 'X0000742', 9, '2023-11-24T02:38:58.862Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000102', 'OR000102', 151.57, '2023-11-24T02:38:58.862Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000103', 'U0000025', 'X0000165', 46, '2024-01-01T19:03:40.861Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000103', 'OR000103', 49.89, '2024-01-01T19:03:40.861Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000103', 'OR000103', '6274 Jerrod Plain', '2024-01-03T19:03:40.861Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000104', 'U0000046', 'X0000209', 24, '2023-12-15T01:56:27.149Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000104', 'OR000104', 63.51, '2023-12-15T01:56:27.149Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000104', 'OR000104', '5563 Juniper Close', '2023-12-16T01:56:27.149Z','2023-12-19T01:56:27.149Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000105', 'U0000058', 'X0000356', 1, '2024-01-04T19:01:22.407Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000106', 'U0000016', 'X0000729', 68, '2024-03-13T16:18:26.857Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000106', 'OR000106', 95.41, '2024-03-13T16:18:26.857Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000107', 'U0000023', 'X0000559', 7, '2023-11-14T09:39:49.964Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000107', 'OR000107', 16.08, '2023-11-14T09:39:49.964Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000107', 'OR000107', '3935 Magnolia Trail', '2023-11-18T09:39:49.964Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000108', 'U0000062', 'X0000437', 7, '2024-03-05T22:58:49.060Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000108', 'OR000108', 208.14, '2024-03-05T22:58:49.060Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000108', 'OR000108', '9219 Cassin Trace', '2024-03-08T22:58:49.060Z','2024-03-13T22:58:49.060Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000109', 'U0000082', 'X0000023', 34, '2024-01-01T01:22:11.695Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000110', 'U0000053', 'X0000383', 97, '2023-12-18T23:04:41.145Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000110', 'OR000110', 50.93, '2023-12-18T23:04:41.145Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000111', 'U0000002', 'X0000007', 11, '2023-10-15T09:15:41.805Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000111', 'OR000111', 163.65, '2023-10-15T09:15:41.805Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000111', 'OR000111', '806 Ferry Road', '2023-10-19T09:15:41.805Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000112', 'U0000044', 'X0000962', 25, '2024-03-28T23:05:22.183Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000112', 'OR000112', 921.68, '2024-03-28T23:05:22.183Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000112', 'OR000112', '12640 Olaf Hill', '2024-03-29T23:05:22.183Z','2024-04-03T23:05:22.183Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000113', 'U0000021', 'X0000656', 72, '2023-12-18T08:32:04.565Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000114', 'U0000058', 'X0000796', 50, '2024-01-09T02:40:37.575Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000114', 'OR000114', 37.16, '2024-01-09T02:40:37.575Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000115', 'U0000068', 'X0000533', 59, '2024-01-08T20:45:54.368Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000115', 'OR000115', 102.5, '2024-01-08T20:45:54.368Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000115', 'OR000115', '597 Destiny Gateway', '2024-01-09T20:45:54.368Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000116', 'U0000089', 'X0000284', 53, '2024-02-03T01:18:26.792Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000116', 'OR000116', 48.27, '2024-02-03T01:18:26.792Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000116', 'OR000116', '14414 Gleichner Haven', '2024-02-07T01:18:26.792Z','2024-02-10T01:18:26.792Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000117', 'U0000025', 'X0000566', 28, '2023-10-07T05:34:29.668Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000118', 'U0000046', 'X0000711', 2, '2024-01-08T14:20:38.559Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000118', 'OR000118', 54.44, '2024-01-08T14:20:38.559Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000119', 'U0000086', 'X0000070', 16, '2023-10-31T06:31:23.800Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000119', 'OR000119', 35.22, '2023-10-31T06:31:23.800Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000119', 'OR000119', '69611 Pound Lane', '2023-11-03T06:31:23.800Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000120', 'U0000090', 'X0000877', 47, '2024-03-13T00:30:47.814Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000120', 'OR000120', 43.66, '2024-03-13T00:30:47.814Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000120', 'OR000120', '94225 Hassan Mills', '2024-03-14T00:30:47.814Z','2024-03-17T00:30:47.814Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000121', 'U0000036', 'X0000946', 19, '2023-12-07T13:02:22.134Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000122', 'U0000024', 'X0000776', 5, '2023-12-09T00:51:45.967Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000122', 'OR000122', 11.87, '2023-12-09T00:51:45.967Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000123', 'U0000046', 'X0000365', 36, '2024-01-02T20:24:52.321Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000123', 'OR000123', 60.93, '2024-01-02T20:24:52.321Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000123', 'OR000123', '5563 Juniper Close', '2024-01-04T20:24:52.321Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000124', 'U0000055', 'X0000438', 8, '2023-11-26T12:11:33.699Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000124', 'OR000124', 200.22, '2023-11-26T12:11:33.699Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000124', 'OR000124', '4086 Braun Terrace', '2023-11-29T12:11:33.699Z','2023-12-01T12:11:33.699Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000125', 'U0000001', 'X0000084', 6, '2023-10-27T14:24:29.219Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000126', 'U0000049', 'X0000791', 7, '2023-12-04T06:10:49.066Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000126', 'OR000126', 83.19, '2023-12-04T06:10:49.066Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000127', 'U0000064', 'X0000336', 11, '2024-02-09T07:11:49.374Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000127', 'OR000127', 1003.95, '2024-02-09T07:11:49.374Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000127', 'OR000127', '1692 Smith Street', '2024-02-12T07:11:49.374Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000128', 'U0000053', 'X0000248', 4, '2024-03-24T04:43:26.415Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000128', 'OR000128', 523.1, '2024-03-24T04:43:26.415Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000128', 'OR000128', '9299 Railway Street', '2024-03-27T04:43:26.415Z','2024-03-29T04:43:26.415Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000129', 'U0000087', 'X0000995', 26, '2024-01-12T16:02:51.304Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000130', 'U0000042', 'X0000462', 16, '2023-12-18T07:25:24.489Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000130', 'OR000130', 162.1, '2023-12-18T07:25:24.489Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000131', 'U0000017', 'X0000503', 23, '2023-10-24T22:22:57.051Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000131', 'OR000131', 168.91, '2023-10-24T22:22:57.051Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000131', 'OR000131', '658 Lavada Alley', '2023-10-26T22:22:57.051Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000132', 'U0000061', 'X0000458', 62, '2023-10-26T15:44:50.496Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000132', 'OR000132', 33.42, '2023-10-26T15:44:50.496Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000132', 'OR000132', '80281 Cathrine Field', '2023-10-28T15:44:50.496Z','2023-11-02T15:44:50.496Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000133', 'U0000050', 'X0000464', 7, '2023-10-18T11:09:44.364Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000134', 'U0000069', 'X0000958', 25, '2023-12-19T07:02:36.563Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000134', 'OR000134', 27.8, '2023-12-19T07:02:36.563Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000135', 'U0000081', 'X0000739', 15, '2024-02-20T13:30:00.594Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000135', 'OR000135', 9.63, '2024-02-20T13:30:00.594Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000135', 'OR000135', '327 Hills Summit', '2024-02-22T13:30:00.594Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000136', 'U0000046', 'X0000761', 21, '2024-03-25T13:08:04.774Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000136', 'OR000136', 53.97, '2024-03-25T13:08:04.774Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000136', 'OR000136', '5563 Juniper Close', '2024-03-28T13:08:04.774Z','2024-03-29T13:08:04.774Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000137', 'U0000030', 'X0000330', 22, '2023-11-11T01:31:39.281Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000138', 'U0000064', 'X0000079', 52, '2023-12-31T00:03:32.418Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000138', 'OR000138', 47.1, '2023-12-31T00:03:32.418Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000139', 'U0000046', 'X0000877', 24, '2024-03-17T04:56:23.184Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000139', 'OR000139', 43.66, '2024-03-17T04:56:23.184Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000139', 'OR000139', '5563 Juniper Close', '2024-03-19T04:56:23.184Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000140', 'U0000059', 'X0000819', 27, '2024-03-13T07:51:43.787Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000140', 'OR000140', 125.97, '2024-03-13T07:51:43.787Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000140', 'OR000140', '22218 W 8th Street', '2024-03-17T07:51:43.787Z','2024-03-18T07:51:43.787Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000141', 'U0000027', 'X0000990', 89, '2024-01-20T13:48:40.887Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000142', 'U0000065', 'X0000978', 23, '2023-10-09T07:46:09.905Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000142', 'OR000142', 537.11, '2023-10-09T07:46:09.905Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000143', 'U0000045', 'X0000138', 9, '2023-10-19T19:50:55.170Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000143', 'OR000143', 107.3, '2023-10-19T19:50:55.170Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000143', 'OR000143', '893 Cummerata Trail', '2023-10-21T19:50:55.170Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000144', 'U0000067', 'X0000352', 53, '2023-12-20T16:01:13.704Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000144', 'OR000144', 193.78, '2023-12-20T16:01:13.704Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000144', 'OR000144', '6233 Elbert Mountains', '2023-12-21T16:01:13.704Z','2023-12-25T16:01:13.704Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000145', 'U0000063', 'X0000901', 60, '2024-02-10T03:17:05.782Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000146', 'U0000077', 'X0000168', 27, '2023-10-25T04:53:22.904Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000146', 'OR000146', 49.3, '2023-10-25T04:53:22.904Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000147', 'U0000088', 'X0000144', 20, '2024-02-23T11:13:19.047Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000147', 'OR000147', 31.7, '2024-02-23T11:13:19.047Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000147', 'OR000147', '3693 Jason Motorway', '2024-02-27T11:13:19.047Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000148', 'U0000027', 'X0000944', 7, '2024-01-08T10:40:03.318Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000148', 'OR000148', 190.73, '2024-01-08T10:40:03.318Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000148', 'OR000148', '24259 Ritchie Mountains', '2024-01-13T10:40:03.318Z','2024-01-16T10:40:03.318Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000149', 'U0000038', 'X0000105', 2, '2023-12-25T02:45:52.705Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000150', 'U0000012', 'X0000522', 12, '2023-12-25T20:08:31.621Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000150', 'OR000150', 51.3, '2023-12-25T20:08:31.621Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000151', 'U0000055', 'X0000906', 1, '2023-10-30T20:37:00.246Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000151', 'OR000151', 266.14, '2023-10-30T20:37:00.246Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000151', 'OR000151', '4086 Braun Terrace', '2023-11-04T20:37:00.246Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000152', 'U0000051', 'X0000920', 27, '2024-03-10T23:20:27.665Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000152', 'OR000152', 16.11, '2024-03-10T23:20:27.665Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000152', 'OR000152', '5981 Atlantic Avenue', '2024-03-11T23:20:27.665Z','2024-03-15T23:20:27.665Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000153', 'U0000004', 'X0000665', 4, '2023-11-24T07:42:38.974Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000154', 'U0000089', 'X0000713', 45, '2023-12-09T18:07:14.878Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000154', 'OR000154', 73.94, '2023-12-09T18:07:14.878Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000155', 'U0000090', 'X0000097', 44, '2023-12-19T19:33:14.773Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000155', 'OR000155', 981.68, '2023-12-19T19:33:14.773Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000155', 'OR000155', '94225 Hassan Mills', '2023-12-23T19:33:14.773Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000156', 'U0000055', 'X0000325', 3, '2023-12-06T03:06:02.175Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000156', 'OR000156', 101.91, '2023-12-06T03:06:02.175Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000156', 'OR000156', '4086 Braun Terrace', '2023-12-07T03:06:02.175Z','2023-12-11T03:06:02.175Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000157', 'U0000015', 'X0000124', 29, '2024-03-13T14:23:01.592Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000158', 'U0000052', 'X0000880', 25, '2023-12-01T21:41:31.951Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000158', 'OR000158', 22.8, '2023-12-01T21:41:31.951Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000159', 'U0000061', 'X0000551', 31, '2023-10-20T00:19:48.317Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000159', 'OR000159', 78.18, '2023-10-20T00:19:48.317Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000159', 'OR000159', '80281 Cathrine Field', '2023-10-21T00:19:48.317Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000160', 'U0000014', 'X0000969', 14, '2023-10-28T14:32:30.632Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000160', 'OR000160', 17.92, '2023-10-28T14:32:30.632Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000160', 'OR000160', '55447 Warren Close', '2023-11-02T14:32:30.632Z','2023-11-03T14:32:30.632Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000161', 'U0000069', 'X0000222', 19, '2023-10-01T16:34:08.781Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000162', 'U0000050', 'X0000385', 21, '2023-12-21T10:07:03.566Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000162', 'OR000162', 40.16, '2023-12-21T10:07:03.566Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000163', 'U0000060', 'X0000278', 36, '2024-03-06T17:59:59.688Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000163', 'OR000163', 899.55, '2024-03-06T17:59:59.688Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000163', 'OR000163', '39988 Ryan Lodge', '2024-03-09T17:59:59.688Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000164', 'U0000027', 'X0000884', 63, '2023-12-28T06:55:10.609Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000164', 'OR000164', 205.88, '2023-12-28T06:55:10.609Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000164', 'OR000164', '24259 Ritchie Mountains', '2023-12-31T06:55:10.609Z','2024-01-04T06:55:10.609Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000165', 'U0000006', 'X0000537', 69, '2024-01-20T01:02:47.985Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000166', 'U0000023', 'X0000732', 70, '2023-10-24T01:50:47.778Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000166', 'OR000166', 148.69, '2023-10-24T01:50:47.778Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000167', 'U0000078', 'X0000545', 6, '2024-02-28T13:44:52.419Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000167', 'OR000167', 112.73, '2024-02-28T13:44:52.419Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000167', 'OR000167', '4575 Rippin Stravenue', '2024-02-29T13:44:52.419Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000168', 'U0000089', 'X0000773', 22, '2023-11-29T14:31:55.475Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000168', 'OR000168', 119.79, '2023-11-29T14:31:55.475Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000168', 'OR000168', '14414 Gleichner Haven', '2023-11-30T14:31:55.475Z','2023-12-01T14:31:55.475Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000169', 'U0000042', 'X0000048', 88, '2023-12-08T08:36:09.175Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000170', 'U0000022', 'X0000754', 15, '2023-12-02T04:49:04.005Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000170', 'OR000170', 296.14, '2023-12-02T04:49:04.005Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000171', 'U0000040', 'X0000248', 9, '2023-11-13T06:45:23.197Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000171', 'OR000171', 523.1, '2023-11-13T06:45:23.197Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000171', 'OR000171', '54268 Schimmel Burg', '2023-11-16T06:45:23.197Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000172', 'U0000075', 'X0000043', 35, '2024-01-07T03:51:42.061Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000172', 'OR000172', 230.7, '2024-01-07T03:51:42.061Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000172', 'OR000172', '457 Broad Lane', '2024-01-12T03:51:42.061Z','2024-01-15T03:51:42.061Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000173', 'U0000022', 'X0000407', 8, '2024-02-26T14:35:14.665Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000174', 'U0000058', 'X0000576', 18, '2024-03-31T15:13:26.506Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000174', 'OR000174', 11.22, '2024-03-31T15:13:26.506Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000175', 'U0000001', 'X0000007', 12, '2023-10-20T00:56:05.810Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000175', 'OR000175', 163.65, '2023-10-20T00:56:05.810Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000175', 'OR000175', '250 N Cedar Street', '2023-10-21T00:56:05.810Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000176', 'U0000089', 'X0000884', 52, '2024-03-18T04:02:55.508Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000176', 'OR000176', 205.88, '2024-03-18T04:02:55.508Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000176', 'OR000176', '14414 Gleichner Haven', '2024-03-20T04:02:55.508Z','2024-03-22T04:02:55.508Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000177', 'U0000057', 'X0000579', 6, '2023-10-01T12:41:00.983Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000178', 'U0000017', 'X0000166', 31, '2023-11-14T19:16:36.369Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000178', 'OR000178', 257.69, '2023-11-14T19:16:36.369Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000179', 'U0000042', 'X0000405', 26, '2024-02-17T01:44:25.346Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000179', 'OR000179', 120.99, '2024-02-17T01:44:25.346Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000179', 'OR000179', '489 W Walnut Street', '2024-02-19T01:44:25.346Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000180', 'U0000066', 'X0000970', 42, '2023-10-01T17:34:21.721Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000180', 'OR000180', 991.35, '2023-10-01T17:34:21.721Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000180', 'OR000180', '514 Jefferson Avenue', '2023-10-03T17:34:21.721Z','2023-10-08T17:34:21.721Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000181', 'U0000019', 'X0000175', 2, '2024-03-07T19:05:14.373Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000182', 'U0000018', 'X0000209', 13, '2023-12-26T06:22:16.462Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000182', 'OR000182', 63.51, '2023-12-26T06:22:16.462Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000183', 'U0000033', 'X0000595', 18, '2024-03-30T12:53:03.606Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000183', 'OR000183', 24.51, '2024-03-30T12:53:03.606Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000183', 'OR000183', '1975 Main Street', '2024-04-01T12:53:03.606Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000184', 'U0000076', 'X0000459', 34, '2023-10-29T10:57:18.631Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000184', 'OR000184', 17.29, '2023-10-29T10:57:18.631Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000184', 'OR000184', '69547 Rosamond Field', '2023-11-03T10:57:18.631Z','2023-11-04T10:57:18.631Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000185', 'U0000041', 'X0000983', 56, '2024-03-07T22:18:08.477Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000186', 'U0000068', 'X0000910', 13, '2023-12-15T17:17:23.425Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000186', 'OR000186', 97.45, '2023-12-15T17:17:23.425Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000187', 'U0000059', 'X0000972', 56, '2024-03-27T17:00:38.023Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000187', 'OR000187', 307.51, '2024-03-27T17:00:38.023Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000187', 'OR000187', '22218 W 8th Street', '2024-03-31T17:00:38.023Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000188', 'U0000049', 'X0000038', 18, '2023-11-02T12:12:54.984Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000188', 'OR000188', 54.77, '2023-11-02T12:12:54.984Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000188', 'OR000188', '4264 Park Lane', '2023-11-06T12:12:54.984Z','2023-11-07T12:12:54.984Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000189', 'U0000042', 'X0000360', 31, '2023-10-07T18:15:40.290Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000190', 'U0000012', 'X0000098', 69, '2023-10-11T05:51:23.325Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000190', 'OR000190', 43.19, '2023-10-11T05:51:23.325Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000191', 'U0000093', 'X0000033', 7, '2024-02-20T07:36:58.486Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000191', 'OR000191', 86.13, '2024-02-20T07:36:58.486Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000191', 'OR000191', '5140 Daisha Brook', '2024-02-22T07:36:58.486Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000192', 'U0000037', 'X0000367', 46, '2024-01-13T07:56:34.877Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000192', 'OR000192', 1183.51, '2024-01-13T07:56:34.877Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000192', 'OR000192', '12115 Tennyson Road', '2024-01-16T07:56:34.877Z','2024-01-21T07:56:34.877Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000193', 'U0000051', 'X0000929', 4, '2023-11-29T02:13:48.578Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000194', 'U0000011', 'X0000545', 8, '2024-02-20T02:05:20.497Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000194', 'OR000194', 112.73, '2024-02-20T02:05:20.497Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000195', 'U0000032', 'X0000758', 50, '2023-10-01T04:28:35.662Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000195', 'OR000195', 574.35, '2023-10-01T04:28:35.662Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000195', 'OR000195', '25440 S Water Street', '2023-10-03T04:28:35.662Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000196', 'U0000001', 'X0000013', 8, '2023-10-25T02:16:04.772Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000196', 'OR000196', 1168.15, '2023-10-25T02:16:04.772Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000196', 'OR000196', '250 N Cedar Street', '2023-10-30T02:16:04.772Z','2023-11-01T02:16:04.772Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000197', 'U0000033', 'X0000918', 77, '2024-02-02T02:51:52.323Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000198', 'U0000029', 'X0000257', 54, '2024-01-18T02:01:22.373Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000198', 'OR000198', 1130.55, '2024-01-18T02:01:22.373Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000199', 'U0000082', 'X0000632', 73, '2023-11-15T05:24:44.339Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000199', 'OR000199', 132.34, '2023-11-15T05:24:44.339Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000199', 'OR000199', '6029 Mill Street', '2023-11-17T05:24:44.339Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000200', 'U0000015', 'X0000152', 74, '2023-12-18T01:00:25.100Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000200', 'OR000200', 30.13, '2023-12-18T01:00:25.100Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000200', 'OR000200', '34992 Maybelle Run', '2023-12-21T01:00:25.100Z','2023-12-22T01:00:25.100Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000201', 'U0000022', 'X0000887', 7, '2023-10-05T01:03:35.193Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000202', 'U0000074', 'X0000932', 9, '2024-02-02T08:07:42.284Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000202', 'OR000202', 105, '2024-02-02T08:07:42.284Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000203', 'U0000025', 'X0000754', 20, '2023-12-04T01:20:37.541Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000203', 'OR000203', 296.14, '2023-12-04T01:20:37.541Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000203', 'OR000203', '6274 Jerrod Plain', '2023-12-09T01:20:37.541Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000204', 'U0000087', 'X0000507', 31, '2023-11-25T20:18:30.452Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000204', 'OR000204', 83.64, '2023-11-25T20:18:30.452Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000204', 'OR000204', '773 Cartwright Ridge', '2023-11-27T20:18:30.452Z','2023-12-01T20:18:30.452Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000205', 'U0000011', 'X0000057', 28, '2023-11-17T11:33:52.505Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000206', 'U0000062', 'X0000169', 22, '2023-10-18T07:39:27.376Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000206', 'OR000206', 80.25, '2023-10-18T07:39:27.376Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000207', 'U0000058', 'X0000250', 18, '2024-01-12T00:10:12.692Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000207', 'OR000207', 35.91, '2024-01-12T00:10:12.692Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000207', 'OR000207', '62184 W 12th Street', '2024-01-17T00:10:12.692Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000208', 'U0000084', 'X0000203', 24, '2023-11-20T01:34:19.465Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000208', 'OR000208', 246.28, '2023-11-20T01:34:19.465Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000208', 'OR000208', '20325 Brock Heights', '2023-11-22T01:34:19.465Z','2023-11-23T01:34:19.465Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000209', 'U0000085', 'X0000296', 40, '2023-11-07T15:47:11.354Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000210', 'U0000079', 'X0000182', 1, '2023-11-13T21:38:47.184Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000210', 'OR000210', 64.3, '2023-11-13T21:38:47.184Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000211', 'U0000060', 'X0000367', 40, '2023-12-21T20:40:06.452Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000211', 'OR000211', 1183.51, '2023-12-21T20:40:06.452Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000211', 'OR000211', '39988 Ryan Lodge', '2023-12-25T20:40:06.452Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000212', 'U0000046', 'X0000011', 18, '2023-12-24T17:26:47.437Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000212', 'OR000212', 98.79, '2023-12-24T17:26:47.437Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000212', 'OR000212', '5563 Juniper Close', '2023-12-27T17:26:47.437Z','2023-12-31T17:26:47.437Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000213', 'U0000046', 'X0000790', 17, '2024-01-03T08:32:12.074Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000214', 'U0000078', 'X0000721', 32, '2023-12-01T10:30:25.207Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000214', 'OR000214', 174.78, '2023-12-01T10:30:25.207Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000215', 'U0000011', 'X0000550', 29, '2024-03-27T16:30:05.176Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000215', 'OR000215', 16.32, '2024-03-27T16:30:05.176Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000215', 'OR000215', '41055 Quitzon Estate', '2024-04-01T16:30:05.176Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000216', 'U0000056', 'X0000894', 28, '2023-10-17T10:42:42.994Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000216', 'OR000216', 706.32, '2023-10-17T10:42:42.994Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000216', 'OR000216', '255 Chester Lakes', '2023-10-19T10:42:42.994Z','2023-10-24T10:42:42.994Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000217', 'U0000023', 'X0000989', 38, '2023-11-02T23:16:41.351Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000218', 'U0000058', 'X0000614', 1, '2024-02-28T07:10:00.086Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000218', 'OR000218', 806.94, '2024-02-28T07:10:00.086Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000219', 'U0000006', 'X0000614', 21, '2024-02-14T11:53:44.679Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000219', 'OR000219', 806.94, '2024-02-14T11:53:44.679Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000219', 'OR000219', '1792 Emelie Motorway', '2024-02-19T11:53:44.679Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000220', 'U0000059', 'X0000903', 9, '2023-10-31T03:21:03.610Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000220', 'OR000220', 62.97, '2023-10-31T03:21:03.610Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000220', 'OR000220', '22218 W 8th Street', '2023-11-05T03:21:03.610Z','2023-11-08T03:21:03.610Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000221', 'U0000071', 'X0000496', 12, '2023-10-17T09:28:14.829Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000222', 'U0000014', 'X0000149', 3, '2024-03-01T18:08:55.613Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000222', 'OR000222', 15.99, '2024-03-01T18:08:55.613Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000223', 'U0000071', 'X0000433', 7, '2023-12-02T06:09:02.213Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000223', 'OR000223', 32.1, '2023-12-02T06:09:02.213Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000223', 'OR000223', '7624 Smith Lights', '2023-12-04T06:09:02.213Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000224', 'U0000063', 'X0000666', 21, '2024-01-09T21:53:30.613Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000224', 'OR000224', 202.88, '2024-01-09T21:53:30.613Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000224', 'OR000224', '876 Market Street', '2024-01-13T21:53:30.613Z','2024-01-16T21:53:30.613Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000225', 'U0000074', 'X0000694', 21, '2023-10-17T04:03:29.366Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000226', 'U0000022', 'X0000846', 28, '2023-12-04T14:20:11.112Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000226', 'OR000226', 23.45, '2023-12-04T14:20:11.112Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000227', 'U0000053', 'X0000854', 7, '2024-01-27T07:48:36.789Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000227', 'OR000227', 144.85, '2024-01-27T07:48:36.789Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000227', 'OR000227', '9299 Railway Street', '2024-01-29T07:48:36.789Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000228', 'U0000009', 'X0000520', 46, '2024-01-18T16:26:01.539Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000228', 'OR000228', 161.64, '2024-01-18T16:26:01.539Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000228', 'OR000228', '744 Christiansen Locks', '2024-01-22T16:26:01.539Z','2024-01-25T16:26:01.539Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000229', 'U0000060', 'X0000990', 5, '2023-11-22T17:24:13.418Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000230', 'U0000028', 'X0000712', 17, '2024-03-08T07:05:30.335Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000230', 'OR000230', 43.11, '2024-03-08T07:05:30.335Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000231', 'U0000031', 'X0000331', 43, '2023-12-03T01:10:17.309Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000231', 'OR000231', 131.09, '2023-12-03T01:10:17.309Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000231', 'OR000231', '192 Roberts Branch', '2023-12-06T01:10:17.309Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000232', 'U0000004', 'X0000634', 5, '2024-02-01T17:10:48.693Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000232', 'OR000232', 45.2, '2024-02-01T17:10:48.693Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000232', 'OR000232', '6318 Kiehn Glens', '2024-02-04T17:10:48.693Z','2024-02-05T17:10:48.693Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000233', 'U0000092', 'X0000800', 23, '2023-12-29T07:08:29.228Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000234', 'U0000056', 'X0000836', 7, '2024-03-27T02:16:14.695Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000234', 'OR000234', 12.11, '2024-03-27T02:16:14.695Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000235', 'U0000078', 'X0000836', 8, '2024-01-20T07:06:38.865Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000235', 'OR000235', 12.11, '2024-01-20T07:06:38.865Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000235', 'OR000235', '4575 Rippin Stravenue', '2024-01-23T07:06:38.865Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000236', 'U0000071', 'X0000905', 60, '2023-12-12T20:03:19.425Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000236', 'OR000236', 43.34, '2023-12-12T20:03:19.425Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000236', 'OR000236', '7624 Smith Lights', '2023-12-17T20:03:19.425Z','2023-12-21T20:03:19.425Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000237', 'U0000054', 'X0000077', 27, '2023-10-05T16:52:11.489Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000238', 'U0000041', 'X0000218', 55, '2024-01-19T22:09:08.480Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000238', 'OR000238', 29.67, '2024-01-19T22:09:08.480Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000239', 'U0000075', 'X0000859', 71, '2023-10-14T19:41:02.424Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000239', 'OR000239', 115.75, '2023-10-14T19:41:02.424Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000239', 'OR000239', '457 Broad Lane', '2023-10-16T19:41:02.424Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000240', 'U0000014', 'X0000616', 42, '2023-12-27T14:01:03.119Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000240', 'OR000240', 147.02, '2023-12-27T14:01:03.119Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000240', 'OR000240', '55447 Warren Close', '2024-01-01T14:01:03.119Z','2024-01-03T14:01:03.119Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000241', 'U0000038', 'X0000336', 36, '2023-11-26T22:29:58.377Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000242', 'U0000014', 'X0000419', 28, '2024-03-05T05:01:41.528Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000242', 'OR000242', 36.67, '2024-03-05T05:01:41.528Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000243', 'U0000032', 'X0000437', 23, '2024-02-28T07:35:44.578Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000243', 'OR000243', 208.14, '2024-02-28T07:35:44.578Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000243', 'OR000243', '25440 S Water Street', '2024-03-03T07:35:44.578Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000244', 'U0000099', 'X0000410', 77, '2023-10-04T06:14:03.467Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000244', 'OR000244', 63.21, '2023-10-04T06:14:03.467Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000244', 'OR000244', '323 Bernardo Oval', '2023-10-06T06:14:03.467Z','2023-10-07T06:14:03.467Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000245', 'U0000054', 'X0000417', 11, '2023-12-03T21:40:04.092Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000246', 'U0000008', 'X0000180', 26, '2023-10-25T02:57:52.620Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000246', 'OR000246', 32.73, '2023-10-25T02:57:52.620Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000247', 'U0000064', 'X0000641', 73, '2024-02-16T01:40:12.803Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000247', 'OR000247', 127.27, '2024-02-16T01:40:12.803Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000247', 'OR000247', '1692 Smith Street', '2024-02-20T01:40:12.803Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000248', 'U0000035', 'X0000576', 27, '2023-10-25T02:36:54.036Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000248', 'OR000248', 11.22, '2023-10-25T02:36:54.036Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000248', 'OR000248', '80090 Schmidt Plains', '2023-10-30T02:36:54.036Z','2023-11-01T02:36:54.036Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000249', 'U0000055', 'X0000475', 52, '2023-10-26T12:12:12.064Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000250', 'U0000052', 'X0000478', 12, '2023-10-03T03:26:26.038Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000250', 'OR000250', 60.2, '2023-10-03T03:26:26.038Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000251', 'U0000060', 'X0000625', 1, '2023-11-24T18:58:58.377Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000251', 'OR000251', 44.43, '2023-11-24T18:58:58.377Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000251', 'OR000251', '39988 Ryan Lodge', '2023-11-29T18:58:58.377Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000252', 'U0000022', 'X0000259', 89, '2024-01-16T16:52:32.214Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000252', 'OR000252', 77.7, '2024-01-16T16:52:32.214Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000252', 'OR000252', '761 Rey Shoals', '2024-01-17T16:52:32.214Z','2024-01-22T16:52:32.214Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000253', 'U0000020', 'X0000944', 7, '2023-12-04T02:54:39.753Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000254', 'U0000023', 'X0000500', 36, '2023-12-11T18:23:25.729Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000254', 'OR000254', 33.96, '2023-12-11T18:23:25.729Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000255', 'U0000071', 'X0000629', 65, '2023-11-23T21:02:33.296Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000255', 'OR000255', 37.86, '2023-11-23T21:02:33.296Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000255', 'OR000255', '7624 Smith Lights', '2023-11-28T21:02:33.296Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000256', 'U0000093', 'X0000311', 67, '2023-10-02T12:01:49.014Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000256', 'OR000256', 647.92, '2023-10-02T12:01:49.014Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000256', 'OR000256', '5140 Daisha Brook', '2023-10-05T12:01:49.014Z','2023-10-10T12:01:49.014Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000257', 'U0000095', 'X0000084', 1, '2024-02-16T11:51:25.550Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000258', 'U0000033', 'X0000700', 9, '2024-01-26T11:21:53.410Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000258', 'OR000258', 269.87, '2024-01-26T11:21:53.410Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000259', 'U0000044', 'X0000068', 30, '2023-10-22T14:11:55.272Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000259', 'OR000259', 169.06, '2023-10-22T14:11:55.272Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000259', 'OR000259', '12640 Olaf Hill', '2023-10-25T14:11:55.272Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000260', 'U0000071', 'X0000999', 14, '2023-12-06T21:44:56.239Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000260', 'OR000260', 219.87, '2023-12-06T21:44:56.239Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000260', 'OR000260', '7624 Smith Lights', '2023-12-10T21:44:56.239Z','2023-12-11T21:44:56.239Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000261', 'U0000055', 'X0000575', 3, '2024-03-04T23:57:39.295Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000262', 'U0000039', 'X0000155', 8, '2023-11-13T16:14:22.816Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000262', 'OR000262', 116.9, '2023-11-13T16:14:22.816Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000263', 'U0000091', 'X0000126', 24, '2023-10-06T18:15:57.981Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000263', 'OR000263', 679.95, '2023-10-06T18:15:57.981Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000263', 'OR000263', '56370 Suzanne Loop', '2023-10-07T18:15:57.981Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000264', 'U0000020', 'X0000618', 54, '2024-02-10T16:42:57.853Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000264', 'OR000264', 99.57, '2024-02-10T16:42:57.853Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000264', 'OR000264', '85931 Pagac Brook', '2024-02-13T16:42:57.853Z','2024-02-18T16:42:57.853Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000265', 'U0000051', 'X0000818', 6, '2024-02-10T03:45:53.001Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000266', 'U0000075', 'X0000945', 46, '2024-03-30T22:38:11.490Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000266', 'OR000266', 48.84, '2024-03-30T22:38:11.490Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000267', 'U0000051', 'X0000182', 4, '2023-10-15T18:20:27.869Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000267', 'OR000267', 64.3, '2023-10-15T18:20:27.869Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000267', 'OR000267', '5981 Atlantic Avenue', '2023-10-16T18:20:27.869Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000268', 'U0000005', 'X0000293', 28, '2023-12-10T11:59:53.623Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000268', 'OR000268', 75.91, '2023-12-10T11:59:53.623Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000268', 'OR000268', '249 Dickinson Motorway', '2023-12-15T11:59:53.623Z','2023-12-16T11:59:53.623Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000269', 'U0000058', 'X0000135', 1, '2023-11-29T06:46:52.729Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000270', 'U0000024', 'X0000108', 14, '2023-10-10T10:15:56.402Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000270', 'OR000270', 102.84, '2023-10-10T10:15:56.402Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000271', 'U0000032', 'X0000828', 12, '2024-01-14T04:28:41.580Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000271', 'OR000271', 728.37, '2024-01-14T04:28:41.580Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000271', 'OR000271', '25440 S Water Street', '2024-01-19T04:28:41.580Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000272', 'U0000079', 'X0000861', 14, '2023-10-21T20:38:58.378Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000272', 'OR000272', 54.11, '2023-10-21T20:38:58.378Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000272', 'OR000272', '16043 Brenna Landing', '2023-10-24T20:38:58.378Z','2023-10-26T20:38:58.378Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000273', 'U0000078', 'X0000691', 64, '2023-10-05T16:55:40.172Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000274', 'U0000058', 'X0000541', 99, '2024-03-30T23:31:31.827Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000274', 'OR000274', 595.63, '2024-03-30T23:31:31.827Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000275', 'U0000054', 'X0000877', 17, '2023-12-11T17:17:44.992Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000275', 'OR000275', 43.66, '2023-12-11T17:17:44.992Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000275', 'OR000275', '7936 Cliff Road', '2023-12-16T17:17:44.992Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000276', 'U0000056', 'X0000270', 11, '2024-03-31T21:39:36.346Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000276', 'OR000276', 38.73, '2024-03-31T21:39:36.346Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000276', 'OR000276', '255 Chester Lakes', '2024-04-05T21:39:36.346Z','2024-04-10T21:39:36.346Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000277', 'U0000080', 'X0000230', 6, '2024-01-30T08:26:52.619Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000278', 'U0000078', 'X0000150', 23, '2024-02-13T13:30:28.765Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000278', 'OR000278', 1387.05, '2024-02-13T13:30:28.765Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000279', 'U0000040', 'X0000478', 21, '2024-03-21T01:51:26.552Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000279', 'OR000279', 60.2, '2024-03-21T01:51:26.552Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000279', 'OR000279', '54268 Schimmel Burg', '2024-03-23T01:51:26.552Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000280', 'U0000075', 'X0000413', 9, '2024-03-21T12:13:42.465Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000280', 'OR000280', 28.76, '2024-03-21T12:13:42.465Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000280', 'OR000280', '457 Broad Lane', '2024-03-22T12:13:42.465Z','2024-03-24T12:13:42.465Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000281', 'U0000052', 'X0000187', 61, '2024-03-22T15:07:08.145Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000282', 'U0000077', 'X0000404', 85, '2024-02-18T15:51:15.809Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000282', 'OR000282', 65.1, '2024-02-18T15:51:15.809Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000283', 'U0000020', 'X0000487', 57, '2024-03-27T06:02:44.409Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000283', 'OR000283', 34.41, '2024-03-27T06:02:44.409Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000283', 'OR000283', '85931 Pagac Brook', '2024-04-01T06:02:44.409Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000284', 'U0000061', 'X0000692', 40, '2024-01-13T06:24:49.836Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000284', 'OR000284', 494.61, '2024-01-13T06:24:49.836Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000284', 'OR000284', '80281 Cathrine Field', '2024-01-18T06:24:49.836Z','2024-01-21T06:24:49.836Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000285', 'U0000006', 'X0000430', 21, '2023-11-15T18:01:48.385Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000286', 'U0000071', 'X0000364', 9, '2023-11-16T10:24:51.881Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000286', 'OR000286', 49.95, '2023-11-16T10:24:51.881Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000287', 'U0000020', 'X0000851', 75, '2023-10-28T14:22:11.429Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000287', 'OR000287', 1392, '2023-10-28T14:22:11.429Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000287', 'OR000287', '85931 Pagac Brook', '2023-10-30T14:22:11.429Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000288', 'U0000065', 'X0000640', 15, '2024-02-01T02:24:42.511Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000288', 'OR000288', 227.94, '2024-02-01T02:24:42.511Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000288', 'OR000288', '3001 Heller Circle', '2024-02-02T02:24:42.511Z','2024-02-06T02:24:42.511Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000289', 'U0000023', 'X0000708', 10, '2024-01-21T21:42:17.227Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000290', 'U0000067', 'X0000016', 9, '2023-10-11T04:04:46.882Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000290', 'OR000290', 66.51, '2023-10-11T04:04:46.882Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000291', 'U0000028', 'X0000750', 48, '2024-03-23T15:55:44.296Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000291', 'OR000291', 17.92, '2024-03-23T15:55:44.296Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000291', 'OR000291', '889 St John''s Road', '2024-03-26T15:55:44.296Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000292', 'U0000079', 'X0000964', 27, '2023-10-23T01:18:42.761Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000292', 'OR000292', 185.88, '2023-10-23T01:18:42.761Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000292', 'OR000292', '16043 Brenna Landing', '2023-10-24T01:18:42.761Z','2023-10-27T01:18:42.761Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000293', 'U0000079', 'X0000198', 5, '2023-10-28T04:23:11.403Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000294', 'U0000024', 'X0000804', 8, '2024-03-30T20:50:38.396Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000294', 'OR000294', 46.34, '2024-03-30T20:50:38.396Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000295', 'U0000083', 'X0000551', 42, '2023-11-03T20:38:54.955Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000295', 'OR000295', 78.18, '2023-11-03T20:38:54.955Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000295', 'OR000295', '5520 Beach Road', '2023-11-06T20:38:54.955Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000296', 'U0000060', 'X0000042', 5, '2024-01-04T12:40:03.674Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000296', 'OR000296', 81.5, '2024-01-04T12:40:03.674Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000296', 'OR000296', '39988 Ryan Lodge', '2024-01-08T12:40:03.674Z','2024-01-12T12:40:03.674Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000297', 'U0000045', 'X0000674', 3, '2023-11-08T20:01:35.303Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000298', 'U0000060', 'X0000819', 7, '2023-12-26T01:00:23.431Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000298', 'OR000298', 125.97, '2023-12-26T01:00:23.431Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000299', 'U0000001', 'X0000972', 15, '2024-01-24T18:34:39.211Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000299', 'OR000299', 307.51, '2024-01-24T18:34:39.211Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000299', 'OR000299', '250 N Cedar Street', '2024-01-28T18:34:39.211Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000300', 'U0000062', 'X0000609', 10, '2024-03-16T17:55:51.940Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000300', 'OR000300', 135.57, '2024-03-16T17:55:51.940Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000300', 'OR000300', '9219 Cassin Trace', '2024-03-20T17:55:51.940Z','2024-03-21T17:55:51.940Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000301', 'U0000036', 'X0000885', 75, '2023-10-01T09:27:08.497Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000302', 'U0000012', 'X0000351', 51, '2024-01-09T19:15:30.981Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000302', 'OR000302', 63.24, '2024-01-09T19:15:30.981Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000303', 'U0000084', 'X0000933', 21, '2024-01-25T19:54:52.491Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000303', 'OR000303', 86.39, '2024-01-25T19:54:52.491Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000303', 'OR000303', '20325 Brock Heights', '2024-01-28T19:54:52.491Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000304', 'U0000009', 'X0000177', 1, '2023-10-11T23:34:44.529Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000304', 'OR000304', 110.46, '2023-10-11T23:34:44.529Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000304', 'OR000304', '744 Christiansen Locks', '2023-10-14T23:34:44.529Z','2023-10-18T23:34:44.529Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000305', 'U0000086', 'X0000388', 71, '2023-10-17T08:42:16.797Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000306', 'U0000002', 'X0000243', 25, '2023-10-02T12:38:06.809Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000306', 'OR000306', 34.86, '2023-10-02T12:38:06.809Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000307', 'U0000098', 'X0000627', 5, '2024-02-02T22:30:54.631Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000307', 'OR000307', 12.04, '2024-02-02T22:30:54.631Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000307', 'OR000307', '9279 Marcelo Tunnel', '2024-02-04T22:30:54.631Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000308', 'U0000063', 'X0000365', 11, '2024-01-22T19:12:39.771Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000308', 'OR000308', 60.93, '2024-01-22T19:12:39.771Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000308', 'OR000308', '876 Market Street', '2024-01-25T19:12:39.771Z','2024-01-29T19:12:39.771Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000309', 'U0000054', 'X0000457', 27, '2023-12-20T22:47:52.674Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000310', 'U0000045', 'X0000371', 13, '2023-12-15T08:54:11.841Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000310', 'OR000310', 100.44, '2023-12-15T08:54:11.841Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000311', 'U0000077', 'X0000463', 12, '2024-01-09T18:09:50.461Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000311', 'OR000311', 27.12, '2024-01-09T18:09:50.461Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000311', 'OR000311', '9507 Gottlieb Gateway', '2024-01-13T18:09:50.461Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000312', 'U0000015', 'X0000004', 27, '2024-01-06T16:37:24.759Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000312', 'OR000312', 123.06, '2024-01-06T16:37:24.759Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000312', 'OR000312', '34992 Maybelle Run', '2024-01-07T16:37:24.759Z','2024-01-12T16:37:24.759Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000313', 'U0000075', 'X0000948', 27, '2024-03-10T07:03:42.690Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000314', 'U0000060', 'X0000984', 1, '2023-12-30T05:25:39.557Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000314', 'OR000314', 186.09, '2023-12-30T05:25:39.557Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000315', 'U0000062', 'X0000038', 6, '2024-02-13T07:10:49.365Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000315', 'OR000315', 54.77, '2024-02-13T07:10:49.365Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000315', 'OR000315', '9219 Cassin Trace', '2024-02-16T07:10:49.365Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000316', 'U0000014', 'X0000577', 61, '2024-03-06T11:13:07.681Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000316', 'OR000316', 158.64, '2024-03-06T11:13:07.681Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000316', 'OR000316', '55447 Warren Close', '2024-03-11T11:13:07.681Z','2024-03-14T11:13:07.681Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000317', 'U0000100', 'X0000010', 13, '2023-10-26T10:32:26.760Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000318', 'U0000011', 'X0000613', 80, '2024-01-17T01:27:26.309Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000318', 'OR000318', 34.52, '2024-01-17T01:27:26.309Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000319', 'U0000066', 'X0000648', 9, '2023-11-06T22:45:11.557Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000319', 'OR000319', 12.33, '2023-11-06T22:45:11.557Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000319', 'OR000319', '514 Jefferson Avenue', '2023-11-09T22:45:11.557Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000320', 'U0000058', 'X0000559', 14, '2024-03-07T12:44:25.066Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000320', 'OR000320', 16.08, '2024-03-07T12:44:25.066Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000320', 'OR000320', '62184 W 12th Street', '2024-03-12T12:44:25.066Z','2024-03-17T12:44:25.066Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000321', 'U0000052', 'X0000327', 3, '2023-10-02T10:16:25.035Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000322', 'U0000094', 'X0000698', 23, '2023-11-08T17:58:45.947Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000322', 'OR000322', 106.65, '2023-11-08T17:58:45.947Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000323', 'U0000070', 'X0000452', 15, '2023-12-21T06:12:33.697Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000323', 'OR000323', 38.8, '2023-12-21T06:12:33.697Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000323', 'OR000323', '88565 N Harrison Street', '2023-12-22T06:12:33.697Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000324', 'U0000040', 'X0000511', 58, '2023-12-20T06:46:42.497Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000324', 'OR000324', 39.72, '2023-12-20T06:46:42.497Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000324', 'OR000324', '54268 Schimmel Burg', '2023-12-21T06:46:42.497Z','2023-12-24T06:46:42.497Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000325', 'U0000097', 'X0000251', 1, '2023-10-28T06:40:43.767Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000326', 'U0000092', 'X0000253', 4, '2024-01-05T08:54:00.887Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000326', 'OR000326', 17.54, '2024-01-05T08:54:00.887Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000327', 'U0000021', 'X0000229', 26, '2023-11-17T18:43:06.691Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000327', 'OR000327', 254.85, '2023-11-17T18:43:06.691Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000327', 'OR000327', '5955 S Market Street', '2023-11-20T18:43:06.691Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000328', 'U0000066', 'X0000447', 25, '2024-01-14T09:24:29.804Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000328', 'OR000328', 255.69, '2024-01-14T09:24:29.804Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000328', 'OR000328', '514 Jefferson Avenue', '2024-01-17T09:24:29.804Z','2024-01-20T09:24:29.804Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000329', 'U0000020', 'X0000337', 72, '2024-02-25T19:29:21.814Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000330', 'U0000080', 'X0000374', 13, '2024-03-12T16:22:15.370Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000330', 'OR000330', 29.34, '2024-03-12T16:22:15.370Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000331', 'U0000056', 'X0000527', 34, '2024-03-30T15:33:47.111Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000331', 'OR000331', 27.95, '2024-03-30T15:33:47.111Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000331', 'OR000331', '255 Chester Lakes', '2024-04-02T15:33:47.111Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000332', 'U0000008', 'X0000174', 44, '2024-02-07T08:13:28.864Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000332', 'OR000332', 30.78, '2024-02-07T08:13:28.864Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000332', 'OR000332', '6391 Grayson Islands', '2024-02-08T08:13:28.864Z','2024-02-11T08:13:28.864Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000333', 'U0000093', 'X0000767', 8, '2024-01-15T10:20:45.208Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000334', 'U0000049', 'X0000487', 28, '2024-03-24T17:16:22.624Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000334', 'OR000334', 34.41, '2024-03-24T17:16:22.624Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000335', 'U0000096', 'X0000645', 9, '2023-12-25T01:37:02.682Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000335', 'OR000335', 67.92, '2023-12-25T01:37:02.682Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000335', 'OR000335', '28976 Laurel Rue', '2023-12-30T01:37:02.682Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000336', 'U0000090', 'X0000494', 26, '2024-02-17T07:10:33.118Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000336', 'OR000336', 99.52, '2024-02-17T07:10:33.118Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000336', 'OR000336', '94225 Hassan Mills', '2024-02-20T07:10:33.118Z','2024-02-21T07:10:33.118Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000337', 'U0000087', 'X0000098', 19, '2024-03-17T19:29:35.993Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000338', 'U0000070', 'X0000914', 1, '2024-02-02T09:46:10.414Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000338', 'OR000338', 34.98, '2024-02-02T09:46:10.414Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000339', 'U0000087', 'X0000608', 52, '2024-03-09T00:45:33.911Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000339', 'OR000339', 160.4, '2024-03-09T00:45:33.911Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000339', 'OR000339', '773 Cartwright Ridge', '2024-03-10T00:45:33.911Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000340', 'U0000017', 'X0000558', 71, '2024-03-02T07:44:17.937Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000340', 'OR000340', 46.77, '2024-03-02T07:44:17.937Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000340', 'OR000340', '658 Lavada Alley', '2024-03-03T07:44:17.937Z','2024-03-08T07:44:17.937Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000341', 'U0000018', 'X0000157', 36, '2023-12-14T14:26:42.744Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000342', 'U0000075', 'X0000901', 44, '2024-02-22T15:24:44.925Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000342', 'OR000342', 65.61, '2024-02-22T15:24:44.925Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000343', 'U0000060', 'X0000614', 22, '2024-03-07T14:56:25.348Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000343', 'OR000343', 806.94, '2024-03-07T14:56:25.348Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000343', 'OR000343', '39988 Ryan Lodge', '2024-03-09T14:56:25.348Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000344', 'U0000029', 'X0000291', 8, '2024-01-21T23:39:23.240Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000344', 'OR000344', 1026.19, '2024-01-21T23:39:23.240Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000344', 'OR000344', '842 Nitzsche Knoll', '2024-01-25T23:39:23.240Z','2024-01-27T23:39:23.240Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000345', 'U0000025', 'X0000756', 31, '2024-02-12T13:56:07.023Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000346', 'U0000076', 'X0000873', 3, '2023-12-28T07:01:59.389Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000346', 'OR000346', 145.89, '2023-12-28T07:01:59.389Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000347', 'U0000097', 'X0000956', 17, '2024-01-17T07:01:58.727Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000347', 'OR000347', 56.93, '2024-01-17T07:01:58.727Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000347', 'OR000347', '14604 Jermaine Junctions', '2024-01-18T07:01:58.727Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000348', 'U0000058', 'X0000684', 1, '2024-01-19T09:38:34.560Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000348', 'OR000348', 203.1, '2024-01-19T09:38:34.560Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000348', 'OR000348', '62184 W 12th Street', '2024-01-20T09:38:34.560Z','2024-01-24T09:38:34.560Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000349', 'U0000002', 'X0000637', 47, '2024-01-18T00:57:48.474Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000350', 'U0000051', 'X0000754', 80, '2023-11-23T18:07:39.954Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000350', 'OR000350', 296.14, '2023-11-23T18:07:39.954Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000351', 'U0000013', 'X0000735', 26, '2023-10-31T12:51:04.917Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000351', 'OR000351', 119.95, '2023-10-31T12:51:04.917Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000351', 'OR000351', '7082 Muller Meadow', '2023-11-04T12:51:04.917Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000352', 'U0000088', 'X0000007', 3, '2024-02-09T15:33:55.006Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000352', 'OR000352', 163.65, '2024-02-09T15:33:55.006Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000352', 'OR000352', '3693 Jason Motorway', '2024-02-14T15:33:55.006Z','2024-02-15T15:33:55.006Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000353', 'U0000098', 'X0000738', 65, '2023-11-28T09:12:05.435Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000354', 'U0000099', 'X0000400', 34, '2023-10-14T07:46:24.292Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000354', 'OR000354', 194.85, '2023-10-14T07:46:24.292Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000355', 'U0000068', 'X0000245', 18, '2024-03-25T17:00:55.578Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000355', 'OR000355', 111.81, '2024-03-25T17:00:55.578Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000355', 'OR000355', '597 Destiny Gateway', '2024-03-28T17:00:55.578Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000356', 'U0000013', 'X0000511', 41, '2024-01-06T17:07:59.210Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000356', 'OR000356', 39.72, '2024-01-06T17:07:59.210Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000356', 'OR000356', '7082 Muller Meadow', '2024-01-10T17:07:59.210Z','2024-01-12T17:07:59.210Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000357', 'U0000066', 'X0000743', 25, '2023-10-22T17:18:03.376Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000358', 'U0000091', 'X0000334', 23, '2023-11-25T15:29:19.551Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000358', 'OR000358', 136.41, '2023-11-25T15:29:19.551Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000359', 'U0000045', 'X0000828', 5, '2023-12-09T21:05:51.221Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000359', 'OR000359', 728.37, '2023-12-09T21:05:51.221Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000359', 'OR000359', '893 Cummerata Trail', '2023-12-13T21:05:51.221Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000360', 'U0000033', 'X0000824', 9, '2024-02-07T04:09:48.455Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000360', 'OR000360', 25.23, '2024-02-07T04:09:48.455Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000360', 'OR000360', '1975 Main Street', '2024-02-10T04:09:48.455Z','2024-02-15T04:09:48.455Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000361', 'U0000090', 'X0000123', 48, '2024-01-13T23:09:27.618Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000362', 'U0000083', 'X0000513', 63, '2024-02-25T08:56:55.326Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000362', 'OR000362', 28.61, '2024-02-25T08:56:55.326Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000363', 'U0000009', 'X0000628', 65, '2024-02-29T02:49:29.978Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000363', 'OR000363', 134.75, '2024-02-29T02:49:29.978Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000363', 'OR000363', '744 Christiansen Locks', '2024-03-03T02:49:29.978Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000364', 'U0000061', 'X0000537', 84, '2023-12-06T05:48:04.264Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000364', 'OR000364', 1052.91, '2023-12-06T05:48:04.264Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000364', 'OR000364', '80281 Cathrine Field', '2023-12-09T05:48:04.264Z','2023-12-12T05:48:04.264Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000365', 'U0000088', 'X0000259', 7, '2023-12-20T09:45:55.737Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000366', 'U0000071', 'X0000764', 50, '2023-11-20T22:02:07.125Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000366', 'OR000366', 133.89, '2023-11-20T22:02:07.125Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000367', 'U0000015', 'X0000140', 3, '2024-03-27T20:50:05.735Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000367', 'OR000367', 124.6, '2024-03-27T20:50:05.735Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000367', 'OR000367', '34992 Maybelle Run', '2024-03-28T20:50:05.735Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000368', 'U0000090', 'X0000559', 22, '2024-01-10T11:45:55.493Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000368', 'OR000368', 16.08, '2024-01-10T11:45:55.493Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000368', 'OR000368', '94225 Hassan Mills', '2024-01-12T11:45:55.493Z','2024-01-16T11:45:55.493Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000369', 'U0000060', 'X0000843', 44, '2024-02-05T04:36:00.587Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000370', 'U0000021', 'X0000739', 46, '2023-11-30T14:47:00.463Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000370', 'OR000370', 9.63, '2023-11-30T14:47:00.463Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000371', 'U0000089', 'X0000315', 6, '2023-12-04T17:37:28.041Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000371', 'OR000371', 100.48, '2023-12-04T17:37:28.041Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000371', 'OR000371', '14414 Gleichner Haven', '2023-12-05T17:37:28.041Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000372', 'U0000035', 'X0000357', 15, '2024-03-21T13:48:01.840Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000372', 'OR000372', 43.92, '2024-03-21T13:48:01.840Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000372', 'OR000372', '80090 Schmidt Plains', '2024-03-24T13:48:01.840Z','2024-03-28T13:48:01.840Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000373', 'U0000050', 'X0000754', 72, '2024-03-04T08:32:32.064Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000374', 'U0000059', 'X0000319', 17, '2023-12-26T12:08:56.250Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000374', 'OR000374', 47.31, '2023-12-26T12:08:56.250Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000375', 'U0000002', 'X0000003', 17, '2024-03-18T14:29:57.633Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000375', 'OR000375', 36.93, '2024-03-18T14:29:57.633Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000375', 'OR000375', '806 Ferry Road', '2024-03-22T14:29:57.633Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000376', 'U0000061', 'X0000002', 31, '2024-03-24T05:08:05.473Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000376', 'OR000376', 46.45, '2024-03-24T05:08:05.473Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000376', 'OR000376', '80281 Cathrine Field', '2024-03-25T05:08:05.473Z','2024-03-28T05:08:05.473Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000377', 'U0000014', 'X0000451', 28, '2023-11-24T16:17:06.457Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000378', 'U0000022', 'X0000399', 2, '2023-12-10T02:18:52.857Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000378', 'OR000378', 141.9, '2023-12-10T02:18:52.857Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000379', 'U0000016', 'X0000364', 6, '2023-12-25T20:24:41.226Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000379', 'OR000379', 49.95, '2023-12-25T20:24:41.226Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000379', 'OR000379', '714 N Cedar Street', '2023-12-28T20:24:41.226Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000380', 'U0000020', 'X0000013', 6, '2023-12-01T17:54:45.867Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000380', 'OR000380', 1168.15, '2023-12-01T17:54:45.867Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000380', 'OR000380', '85931 Pagac Brook', '2023-12-06T17:54:45.867Z','2023-12-10T17:54:45.867Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000381', 'U0000041', 'X0000604', 38, '2023-11-01T06:49:20.618Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000382', 'U0000033', 'X0000946', 14, '2024-03-08T13:51:21.339Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000382', 'OR000382', 71.14, '2024-03-08T13:51:21.339Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000383', 'U0000066', 'X0000118', 45, '2023-10-10T10:24:17.332Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000383', 'OR000383', 11.4, '2023-10-10T10:24:17.332Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000383', 'OR000383', '514 Jefferson Avenue', '2023-10-11T10:24:17.332Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000384', 'U0000055', 'X0000616', 16, '2023-12-04T14:12:06.023Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000384', 'OR000384', 147.02, '2023-12-04T14:12:06.023Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000384', 'OR000384', '4086 Braun Terrace', '2023-12-08T14:12:06.023Z','2023-12-10T14:12:06.023Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000385', 'U0000030', 'X0000019', 40, '2023-11-04T01:38:18.548Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000386', 'U0000061', 'X0000692', 22, '2024-01-16T18:36:25.339Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000386', 'OR000386', 494.61, '2024-01-16T18:36:25.339Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000387', 'U0000056', 'X0000849', 2, '2024-02-12T07:09:43.523Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000387', 'OR000387', 102.45, '2024-02-12T07:09:43.523Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000387', 'OR000387', '255 Chester Lakes', '2024-02-16T07:09:43.523Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000388', 'U0000023', 'X0000535', 19, '2023-11-29T12:34:28.347Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000388', 'OR000388', 69.45, '2023-11-29T12:34:28.347Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000388', 'OR000388', '3935 Magnolia Trail', '2023-12-03T12:34:28.347Z','2023-12-06T12:34:28.347Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000389', 'U0000029', 'X0000497', 3, '2024-03-29T16:36:08.202Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000390', 'U0000018', 'X0000128', 10, '2023-12-27T11:23:04.949Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000390', 'OR000390', 15.88, '2023-12-27T11:23:04.949Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000391', 'U0000048', 'X0000210', 5, '2024-03-31T13:14:06.893Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000391', 'OR000391', 150.78, '2024-03-31T13:14:06.893Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000391', 'OR000391', '9885 Priory Road', '2024-04-03T13:14:06.893Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000392', 'U0000073', 'X0000633', 38, '2023-11-27T02:58:01.369Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000392', 'OR000392', 88.25, '2023-11-27T02:58:01.369Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000392', 'OR000392', '2363 Ruecker Valley', '2023-11-28T02:58:01.369Z','2023-11-29T02:58:01.369Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000393', 'U0000083', 'X0000143', 5, '2023-10-27T22:35:19.058Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000394', 'U0000019', 'X0000997', 11, '2024-03-07T20:24:33.495Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000394', 'OR000394', 124.16, '2024-03-07T20:24:33.495Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000395', 'U0000005', 'X0000224', 30, '2024-01-28T04:37:23.173Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000395', 'OR000395', 121.43, '2024-01-28T04:37:23.173Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000395', 'OR000395', '249 Dickinson Motorway', '2024-01-31T04:37:23.173Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000396', 'U0000045', 'X0000076', 24, '2023-10-13T07:52:30.620Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000396', 'OR000396', 116.67, '2023-10-13T07:52:30.620Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000396', 'OR000396', '893 Cummerata Trail', '2023-10-17T07:52:30.620Z','2023-10-18T07:52:30.620Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000397', 'U0000014', 'X0000493', 70, '2023-10-31T08:49:49.280Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000398', 'U0000016', 'X0000887', 5, '2024-03-17T05:51:07.807Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000398', 'OR000398', 223.95, '2024-03-17T05:51:07.807Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000399', 'U0000083', 'X0000355', 8, '2023-12-10T00:17:38.435Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000399', 'OR000399', 198.75, '2023-12-10T00:17:38.435Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000399', 'OR000399', '5520 Beach Road', '2023-12-15T00:17:38.435Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000400', 'U0000096', 'X0000692', 7, '2024-01-09T21:31:53.544Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000400', 'OR000400', 494.61, '2024-01-09T21:31:53.544Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000400', 'OR000400', '28976 Laurel Rue', '2024-01-10T21:31:53.544Z','2024-01-14T21:31:53.544Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000401', 'U0000034', 'X0000959', 32, '2024-03-05T09:39:05.435Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000402', 'U0000077', 'X0000360', 23, '2023-11-15T07:45:44.928Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000402', 'OR000402', 1308.03, '2023-11-15T07:45:44.928Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000403', 'U0000016', 'X0000461', 29, '2023-11-18T06:46:31.497Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000403', 'OR000403', 47.22, '2023-11-18T06:46:31.497Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000403', 'OR000403', '714 N Cedar Street', '2023-11-21T06:46:31.497Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000404', 'U0000016', 'X0000249', 3, '2023-10-09T08:13:56.978Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000404', 'OR000404', 20.87, '2023-10-09T08:13:56.978Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000404', 'OR000404', '714 N Cedar Street', '2023-10-10T08:13:56.978Z','2023-10-12T08:13:56.978Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000405', 'U0000086', 'X0000091', 13, '2024-01-17T14:12:17.413Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000406', 'U0000078', 'X0000070', 6, '2024-03-27T07:01:07.629Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000406', 'OR000406', 35.22, '2024-03-27T07:01:07.629Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000407', 'U0000031', 'X0000798', 87, '2024-03-07T07:27:35.280Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000407', 'OR000407', 258, '2024-03-07T07:27:35.280Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000407', 'OR000407', '192 Roberts Branch', '2024-03-09T07:27:35.280Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000408', 'U0000005', 'X0000459', 4, '2023-12-23T05:45:27.461Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000408', 'OR000408', 17.29, '2023-12-23T05:45:27.461Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000408', 'OR000408', '249 Dickinson Motorway', '2023-12-24T05:45:27.461Z','2023-12-25T05:45:27.461Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000409', 'U0000009', 'X0000317', 87, '2023-10-08T12:41:53.894Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000410', 'U0000014', 'X0000441', 9, '2024-02-20T00:49:23.349Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000410', 'OR000410', 892.21, '2024-02-20T00:49:23.349Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000411', 'U0000024', 'X0000916', 55, '2023-11-16T01:35:49.296Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000411', 'OR000411', 33.91, '2023-11-16T01:35:49.296Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000411', 'OR000411', '6494 Lind Pass', '2023-11-21T01:35:49.296Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000412', 'U0000009', 'X0000534', 29, '2023-12-23T10:23:25.021Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000412', 'OR000412', 249.84, '2023-12-23T10:23:25.021Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000412', 'OR000412', '744 Christiansen Locks', '2023-12-28T10:23:25.021Z','2024-01-02T10:23:25.021Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000413', 'U0000085', 'X0000895', 6, '2024-03-10T07:17:57.974Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000414', 'U0000052', 'X0000124', 12, '2024-01-27T01:41:49.847Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000414', 'OR000414', 27.83, '2024-01-27T01:41:49.847Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000415', 'U0000025', 'X0000408', 2, '2023-10-27T03:01:19.286Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000415', 'OR000415', 140.87, '2023-10-27T03:01:19.286Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000415', 'OR000415', '6274 Jerrod Plain', '2023-10-30T03:01:19.286Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000416', 'U0000002', 'X0000053', 56, '2023-12-21T12:06:29.880Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000416', 'OR000416', 65.62, '2023-12-21T12:06:29.880Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000416', 'OR000416', '806 Ferry Road', '2023-12-24T12:06:29.880Z','2023-12-25T12:06:29.880Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000417', 'U0000099', 'X0000611', 25, '2023-10-08T10:45:55.838Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000418', 'U0000040', 'X0000398', 45, '2023-11-06T21:50:19.692Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000418', 'OR000418', 56.41, '2023-11-06T21:50:19.692Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000419', 'U0000100', 'X0000454', 26, '2024-01-14T19:03:36.741Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000419', 'OR000419', 94.35, '2024-01-14T19:03:36.741Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000419', 'OR000419', '67999 Gavin Unions', '2024-01-16T19:03:36.741Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000420', 'U0000006', 'X0000141', 13, '2023-11-21T10:31:11.729Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000420', 'OR000420', 1077.3, '2023-11-21T10:31:11.729Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000420', 'OR000420', '1792 Emelie Motorway', '2023-11-25T10:31:11.729Z','2023-11-26T10:31:11.729Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000421', 'U0000079', 'X0000030', 1, '2023-11-30T05:00:27.288Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000422', 'U0000015', 'X0000438', 47, '2024-03-27T01:42:15.221Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000422', 'OR000422', 200.22, '2024-03-27T01:42:15.221Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000423', 'U0000039', 'X0000842', 39, '2024-02-05T05:11:43.723Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000423', 'OR000423', 21.45, '2024-02-05T05:11:43.723Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000423', 'OR000423', '94686 N Broadway', '2024-02-07T05:11:43.723Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000424', 'U0000086', 'X0000026', 1, '2023-11-06T11:40:05.187Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000424', 'OR000424', 21.18, '2023-11-06T11:40:05.187Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000424', 'OR000424', '69611 Pound Lane', '2023-11-07T11:40:05.187Z','2023-11-08T11:40:05.187Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000425', 'U0000032', 'X0000577', 4, '2024-01-07T07:47:43.388Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000426', 'U0000033', 'X0000305', 6, '2024-01-23T10:03:42.628Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000426', 'OR000426', 119.98, '2024-01-23T10:03:42.628Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000427', 'U0000011', 'X0000807', 35, '2024-03-27T18:31:34.709Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000427', 'OR000427', 90.16, '2024-03-27T18:31:34.709Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000427', 'OR000427', '41055 Quitzon Estate', '2024-03-29T18:31:34.709Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000428', 'U0000092', 'X0000428', 27, '2023-10-31T09:14:30.607Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000428', 'OR000428', 240.66, '2023-10-31T09:14:30.607Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000428', 'OR000428', '124 Delaney Point', '2023-11-01T09:14:30.607Z','2023-11-04T09:14:30.607Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000429', 'U0000023', 'X0000585', 84, '2023-11-28T15:17:33.127Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000430', 'U0000054', 'X0000107', 20, '2024-01-07T10:12:12.019Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000430', 'OR000430', 134.81, '2024-01-07T10:12:12.019Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000431', 'U0000082', 'X0000008', 19, '2024-03-28T21:47:07.473Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000431', 'OR000431', 17.76, '2024-03-28T21:47:07.473Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000431', 'OR000431', '6029 Mill Street', '2024-03-30T21:47:07.473Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000432', 'U0000055', 'X0000266', 68, '2023-12-11T05:27:03.820Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000432', 'OR000432', 389.99, '2023-12-11T05:27:03.820Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000432', 'OR000432', '4086 Braun Terrace', '2023-12-12T05:27:03.820Z','2023-12-15T05:27:03.820Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000433', 'U0000066', 'X0000003', 17, '2024-03-21T12:02:35.553Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000434', 'U0000071', 'X0000073', 54, '2024-02-20T22:39:19.174Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000434', 'OR000434', 167.23, '2024-02-20T22:39:19.174Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000435', 'U0000084', 'X0000727', 11, '2024-02-29T22:56:10.269Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000435', 'OR000435', 54.54, '2024-02-29T22:56:10.269Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000435', 'OR000435', '20325 Brock Heights', '2024-03-01T22:56:10.269Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000436', 'U0000100', 'X0000673', 51, '2023-10-20T02:55:09.644Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000436', 'OR000436', 641.88, '2023-10-20T02:55:09.644Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000436', 'OR000436', '67999 Gavin Unions', '2023-10-21T02:55:09.644Z','2023-10-22T02:55:09.644Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000437', 'U0000038', 'X0000646', 78, '2023-12-07T00:21:55.999Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000438', 'U0000032', 'X0000769', 5, '2024-03-18T18:23:38.523Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000438', 'OR000438', 46.76, '2024-03-18T18:23:38.523Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000439', 'U0000033', 'X0000291', 4, '2023-12-30T04:34:56.808Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000439', 'OR000439', 1026.19, '2023-12-30T04:34:56.808Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000439', 'OR000439', '1975 Main Street', '2023-12-31T04:34:56.808Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000440', 'U0000060', 'X0000949', 54, '2024-01-03T07:00:31.517Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000440', 'OR000440', 86.7, '2024-01-03T07:00:31.517Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000440', 'OR000440', '39988 Ryan Lodge', '2024-01-05T07:00:31.517Z','2024-01-07T07:00:31.517Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000441', 'U0000090', 'X0000938', 24, '2024-02-04T21:01:51.619Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000442', 'U0000087', 'X0000906', 3, '2024-01-14T06:21:02.626Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000442', 'OR000442', 266.14, '2024-01-14T06:21:02.626Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000443', 'U0000022', 'X0000491', 50, '2024-02-12T10:55:58.696Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000443', 'OR000443', 242.97, '2024-02-12T10:55:58.696Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000443', 'OR000443', '761 Rey Shoals', '2024-02-13T10:55:58.696Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000444', 'U0000071', 'X0000118', 52, '2023-12-01T23:46:04.680Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000444', 'OR000444', 11.4, '2023-12-01T23:46:04.680Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000444', 'OR000444', '7624 Smith Lights', '2023-12-02T23:46:04.680Z','2023-12-05T23:46:04.680Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000445', 'U0000018', 'X0000508', 3, '2023-11-26T06:19:43.784Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000446', 'U0000010', 'X0000578', 9, '2023-11-17T19:45:46.524Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000446', 'OR000446', 911.96, '2023-11-17T19:45:46.524Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000447', 'U0000087', 'X0000670', 42, '2023-10-19T06:24:22.826Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000447', 'OR000447', 83.7, '2023-10-19T06:24:22.826Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000447', 'OR000447', '773 Cartwright Ridge', '2023-10-22T06:24:22.826Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000448', 'U0000038', 'X0000515', 50, '2024-01-22T21:02:10.695Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000448', 'OR000448', 93.51, '2024-01-22T21:02:10.695Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000448', 'OR000448', '44261 Maye Wells', '2024-01-25T21:02:10.695Z','2024-01-30T21:02:10.695Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000449', 'U0000095', 'X0000710', 31, '2024-03-31T20:17:35.160Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000450', 'U0000058', 'X0000965', 60, '2023-10-20T12:13:30.309Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000450', 'OR000450', 181.98, '2023-10-20T12:13:30.309Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000451', 'U0000026', 'X0000297', 20, '2024-02-18T00:22:24.242Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000451', 'OR000451', 50.37, '2024-02-18T00:22:24.242Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000451', 'OR000451', '323 Emmerich Course', '2024-02-21T00:22:24.242Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000452', 'U0000011', 'X0000470', 46, '2023-11-06T02:57:21.130Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000452', 'OR000452', 136.35, '2023-11-06T02:57:21.130Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000452', 'OR000452', '41055 Quitzon Estate', '2023-11-08T02:57:21.130Z','2023-11-12T02:57:21.130Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000453', 'U0000016', 'X0000227', 20, '2023-10-22T09:33:46.966Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000454', 'U0000047', 'X0000357', 2, '2024-02-17T15:41:35.720Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000454', 'OR000454', 43.92, '2024-02-17T15:41:35.720Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000455', 'U0000086', 'X0000687', 12, '2024-02-15T21:27:28.221Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000455', 'OR000455', 88.94, '2024-02-15T21:27:28.221Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000455', 'OR000455', '69611 Pound Lane', '2024-02-19T21:27:28.221Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000456', 'U0000034', 'X0000541', 30, '2023-12-22T19:28:37.214Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000456', 'OR000456', 595.63, '2023-12-22T19:28:37.214Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000456', 'OR000456', '33811 E Main Street', '2023-12-24T19:28:37.214Z','2023-12-29T19:28:37.214Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000457', 'U0000038', 'X0000766', 18, '2024-01-08T22:24:41.377Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000458', 'U0000030', 'X0000492', 77, '2023-10-24T18:29:02.574Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000458', 'OR000458', 153.6, '2023-10-24T18:29:02.574Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000459', 'U0000050', 'X0000058', 12, '2023-10-17T16:47:38.205Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000459', 'OR000459', 189.77, '2023-10-17T16:47:38.205Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000459', 'OR000459', '385 Mill Street', '2023-10-21T16:47:38.205Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000460', 'U0000096', 'X0000677', 36, '2024-01-24T13:09:54.441Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000460', 'OR000460', 85.32, '2024-01-24T13:09:54.441Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000460', 'OR000460', '28976 Laurel Rue', '2024-01-29T13:09:54.441Z','2024-02-03T13:09:54.441Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000461', 'U0000036', 'X0000678', 17, '2023-12-10T22:32:14.119Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000462', 'U0000046', 'X0000048', 27, '2024-03-17T03:25:52.869Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000462', 'OR000462', 37.83, '2024-03-17T03:25:52.869Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000463', 'U0000070', 'X0000914', 13, '2023-12-06T09:47:27.588Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000463', 'OR000463', 34.98, '2023-12-06T09:47:27.588Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000463', 'OR000463', '88565 N Harrison Street', '2023-12-07T09:47:27.588Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000464', 'U0000064', 'X0000631', 42, '2024-01-04T01:00:59.942Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000464', 'OR000464', 289.63, '2024-01-04T01:00:59.942Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000464', 'OR000464', '1692 Smith Street', '2024-01-08T01:00:59.942Z','2024-01-09T01:00:59.942Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000465', 'U0000061', 'X0000224', 51, '2023-12-23T05:40:35.414Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000466', 'U0000031', 'X0000412', 16, '2023-11-10T13:58:03.459Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000466', 'OR000466', 51.73, '2023-11-10T13:58:03.459Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000467', 'U0000081', 'X0000913', 9, '2023-12-19T05:38:06.005Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000467', 'OR000467', 154.37, '2023-12-19T05:38:06.005Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000467', 'OR000467', '327 Hills Summit', '2023-12-24T05:38:06.005Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000468', 'U0000005', 'X0000989', 50, '2023-11-11T17:12:48.778Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000468', 'OR000468', 150.48, '2023-11-11T17:12:48.778Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000468', 'OR000468', '249 Dickinson Motorway', '2023-11-16T17:12:48.778Z','2023-11-18T17:12:48.778Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000469', 'U0000025', 'X0000246', 14, '2024-01-18T03:25:06.738Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000470', 'U0000015', 'X0000760', 35, '2023-11-07T12:23:40.219Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000470', 'OR000470', 24.59, '2023-11-07T12:23:40.219Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000471', 'U0000088', 'X0000554', 45, '2023-11-29T12:00:07.630Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000471', 'OR000471', 87.59, '2023-11-29T12:00:07.630Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000471', 'OR000471', '3693 Jason Motorway', '2023-12-01T12:00:07.630Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000472', 'U0000092', 'X0000677', 21, '2024-02-25T04:09:24.702Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000472', 'OR000472', 85.32, '2024-02-25T04:09:24.702Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000472', 'OR000472', '124 Delaney Point', '2024-02-28T04:09:24.702Z','2024-03-01T04:09:24.702Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000473', 'U0000075', 'X0000897', 2, '2023-12-11T06:17:04.802Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000474', 'U0000012', 'X0000962', 15, '2024-01-12T08:25:28.601Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000474', 'OR000474', 921.68, '2024-01-12T08:25:28.601Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000475', 'U0000068', 'X0000957', 12, '2023-11-29T08:25:04.528Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000475', 'OR000475', 80.58, '2023-11-29T08:25:04.528Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000475', 'OR000475', '597 Destiny Gateway', '2023-12-04T08:25:04.528Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000476', 'U0000083', 'X0000018', 3, '2023-11-13T20:32:38.227Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000476', 'OR000476', 25.86, '2023-11-13T20:32:38.227Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000476', 'OR000476', '5520 Beach Road', '2023-11-14T20:32:38.227Z','2023-11-16T20:32:38.227Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000477', 'U0000052', 'X0000361', 32, '2024-03-10T06:55:48.241Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000478', 'U0000049', 'X0000247', 9, '2023-11-11T06:06:58.607Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000478', 'OR000478', 191.31, '2023-11-11T06:06:58.607Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000479', 'U0000036', 'X0000706', 5, '2023-12-30T02:21:29.532Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000479', 'OR000479', 186.48, '2023-12-30T02:21:29.532Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000479', 'OR000479', '47427 Lime Grove', '2024-01-01T02:21:29.532Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000480', 'U0000034', 'X0000259', 27, '2024-02-28T23:38:25.362Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000480', 'OR000480', 77.7, '2024-02-28T23:38:25.362Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000480', 'OR000480', '33811 E Main Street', '2024-03-04T23:38:25.362Z','2024-03-09T23:38:25.362Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000481', 'U0000066', 'X0000561', 5, '2024-02-29T01:05:29.154Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000482', 'U0000022', 'X0000407', 2, '2023-12-15T04:44:55.621Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000482', 'OR000482', 58.86, '2023-12-15T04:44:55.621Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000483', 'U0000096', 'X0000553', 13, '2024-01-15T12:52:16.991Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000483', 'OR000483', 117.89, '2024-01-15T12:52:16.991Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000483', 'OR000483', '28976 Laurel Rue', '2024-01-19T12:52:16.991Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000484', 'U0000092', 'X0000842', 33, '2024-01-09T00:02:25.511Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000484', 'OR000484', 21.45, '2024-01-09T00:02:25.511Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000484', 'OR000484', '124 Delaney Point', '2024-01-10T00:02:25.511Z','2024-01-12T00:02:25.511Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000485', 'U0000006', 'X0000777', 12, '2023-11-02T02:54:17.772Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000486', 'U0000097', 'X0000469', 38, '2023-12-06T05:21:15.942Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000486', 'OR000486', 71.82, '2023-12-06T05:21:15.942Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000487', 'U0000057', 'X0000008', 11, '2023-12-07T00:18:07.348Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000487', 'OR000487', 17.76, '2023-12-07T00:18:07.348Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000487', 'OR000487', '3417 Camden Mission', '2023-12-11T00:18:07.348Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000488', 'U0000072', 'X0000974', 5, '2024-02-12T18:28:28.656Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000488', 'OR000488', 39.67, '2024-02-12T18:28:28.656Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000488', 'OR000488', '469 Lacy Rue', '2024-02-16T18:28:28.656Z','2024-02-21T18:28:28.656Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000489', 'U0000001', 'X0000075', 3, '2024-03-09T23:44:50.040Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000490', 'U0000098', 'X0000220', 25, '2024-02-20T00:22:17.019Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000490', 'OR000490', 53.25, '2024-02-20T00:22:17.019Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000491', 'U0000061', 'X0000423', 9, '2023-11-28T07:23:00.488Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000491', 'OR000491', 60.64, '2023-11-28T07:23:00.488Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000491', 'OR000491', '80281 Cathrine Field', '2023-11-29T07:23:00.488Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000492', 'U0000051', 'X0000270', 10, '2024-02-11T03:32:57.521Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000492', 'OR000492', 38.73, '2024-02-11T03:32:57.521Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000492', 'OR000492', '5981 Atlantic Avenue', '2024-02-15T03:32:57.521Z','2024-02-18T03:32:57.521Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000493', 'U0000047', 'X0000062', 28, '2024-01-04T14:22:18.769Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000494', 'U0000002', 'X0000046', 20, '2024-03-23T23:28:44.562Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000494', 'OR000494', 142.78, '2024-03-23T23:28:44.562Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000495', 'U0000032', 'X0000549', 37, '2023-10-20T18:56:16.858Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000495', 'OR000495', 1169.24, '2023-10-20T18:56:16.858Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000495', 'OR000495', '25440 S Water Street', '2023-10-22T18:56:16.858Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000496', 'U0000002', 'X0000197', 29, '2023-10-16T20:05:46.387Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000496', 'OR000496', 600.62, '2023-10-16T20:05:46.387Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000496', 'OR000496', '806 Ferry Road', '2023-10-18T20:05:46.387Z','2023-10-20T20:05:46.387Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000497', 'U0000086', 'X0000024', 23, '2023-10-20T13:51:35.522Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000498', 'U0000038', 'X0000660', 41, '2023-11-07T17:36:07.218Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000498', 'OR000498', 18.88, '2023-11-07T17:36:07.218Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000499', 'U0000078', 'X0000094', 67, '2023-11-01T22:57:15.145Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000499', 'OR000499', 1401.99, '2023-11-01T22:57:15.145Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000499', 'OR000499', '4575 Rippin Stravenue', '2023-11-04T22:57:15.145Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000500', 'U0000030', 'X0000458', 31, '2024-03-05T03:56:31.522Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000500', 'OR000500', 33.42, '2024-03-05T03:56:31.522Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000500', 'OR000500', '9883 Irving Loop', '2024-03-10T03:56:31.522Z','2024-03-12T03:56:31.522Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000501', 'U0000057', 'X0000731', 26, '2024-01-12T08:52:30.666Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000502', 'U0000087', 'X0000399', 18, '2024-03-05T21:24:49.493Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000502', 'OR000502', 141.9, '2024-03-05T21:24:49.493Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000503', 'U0000031', 'X0000968', 15, '2024-02-07T06:44:39.741Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000503', 'OR000503', 276.33, '2024-02-07T06:44:39.741Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000503', 'OR000503', '192 Roberts Branch', '2024-02-09T06:44:39.741Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000504', 'U0000005', 'X0000611', 37, '2024-02-29T16:16:46.541Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000504', 'OR000504', 32.13, '2024-02-29T16:16:46.541Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000504', 'OR000504', '249 Dickinson Motorway', '2024-03-04T16:16:46.541Z','2024-03-08T16:16:46.541Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000505', 'U0000005', 'X0000512', 70, '2023-10-15T22:16:34.684Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000506', 'U0000042', 'X0000037', 37, '2024-01-17T20:49:05.247Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000506', 'OR000506', 143.3, '2024-01-17T20:49:05.247Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000507', 'U0000046', 'X0000419', 12, '2023-12-23T07:48:48.655Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000507', 'OR000507', 36.67, '2023-12-23T07:48:48.655Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000507', 'OR000507', '5563 Juniper Close', '2023-12-27T07:48:48.655Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000508', 'U0000032', 'X0000062', 10, '2023-10-08T19:40:50.245Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000508', 'OR000508', 839.07, '2023-10-08T19:40:50.245Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000508', 'OR000508', '25440 S Water Street', '2023-10-11T19:40:50.245Z','2023-10-15T19:40:50.245Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000509', 'U0000051', 'X0000226', 11, '2024-03-16T23:28:09.774Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000510', 'U0000023', 'X0000910', 6, '2023-10-03T03:55:50.971Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000510', 'OR000510', 97.45, '2023-10-03T03:55:50.971Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000511', 'U0000058', 'X0000615', 31, '2023-11-27T16:17:07.555Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000511', 'OR000511', 174.75, '2023-11-27T16:17:07.555Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000511', 'OR000511', '62184 W 12th Street', '2023-11-29T16:17:07.555Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000512', 'U0000030', 'X0000093', 28, '2024-02-15T08:33:43.726Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000512', 'OR000512', 140.35, '2024-02-15T08:33:43.726Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000512', 'OR000512', '9883 Irving Loop', '2024-02-20T08:33:43.726Z','2024-02-21T08:33:43.726Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000513', 'U0000028', 'X0000729', 5, '2023-11-07T16:33:42.563Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000514', 'U0000070', 'X0000939', 51, '2024-02-10T08:36:58.910Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000514', 'OR000514', 1092.56, '2024-02-10T08:36:58.910Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000515', 'U0000039', 'X0000889', 11, '2023-10-14T04:45:40.395Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000515', 'OR000515', 925.71, '2023-10-14T04:45:40.395Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000515', 'OR000515', '94686 N Broadway', '2023-10-17T04:45:40.395Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000516', 'U0000060', 'X0000743', 23, '2024-02-06T04:15:51.814Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000516', 'OR000516', 838.95, '2024-02-06T04:15:51.814Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000516', 'OR000516', '39988 Ryan Lodge', '2024-02-08T04:15:51.814Z','2024-02-12T04:15:51.814Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000517', 'U0000068', 'X0000734', 39, '2024-02-27T18:15:28.542Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000518', 'U0000046', 'X0000111', 25, '2024-02-11T11:09:43.024Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000518', 'OR000518', 25.5, '2024-02-11T11:09:43.024Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000519', 'U0000041', 'X0000868', 36, '2024-02-24T11:25:34.082Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000519', 'OR000519', 192.72, '2024-02-24T11:25:34.082Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000519', 'OR000519', '916 Bayer Dale', '2024-02-26T11:25:34.082Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000520', 'U0000065', 'X0000169', 16, '2023-11-18T01:11:28.639Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000520', 'OR000520', 80.25, '2023-11-18T01:11:28.639Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000520', 'OR000520', '3001 Heller Circle', '2023-11-21T01:11:28.639Z','2023-11-23T01:11:28.639Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000521', 'U0000063', 'X0000538', 16, '2024-02-19T12:22:52.983Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000522', 'U0000026', 'X0000382', 79, '2023-10-24T10:09:08.425Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000522', 'OR000522', 87.36, '2023-10-24T10:09:08.425Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000523', 'U0000039', 'X0000514', 43, '2023-10-21T03:41:44.024Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000523', 'OR000523', 206.49, '2023-10-21T03:41:44.024Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000523', 'OR000523', '94686 N Broadway', '2023-10-26T03:41:44.024Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000524', 'U0000041', 'X0000454', 1, '2023-11-24T22:56:32.013Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000524', 'OR000524', 94.35, '2023-11-24T22:56:32.013Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000524', 'OR000524', '916 Bayer Dale', '2023-11-25T22:56:32.013Z','2023-11-28T22:56:32.013Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000525', 'U0000037', 'X0000203', 68, '2023-12-03T02:36:36.734Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000526', 'U0000077', 'X0000638', 13, '2024-03-28T23:32:52.173Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000526', 'OR000526', 68.66, '2024-03-28T23:32:52.173Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000527', 'U0000056', 'X0000379', 19, '2023-10-16T07:57:21.913Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000527', 'OR000527', 43.2, '2023-10-16T07:57:21.913Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000527', 'OR000527', '255 Chester Lakes', '2023-10-21T07:57:21.913Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000528', 'U0000063', 'X0000362', 53, '2023-12-21T04:13:20.978Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000528', 'OR000528', 202.08, '2023-12-21T04:13:20.978Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000528', 'OR000528', '876 Market Street', '2023-12-23T04:13:20.978Z','2023-12-28T04:13:20.978Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000529', 'U0000041', 'X0000170', 41, '2024-02-04T06:38:37.994Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000530', 'U0000001', 'X0000074', 40, '2023-12-30T06:00:15.053Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000530', 'OR000530', 312.63, '2023-12-30T06:00:15.053Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000531', 'U0000056', 'X0000822', 5, '2024-03-13T05:37:34.766Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000531', 'OR000531', 1084.65, '2024-03-13T05:37:34.766Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000531', 'OR000531', '255 Chester Lakes', '2024-03-17T05:37:34.766Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000532', 'U0000077', 'X0000450', 13, '2024-02-02T08:54:16.650Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000532', 'OR000532', 128.87, '2024-02-02T08:54:16.650Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000532', 'OR000532', '9507 Gottlieb Gateway', '2024-02-07T08:54:16.650Z','2024-02-11T08:54:16.650Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000533', 'U0000001', 'X0000636', 10, '2024-01-18T17:05:39.881Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000534', 'U0000083', 'X0000546', 10, '2024-03-21T06:26:18.227Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000534', 'OR000534', 42.06, '2024-03-21T06:26:18.227Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000535', 'U0000071', 'X0000944', 6, '2024-03-31T07:50:52.037Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000535', 'OR000535', 190.73, '2024-03-31T07:50:52.037Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000535', 'OR000535', '7624 Smith Lights', '2024-04-03T07:50:52.037Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000536', 'U0000058', 'X0000188', 3, '2024-01-12T05:03:46.381Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000536', 'OR000536', 69.06, '2024-01-12T05:03:46.381Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000536', 'OR000536', '62184 W 12th Street', '2024-01-14T05:03:46.381Z','2024-01-18T05:03:46.381Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000537', 'U0000059', 'X0000772', 18, '2023-11-22T08:13:09.530Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000538', 'U0000070', 'X0000658', 13, '2023-12-14T08:53:22.654Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000538', 'OR000538', 38.22, '2023-12-14T08:53:22.654Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000539', 'U0000018', 'X0000243', 35, '2023-10-03T00:42:38.170Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000539', 'OR000539', 34.86, '2023-10-03T00:42:38.170Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000539', 'OR000539', '59575 Mill Street', '2023-10-07T00:42:38.170Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000540', 'U0000020', 'X0000703', 17, '2024-01-09T17:34:45.610Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000540', 'OR000540', 209.26, '2024-01-09T17:34:45.610Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000540', 'OR000540', '85931 Pagac Brook', '2024-01-14T17:34:45.610Z','2024-01-18T17:34:45.610Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000541', 'U0000013', 'X0000342', 41, '2024-02-19T00:16:51.629Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000542', 'U0000017', 'X0000975', 14, '2023-11-21T01:57:10.838Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000542', 'OR000542', 141.93, '2023-11-21T01:57:10.838Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000543', 'U0000031', 'X0000227', 15, '2023-11-09T02:59:51.680Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000543', 'OR000543', 500.29, '2023-11-09T02:59:51.680Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000543', 'OR000543', '192 Roberts Branch', '2023-11-13T02:59:51.680Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000544', 'U0000035', 'X0000638', 42, '2024-03-05T23:50:48.640Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000544', 'OR000544', 68.66, '2024-03-05T23:50:48.640Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000544', 'OR000544', '80090 Schmidt Plains', '2024-03-10T23:50:48.640Z','2024-03-11T23:50:48.640Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000545', 'U0000098', 'X0000826', 54, '2024-01-04T07:20:09.023Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000546', 'U0000059', 'X0000745', 3, '2023-10-18T23:47:49.808Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000546', 'OR000546', 86.16, '2023-10-18T23:47:49.808Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000547', 'U0000012', 'X0000016', 16, '2023-10-01T11:33:35.427Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000547', 'OR000547', 66.51, '2023-10-01T11:33:35.427Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000547', 'OR000547', '84299 Parkside', '2023-10-04T11:33:35.427Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000548', 'U0000080', 'X0000945', 28, '2024-02-03T04:47:04.186Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000548', 'OR000548', 48.84, '2024-02-03T04:47:04.186Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000548', 'OR000548', '321 Hickory Street', '2024-02-05T04:47:04.186Z','2024-02-10T04:47:04.186Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000549', 'U0000053', 'X0000123', 42, '2023-10-01T22:47:09.250Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000550', 'U0000094', 'X0000380', 56, '2024-03-21T01:36:54.783Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000550', 'OR000550', 735.33, '2024-03-21T01:36:54.783Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000551', 'U0000065', 'X0000926', 16, '2023-12-29T16:06:54.876Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000551', 'OR000551', 28.88, '2023-12-29T16:06:54.876Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000551', 'OR000551', '3001 Heller Circle', '2023-12-30T16:06:54.876Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000552', 'U0000066', 'X0000530', 39, '2024-01-14T02:02:00.593Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000552', 'OR000552', 32.56, '2024-01-14T02:02:00.593Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000552', 'OR000552', '514 Jefferson Avenue', '2024-01-15T02:02:00.593Z','2024-01-17T02:02:00.593Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000553', 'U0000049', 'X0000027', 9, '2024-01-03T11:09:06.346Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000554', 'U0000066', 'X0000502', 45, '2024-02-24T20:58:45.508Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000554', 'OR000554', 154.08, '2024-02-24T20:58:45.508Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000555', 'U0000086', 'X0000015', 36, '2024-02-22T13:23:33.770Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000555', 'OR000555', 30.43, '2024-02-22T13:23:33.770Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000555', 'OR000555', '69611 Pound Lane', '2024-02-25T13:23:33.770Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000556', 'U0000084', 'X0000629', 84, '2023-10-07T01:59:39.223Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000556', 'OR000556', 37.86, '2023-10-07T01:59:39.223Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000556', 'OR000556', '20325 Brock Heights', '2023-10-08T01:59:39.223Z','2023-10-13T01:59:39.223Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000557', 'U0000032', 'X0000435', 34, '2023-12-28T03:59:12.242Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000558', 'U0000069', 'X0000026', 39, '2024-02-22T05:43:55.963Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000558', 'OR000558', 21.18, '2024-02-22T05:43:55.963Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000559', 'U0000075', 'X0000172', 45, '2024-03-03T15:22:24.363Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000559', 'OR000559', 109.83, '2024-03-03T15:22:24.363Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000559', 'OR000559', '457 Broad Lane', '2024-03-05T15:22:24.363Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000560', 'U0000088', 'X0000898', 11, '2024-01-15T04:42:05.535Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000560', 'OR000560', 40.55, '2024-01-15T04:42:05.535Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000560', 'OR000560', '3693 Jason Motorway', '2024-01-16T04:42:05.535Z','2024-01-19T04:42:05.535Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000561', 'U0000006', 'X0000069', 22, '2024-01-20T04:06:01.884Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000562', 'U0000033', 'X0000011', 12, '2023-11-11T06:49:11.386Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000562', 'OR000562', 98.79, '2023-11-11T06:49:11.386Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000563', 'U0000091', 'X0000686', 73, '2023-12-11T08:03:32.837Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000563', 'OR000563', 131.98, '2023-12-11T08:03:32.837Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000563', 'OR000563', '56370 Suzanne Loop', '2023-12-12T08:03:32.837Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000564', 'U0000006', 'X0000689', 21, '2024-03-07T22:04:22.379Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000564', 'OR000564', 148.23, '2024-03-07T22:04:22.379Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000564', 'OR000564', '1792 Emelie Motorway', '2024-03-08T22:04:22.379Z','2024-03-09T22:04:22.379Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000565', 'U0000100', 'X0000621', 5, '2023-12-16T13:10:33.865Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000566', 'U0000089', 'X0000703', 15, '2023-11-17T14:31:26.350Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000566', 'OR000566', 209.26, '2023-11-17T14:31:26.350Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000567', 'U0000042', 'X0000919', 5, '2024-02-25T11:27:49.167Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000567', 'OR000567', 20.02, '2024-02-25T11:27:49.167Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000567', 'OR000567', '489 W Walnut Street', '2024-02-26T11:27:49.167Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000568', 'U0000074', 'X0000305', 58, '2023-11-06T22:55:36.769Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000568', 'OR000568', 119.98, '2023-11-06T22:55:36.769Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000568', 'OR000568', '456 Selina Gardens', '2023-11-07T22:55:36.769Z','2023-11-08T22:55:36.769Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000569', 'U0000099', 'X0000253', 6, '2023-10-24T22:16:04.628Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000570', 'U0000030', 'X0000435', 41, '2024-03-26T07:37:45.307Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000570', 'OR000570', 257.53, '2024-03-26T07:37:45.307Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000571', 'U0000078', 'X0000341', 9, '2024-02-25T07:55:07.553Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000571', 'OR000571', 70.56, '2024-02-25T07:55:07.553Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000571', 'OR000571', '4575 Rippin Stravenue', '2024-03-01T07:55:07.553Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000572', 'U0000073', 'X0000487', 44, '2024-03-08T13:32:07.033Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000572', 'OR000572', 34.41, '2024-03-08T13:32:07.033Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000572', 'OR000572', '2363 Ruecker Valley', '2024-03-13T13:32:07.033Z','2024-03-17T13:32:07.033Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000573', 'U0000078', 'X0000166', 29, '2023-12-13T17:18:50.046Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000574', 'U0000047', 'X0000868', 3, '2023-11-18T09:24:26.300Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000574', 'OR000574', 192.72, '2023-11-18T09:24:26.300Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000575', 'U0000097', 'X0000876', 23, '2023-10-21T16:52:34.179Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000575', 'OR000575', 106.41, '2023-10-21T16:52:34.179Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000575', 'OR000575', '14604 Jermaine Junctions', '2023-10-23T16:52:34.179Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000576', 'U0000083', 'X0000569', 5, '2024-03-10T07:51:52.192Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000576', 'OR000576', 51.64, '2024-03-10T07:51:52.192Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000576', 'OR000576', '5520 Beach Road', '2024-03-12T07:51:52.192Z','2024-03-17T07:51:52.192Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000577', 'U0000035', 'X0000297', 19, '2023-10-08T22:45:21.354Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000578', 'U0000096', 'X0000256', 11, '2023-12-22T19:16:47.074Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000578', 'OR000578', 6.64, '2023-12-22T19:16:47.074Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000579', 'U0000057', 'X0000469', 50, '2024-02-24T05:25:59.802Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000579', 'OR000579', 71.82, '2024-02-24T05:25:59.802Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000579', 'OR000579', '3417 Camden Mission', '2024-02-25T05:25:59.802Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000580', 'U0000041', 'X0000834', 19, '2024-02-28T18:44:54.806Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000580', 'OR000580', 274.78, '2024-02-28T18:44:54.806Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000580', 'OR000580', '916 Bayer Dale', '2024-03-01T18:44:54.806Z','2024-03-06T18:44:54.806Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000581', 'U0000099', 'X0000079', 36, '2023-10-18T08:49:40.848Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000582', 'U0000016', 'X0000402', 14, '2023-12-19T23:29:58.200Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000582', 'OR000582', 174.34, '2023-12-19T23:29:58.200Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000583', 'U0000011', 'X0000334', 9, '2023-12-29T06:47:12.430Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000583', 'OR000583', 136.41, '2023-12-29T06:47:12.430Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000583', 'OR000583', '41055 Quitzon Estate', '2023-12-30T06:47:12.430Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000584', 'U0000069', 'X0000375', 39, '2023-12-26T17:50:20.886Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000584', 'OR000584', 300.44, '2023-12-26T17:50:20.886Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000584', 'OR000584', '33085 Beatty Track', '2023-12-29T17:50:20.886Z','2024-01-01T17:50:20.886Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000585', 'U0000043', 'X0000104', 22, '2024-02-17T09:41:47.180Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000586', 'U0000098', 'X0000956', 14, '2024-03-28T12:16:00.217Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000586', 'OR000586', 56.93, '2024-03-28T12:16:00.217Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000587', 'U0000091', 'X0000479', 25, '2024-03-18T01:14:06.833Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000587', 'OR000587', 228.94, '2024-03-18T01:14:06.833Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000587', 'OR000587', '56370 Suzanne Loop', '2024-03-23T01:14:06.833Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000588', 'U0000025', 'X0000563', 6, '2024-03-03T01:38:33.041Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000588', 'OR000588', 231.17, '2024-03-03T01:38:33.041Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000588', 'OR000588', '6274 Jerrod Plain', '2024-03-05T01:38:33.041Z','2024-03-06T01:38:33.041Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000589', 'U0000069', 'X0000395', 6, '2023-11-27T21:19:51.137Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000590', 'U0000001', 'X0000506', 7, '2023-12-06T00:13:27.732Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000590', 'OR000590', 72.78, '2023-12-06T00:13:27.732Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000591', 'U0000022', 'X0000077', 33, '2024-02-10T09:13:24.226Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000591', 'OR000591', 39.87, '2024-02-10T09:13:24.226Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000591', 'OR000591', '761 Rey Shoals', '2024-02-12T09:13:24.226Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000592', 'U0000026', 'X0000472', 38, '2023-12-01T09:19:54.409Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000592', 'OR000592', 49.48, '2023-12-01T09:19:54.409Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000592', 'OR000592', '323 Emmerich Course', '2023-12-06T09:19:54.409Z','2023-12-09T09:19:54.409Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000593', 'U0000030', 'X0000215', 10, '2024-01-27T22:47:30.406Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000594', 'U0000004', 'X0000455', 71, '2024-02-13T00:38:29.949Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000594', 'OR000594', 78.96, '2024-02-13T00:38:29.949Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000595', 'U0000038', 'X0000144', 1, '2024-02-11T14:32:03.427Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000595', 'OR000595', 31.7, '2024-02-11T14:32:03.427Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000595', 'OR000595', '44261 Maye Wells', '2024-02-12T14:32:03.427Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000596', 'U0000097', 'X0000143', 18, '2023-10-06T11:35:17.470Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000596', 'OR000596', 1049.84, '2023-10-06T11:35:17.470Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000596', 'OR000596', '14604 Jermaine Junctions', '2023-10-08T11:35:17.470Z','2023-10-11T11:35:17.470Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000597', 'U0000094', 'X0000483', 15, '2024-03-11T22:32:42.812Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000598', 'U0000041', 'X0000248', 2, '2023-12-02T15:36:24.470Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000598', 'OR000598', 523.1, '2023-12-02T15:36:24.470Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000599', 'U0000065', 'X0000032', 16, '2023-11-27T04:17:03.125Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000599', 'OR000599', 80.39, '2023-11-27T04:17:03.125Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000599', 'OR000599', '3001 Heller Circle', '2023-11-30T04:17:03.125Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000600', 'U0000079', 'X0000044', 9, '2023-10-05T00:17:57.195Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000600', 'OR000600', 112.64, '2023-10-05T00:17:57.195Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000600', 'OR000600', '16043 Brenna Landing', '2023-10-08T00:17:57.195Z','2023-10-10T00:17:57.195Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000601', 'U0000019', 'X0000440', 35, '2023-12-11T21:23:04.627Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000602', 'U0000003', 'X0000641', 38, '2023-11-11T18:09:43.059Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000602', 'OR000602', 127.27, '2023-11-11T18:09:43.059Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000603', 'U0000069', 'X0000966', 12, '2023-10-21T11:14:55.611Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000603', 'OR000603', 145.75, '2023-10-21T11:14:55.611Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000603', 'OR000603', '33085 Beatty Track', '2023-10-22T11:14:55.611Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000604', 'U0000073', 'X0000296', 24, '2024-02-04T07:21:08.606Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000604', 'OR000604', 11.07, '2024-02-04T07:21:08.606Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000604', 'OR000604', '2363 Ruecker Valley', '2024-02-06T07:21:08.606Z','2024-02-10T07:21:08.606Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000605', 'U0000062', 'X0000107', 29, '2023-12-05T09:59:16.892Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000606', 'U0000015', 'X0000780', 26, '2024-01-01T15:18:57.548Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000606', 'OR000606', 97.71, '2024-01-01T15:18:57.548Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000607', 'U0000010', 'X0000540', 16, '2024-03-28T08:58:00.118Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000607', 'OR000607', 72.2, '2024-03-28T08:58:00.118Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000607', 'OR000607', '14941 W Central Avenue', '2024-04-01T08:58:00.118Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000608', 'U0000020', 'X0000205', 10, '2024-03-30T16:14:43.591Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000608', 'OR000608', 97.56, '2024-03-30T16:14:43.591Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000608', 'OR000608', '85931 Pagac Brook', '2024-03-31T16:14:43.591Z','2024-04-02T16:14:43.591Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000609', 'U0000038', 'X0000650', 7, '2023-11-25T04:59:43.330Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000610', 'U0000025', 'X0000373', 37, '2024-02-04T00:42:30.871Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000610', 'OR000610', 104.9, '2024-02-04T00:42:30.871Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000611', 'U0000088', 'X0000027', 23, '2023-12-06T04:42:39.435Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000611', 'OR000611', 96.7, '2023-12-06T04:42:39.435Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000611', 'OR000611', '3693 Jason Motorway', '2023-12-10T04:42:39.435Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000612', 'U0000050', 'X0000421', 1, '2024-01-03T04:00:03.319Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000612', 'OR000612', 77.31, '2024-01-03T04:00:03.319Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000612', 'OR000612', '385 Mill Street', '2024-01-08T04:00:03.319Z','2024-01-13T04:00:03.319Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000613', 'U0000003', 'X0000758', 53, '2023-12-02T08:12:35.986Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000614', 'U0000049', 'X0000860', 34, '2024-02-27T16:36:49.584Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000614', 'OR000614', 998.79, '2024-02-27T16:36:49.584Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000615', 'U0000066', 'X0000166', 17, '2023-11-14T21:03:59.316Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000615', 'OR000615', 257.69, '2023-11-14T21:03:59.316Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000615', 'OR000615', '514 Jefferson Avenue', '2023-11-17T21:03:59.316Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000616', 'U0000044', 'X0000715', 1, '2024-03-02T01:28:54.437Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000616', 'OR000616', 125.35, '2024-03-02T01:28:54.437Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000616', 'OR000616', '12640 Olaf Hill', '2024-03-06T01:28:54.437Z','2024-03-11T01:28:54.437Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000617', 'U0000077', 'X0000191', 46, '2023-12-04T10:25:46.563Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000618', 'U0000087', 'X0000383', 67, '2024-03-19T10:09:27.549Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000618', 'OR000618', 50.93, '2024-03-19T10:09:27.549Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000619', 'U0000071', 'X0000771', 13, '2023-12-28T16:51:54.182Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000619', 'OR000619', 1395.25, '2023-12-28T16:51:54.182Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000619', 'OR000619', '7624 Smith Lights', '2023-12-30T16:51:54.182Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000620', 'U0000094', 'X0000993', 13, '2024-03-14T19:02:43.038Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000620', 'OR000620', 80.19, '2024-03-14T19:02:43.038Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000620', 'OR000620', '16775 Archibald Fort', '2024-03-18T19:02:43.038Z','2024-03-19T19:02:43.038Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000621', 'U0000055', 'X0000331', 33, '2023-11-03T22:07:19.402Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000622', 'U0000095', 'X0000555', 27, '2023-11-11T11:22:06.396Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000622', 'OR000622', 204.39, '2023-11-11T11:22:06.396Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000623', 'U0000025', 'X0000409', 34, '2023-10-15T02:09:18.095Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000623', 'OR000623', 1465.53, '2023-10-15T02:09:18.095Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000623', 'OR000623', '6274 Jerrod Plain', '2023-10-16T02:09:18.095Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000624', 'U0000067', 'X0000272', 54, '2024-03-22T12:37:18.326Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000624', 'OR000624', 57.8, '2024-03-22T12:37:18.326Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000624', 'OR000624', '6233 Elbert Mountains', '2024-03-25T12:37:18.326Z','2024-03-28T12:37:18.326Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000625', 'U0000066', 'X0000915', 4, '2023-11-05T10:37:48.491Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000626', 'U0000036', 'X0000039', 12, '2024-01-02T04:14:58.669Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000626', 'OR000626', 290.73, '2024-01-02T04:14:58.669Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000627', 'U0000057', 'X0000813', 34, '2023-10-11T10:07:44.733Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000627', 'OR000627', 69.66, '2023-10-11T10:07:44.733Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000627', 'OR000627', '3417 Camden Mission', '2023-10-13T10:07:44.733Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000628', 'U0000047', 'X0000912', 11, '2024-03-07T06:51:46.128Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000628', 'OR000628', 236.12, '2024-03-07T06:51:46.128Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000628', 'OR000628', '770 W Washington Avenue', '2024-03-10T06:51:46.128Z','2024-03-15T06:51:46.128Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000629', 'U0000065', 'X0000607', 1, '2023-12-23T16:11:27.411Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000630', 'U0000023', 'X0000650', 1, '2024-02-16T02:25:50.149Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000630', 'OR000630', 85.48, '2024-02-16T02:25:50.149Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000631', 'U0000041', 'X0000785', 36, '2023-11-25T18:48:51.096Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000631', 'OR000631', 27.63, '2023-11-25T18:48:51.096Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000631', 'OR000631', '916 Bayer Dale', '2023-11-30T18:48:51.096Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000632', 'U0000042', 'X0000903', 19, '2024-03-23T00:14:57.216Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000632', 'OR000632', 62.97, '2024-03-23T00:14:57.216Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000632', 'OR000632', '489 W Walnut Street', '2024-03-24T00:14:57.216Z','2024-03-25T00:14:57.216Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000633', 'U0000086', 'X0000339', 8, '2024-01-21T07:46:28.039Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000634', 'U0000040', 'X0000843', 11, '2023-12-25T14:43:24.346Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000634', 'OR000634', 1467.66, '2023-12-25T14:43:24.346Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000635', 'U0000024', 'X0000921', 40, '2024-01-30T00:40:31.113Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000635', 'OR000635', 262.89, '2024-01-30T00:40:31.113Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000635', 'OR000635', '6494 Lind Pass', '2024-02-02T00:40:31.113Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000636', 'U0000006', 'X0000433', 10, '2024-03-20T06:09:44.292Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000636', 'OR000636', 32.1, '2024-03-20T06:09:44.292Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000636', 'OR000636', '1792 Emelie Motorway', '2024-03-21T06:09:44.292Z','2024-03-22T06:09:44.292Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000637', 'U0000092', 'X0000079', 42, '2024-01-21T00:15:33.806Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000638', 'U0000003', 'X0000166', 20, '2024-03-07T14:50:33.899Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000638', 'OR000638', 257.69, '2024-03-07T14:50:33.899Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000639', 'U0000081', 'X0000383', 60, '2023-11-22T11:34:36.451Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000639', 'OR000639', 50.93, '2023-11-22T11:34:36.451Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000639', 'OR000639', '327 Hills Summit', '2023-11-27T11:34:36.451Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000640', 'U0000098', 'X0000035', 55, '2024-01-10T05:51:20.394Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000640', 'OR000640', 11.22, '2024-01-10T05:51:20.394Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000640', 'OR000640', '9279 Marcelo Tunnel', '2024-01-12T05:51:20.394Z','2024-01-16T05:51:20.394Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000641', 'U0000008', 'X0000437', 3, '2024-02-03T23:46:58.459Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000642', 'U0000087', 'X0000538', 20, '2023-10-26T21:51:16.405Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000642', 'OR000642', 162.47, '2023-10-26T21:51:16.405Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000643', 'U0000096', 'X0000376', 51, '2024-03-19T09:34:18.948Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000643', 'OR000643', 233.99, '2024-03-19T09:34:18.948Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000643', 'OR000643', '28976 Laurel Rue', '2024-03-22T09:34:18.948Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000644', 'U0000009', 'X0000621', 73, '2024-02-02T14:06:56.556Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000644', 'OR000644', 32.36, '2024-02-02T14:06:56.556Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000644', 'OR000644', '744 Christiansen Locks', '2024-02-05T14:06:56.556Z','2024-02-09T14:06:56.556Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000645', 'U0000093', 'X0000472', 22, '2023-10-29T15:16:27.547Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000646', 'U0000036', 'X0000664', 34, '2023-12-24T12:19:42.771Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000646', 'OR000646', 41.27, '2023-12-24T12:19:42.771Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000647', 'U0000048', 'X0000534', 9, '2024-01-28T19:58:32.045Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000647', 'OR000647', 249.84, '2024-01-28T19:58:32.045Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000647', 'OR000647', '9885 Priory Road', '2024-02-02T19:58:32.045Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000648', 'U0000001', 'X0000081', 2, '2023-11-27T12:12:48.415Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000648', 'OR000648', 27.88, '2023-11-27T12:12:48.415Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000648', 'OR000648', '250 N Cedar Street', '2023-11-28T12:12:48.415Z','2023-11-29T12:12:48.415Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000649', 'U0000060', 'X0000157', 55, '2024-02-28T16:08:06.085Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000650', 'U0000043', 'X0000667', 4, '2023-11-13T06:04:03.000Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000650', 'OR000650', 67.7, '2023-11-13T06:04:03.000Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000651', 'U0000059', 'X0000677', 6, '2023-11-21T14:00:41.998Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000651', 'OR000651', 85.32, '2023-11-21T14:00:41.998Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000651', 'OR000651', '22218 W 8th Street', '2023-11-24T14:00:41.998Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000652', 'U0000051', 'X0000403', 8, '2024-03-03T02:08:18.925Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000652', 'OR000652', 69.28, '2024-03-03T02:08:18.925Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000652', 'OR000652', '5981 Atlantic Avenue', '2024-03-08T02:08:18.925Z','2024-03-12T02:08:18.925Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000653', 'U0000049', 'X0000558', 68, '2024-01-13T06:35:10.522Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000654', 'U0000038', 'X0000093', 16, '2023-10-03T23:43:32.795Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000654', 'OR000654', 140.35, '2023-10-03T23:43:32.795Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000655', 'U0000047', 'X0000176', 40, '2023-12-06T05:10:12.755Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000655', 'OR000655', 27.2, '2023-12-06T05:10:12.755Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000655', 'OR000655', '770 W Washington Avenue', '2023-12-08T05:10:12.755Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000656', 'U0000063', 'X0000755', 39, '2023-12-19T14:57:36.167Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000656', 'OR000656', 24.34, '2023-12-19T14:57:36.167Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000656', 'OR000656', '876 Market Street', '2023-12-21T14:57:36.167Z','2023-12-23T14:57:36.167Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000657', 'U0000004', 'X0000764', 86, '2024-02-05T07:31:18.063Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000658', 'U0000023', 'X0000819', 15, '2024-03-20T13:59:07.549Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000658', 'OR000658', 125.97, '2024-03-20T13:59:07.549Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000659', 'U0000061', 'X0000900', 30, '2024-02-28T11:22:47.413Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000659', 'OR000659', 50.46, '2024-02-28T11:22:47.413Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000659', 'OR000659', '80281 Cathrine Field', '2024-03-01T11:22:47.413Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000660', 'U0000027', 'X0000233', 11, '2024-02-09T06:54:43.273Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000660', 'OR000660', 59.52, '2024-02-09T06:54:43.273Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000660', 'OR000660', '24259 Ritchie Mountains', '2024-02-14T06:54:43.273Z','2024-02-16T06:54:43.273Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000661', 'U0000058', 'X0000685', 15, '2024-01-23T19:14:55.955Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000662', 'U0000008', 'X0000625', 21, '2023-11-27T16:02:09.355Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000662', 'OR000662', 44.43, '2023-11-27T16:02:09.355Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000663', 'U0000099', 'X0000557', 4, '2024-02-25T08:43:33.053Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000663', 'OR000663', 44.94, '2024-02-25T08:43:33.053Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000663', 'OR000663', '323 Bernardo Oval', '2024-02-27T08:43:33.053Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000664', 'U0000016', 'X0000184', 78, '2024-02-19T05:14:45.990Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000664', 'OR000664', 46.76, '2024-02-19T05:14:45.990Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000664', 'OR000664', '714 N Cedar Street', '2024-02-22T05:14:45.990Z','2024-02-27T05:14:45.990Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000665', 'U0000100', 'X0000270', 10, '2024-02-25T12:12:46.892Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000666', 'U0000012', 'X0000929', 39, '2023-12-23T19:09:13.186Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000666', 'OR000666', 195.1, '2023-12-23T19:09:13.186Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000667', 'U0000051', 'X0000519', 11, '2024-03-10T16:23:51.806Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000667', 'OR000667', 828.35, '2024-03-10T16:23:51.806Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000667', 'OR000667', '5981 Atlantic Avenue', '2024-03-13T16:23:51.806Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000668', 'U0000062', 'X0000445', 60, '2023-12-28T05:59:23.177Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000668', 'OR000668', 145.34, '2023-12-28T05:59:23.177Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000668', 'OR000668', '9219 Cassin Trace', '2023-12-30T05:59:23.177Z','2024-01-04T05:59:23.177Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000669', 'U0000053', 'X0000484', 48, '2024-01-11T07:58:43.657Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000670', 'U0000072', 'X0000494', 27, '2024-01-31T11:35:50.055Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000670', 'OR000670', 99.52, '2024-01-31T11:35:50.055Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000671', 'U0000017', 'X0000312', 12, '2024-02-25T12:36:06.192Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000671', 'OR000671', 177.57, '2024-02-25T12:36:06.192Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000671', 'OR000671', '658 Lavada Alley', '2024-02-29T12:36:06.192Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000672', 'U0000099', 'X0000725', 7, '2023-10-31T13:13:05.599Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000672', 'OR000672', 134.62, '2023-10-31T13:13:05.599Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000672', 'OR000672', '323 Bernardo Oval', '2023-11-03T13:13:05.599Z','2023-11-08T13:13:05.599Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000673', 'U0000054', 'X0000811', 29, '2024-03-19T15:45:17.474Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000674', 'U0000056', 'X0000881', 65, '2024-03-09T12:58:02.789Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000674', 'OR000674', 111.41, '2024-03-09T12:58:02.789Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000675', 'U0000079', 'X0000149', 67, '2024-02-14T00:03:07.199Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000675', 'OR000675', 15.99, '2024-02-14T00:03:07.199Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000675', 'OR000675', '16043 Brenna Landing', '2024-02-19T00:03:07.199Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000676', 'U0000077', 'X0000805', 20, '2023-11-04T08:24:44.958Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000676', 'OR000676', 45.42, '2023-11-04T08:24:44.958Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000676', 'OR000676', '9507 Gottlieb Gateway', '2023-11-09T08:24:44.958Z','2023-11-14T08:24:44.958Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000677', 'U0000031', 'X0000811', 22, '2024-01-29T10:03:28.761Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000678', 'U0000047', 'X0000431', 25, '2024-03-15T16:04:49.649Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000678', 'OR000678', 23.09, '2024-03-15T16:04:49.649Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000679', 'U0000090', 'X0000067', 14, '2023-11-19T04:45:53.063Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000679', 'OR000679', 139.14, '2023-11-19T04:45:53.063Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000679', 'OR000679', '94225 Hassan Mills', '2023-11-21T04:45:53.063Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000680', 'U0000010', 'X0000105', 27, '2024-03-21T00:51:15.145Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000680', 'OR000680', 219.76, '2024-03-21T00:51:15.145Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000680', 'OR000680', '14941 W Central Avenue', '2024-03-23T00:51:15.145Z','2024-03-25T00:51:15.145Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000681', 'U0000078', 'X0000807', 40, '2024-02-06T18:36:15.537Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000682', 'U0000094', 'X0000613', 45, '2024-03-07T22:41:23.491Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000682', 'OR000682', 34.52, '2024-03-07T22:41:23.491Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000683', 'U0000072', 'X0000773', 11, '2023-12-02T04:45:01.680Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000683', 'OR000683', 119.79, '2023-12-02T04:45:01.680Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000683', 'OR000683', '469 Lacy Rue', '2023-12-04T04:45:01.680Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000684', 'U0000071', 'X0000316', 10, '2023-12-28T07:50:58.397Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000684', 'OR000684', 1468.26, '2023-12-28T07:50:58.397Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000684', 'OR000684', '7624 Smith Lights', '2024-01-02T07:50:58.397Z','2024-01-03T07:50:58.397Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000685', 'U0000030', 'X0000829', 54, '2024-01-31T04:47:05.166Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000686', 'U0000010', 'X0000377', 51, '2023-11-04T07:53:43.080Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000686', 'OR000686', 1090.49, '2023-11-04T07:53:43.080Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000687', 'U0000033', 'X0000329', 5, '2023-12-08T20:41:30.329Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000687', 'OR000687', 141.57, '2023-12-08T20:41:30.329Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000687', 'OR000687', '1975 Main Street', '2023-12-10T20:41:30.329Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000688', 'U0000014', 'X0000668', 15, '2024-01-17T23:06:28.854Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000688', 'OR000688', 1470.76, '2024-01-17T23:06:28.854Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000688', 'OR000688', '55447 Warren Close', '2024-01-20T23:06:28.854Z','2024-01-25T23:06:28.854Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000689', 'U0000074', 'X0000905', 22, '2024-02-16T17:14:19.090Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000690', 'U0000066', 'X0000466', 28, '2024-01-07T05:53:32.682Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000690', 'OR000690', 61.02, '2024-01-07T05:53:32.682Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000691', 'U0000008', 'X0000238', 68, '2024-02-24T15:35:14.222Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000691', 'OR000691', 223.78, '2024-02-24T15:35:14.222Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000691', 'OR000691', '6391 Grayson Islands', '2024-02-28T15:35:14.222Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000692', 'U0000076', 'X0000868', 16, '2023-11-13T20:54:05.965Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000692', 'OR000692', 192.72, '2023-11-13T20:54:05.965Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000692', 'OR000692', '69547 Rosamond Field', '2023-11-14T20:54:05.965Z','2023-11-19T20:54:05.965Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000693', 'U0000083', 'X0000481', 73, '2024-02-04T03:24:09.572Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000694', 'U0000069', 'X0000201', 16, '2024-01-29T09:20:14.243Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000694', 'OR000694', 1227.91, '2024-01-29T09:20:14.243Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000695', 'U0000024', 'X0000642', 42, '2023-12-21T15:52:54.567Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000695', 'OR000695', 38.38, '2023-12-21T15:52:54.567Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000695', 'OR000695', '6494 Lind Pass', '2023-12-24T15:52:54.567Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000696', 'U0000007', 'X0000015', 31, '2024-02-07T12:07:11.407Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000696', 'OR000696', 30.43, '2024-02-07T12:07:11.407Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000696', 'OR000696', '6137 Stehr Extensions', '2024-02-11T12:07:11.407Z','2024-02-15T12:07:11.407Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000697', 'U0000081', 'X0000206', 47, '2024-02-09T15:59:50.384Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000698', 'U0000088', 'X0000846', 21, '2024-02-04T10:37:19.816Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000698', 'OR000698', 23.45, '2024-02-04T10:37:19.816Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000699', 'U0000094', 'X0000577', 7, '2023-10-06T21:36:13.002Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000699', 'OR000699', 158.64, '2023-10-06T21:36:13.002Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000699', 'OR000699', '16775 Archibald Fort', '2023-10-09T21:36:13.002Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000700', 'U0000060', 'X0000135', 1, '2023-12-10T18:07:38.597Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000700', 'OR000700', 1071.7, '2023-12-10T18:07:38.597Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000700', 'OR000700', '39988 Ryan Lodge', '2023-12-15T18:07:38.597Z','2023-12-17T18:07:38.597Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000701', 'U0000048', 'X0000089', 14, '2024-03-18T23:31:28.034Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000702', 'U0000009', 'X0000732', 35, '2023-10-28T07:30:02.661Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000702', 'OR000702', 148.69, '2023-10-28T07:30:02.661Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000703', 'U0000078', 'X0000748', 30, '2023-10-29T22:04:12.821Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000703', 'OR000703', 109.62, '2023-10-29T22:04:12.821Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000703', 'OR000703', '4575 Rippin Stravenue', '2023-10-30T22:04:12.821Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000704', 'U0000026', 'X0000746', 10, '2023-11-07T12:11:22.102Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000704', 'OR000704', 17.07, '2023-11-07T12:11:22.102Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000704', 'OR000704', '323 Emmerich Course', '2023-11-11T12:11:22.102Z','2023-11-16T12:11:22.102Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000705', 'U0000040', 'X0000767', 20, '2023-11-15T12:59:43.191Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000706', 'U0000007', 'X0000072', 31, '2023-11-27T22:11:08.775Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000706', 'OR000706', 142.55, '2023-11-27T22:11:08.775Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000707', 'U0000034', 'X0000370', 76, '2024-02-26T00:40:46.801Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000707', 'OR000707', 144, '2024-02-26T00:40:46.801Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000707', 'OR000707', '33811 E Main Street', '2024-02-28T00:40:46.801Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000708', 'U0000041', 'X0000480', 1, '2024-02-21T03:30:40.051Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000708', 'OR000708', 153.28, '2024-02-21T03:30:40.051Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000708', 'OR000708', '916 Bayer Dale', '2024-02-22T03:30:40.051Z','2024-02-25T03:30:40.051Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000709', 'U0000022', 'X0000657', 31, '2023-11-04T01:01:33.855Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000710', 'U0000010', 'X0000974', 74, '2024-01-25T08:01:00.603Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000710', 'OR000710', 39.67, '2024-01-25T08:01:00.603Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000711', 'U0000013', 'X0000529', 37, '2024-03-10T07:49:23.814Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000711', 'OR000711', 128.82, '2024-03-10T07:49:23.814Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000711', 'OR000711', '7082 Muller Meadow', '2024-03-11T07:49:23.814Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000712', 'U0000051', 'X0000350', 56, '2023-10-23T04:52:52.572Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000712', 'OR000712', 183.82, '2023-10-23T04:52:52.572Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000712', 'OR000712', '5981 Atlantic Avenue', '2023-10-24T04:52:52.572Z','2023-10-25T04:52:52.572Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000713', 'U0000061', 'X0000531', 20, '2024-02-23T02:07:04.236Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000714', 'U0000033', 'X0000263', 24, '2024-01-11T09:24:30.719Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000714', 'OR000714', 468.58, '2024-01-11T09:24:30.719Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000715', 'U0000042', 'X0000766', 44, '2023-12-26T15:53:08.384Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000715', 'OR000715', 124.47, '2023-12-26T15:53:08.384Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000715', 'OR000715', '489 W Walnut Street', '2023-12-29T15:53:08.384Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000716', 'U0000085', 'X0000077', 18, '2024-03-17T17:02:36.112Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000716', 'OR000716', 39.87, '2024-03-17T17:02:36.112Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000716', 'OR000716', '597 Crescent Road', '2024-03-19T17:02:36.112Z','2024-03-20T17:02:36.112Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000717', 'U0000003', 'X0000215', 72, '2023-11-17T22:52:27.964Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000718', 'U0000094', 'X0000333', 1, '2024-02-04T00:43:19.962Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000718', 'OR000718', 108.21, '2024-02-04T00:43:19.962Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000719', 'U0000089', 'X0000871', 64, '2023-10-24T14:38:42.121Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000719', 'OR000719', 1240.45, '2023-10-24T14:38:42.121Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000719', 'OR000719', '14414 Gleichner Haven', '2023-10-28T14:38:42.121Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000720', 'U0000055', 'X0000072', 14, '2023-10-05T20:27:16.100Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000720', 'OR000720', 142.55, '2023-10-05T20:27:16.100Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000720', 'OR000720', '4086 Braun Terrace', '2023-10-10T20:27:16.100Z','2023-10-13T20:27:16.100Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000721', 'U0000022', 'X0000545', 40, '2024-03-17T15:47:59.689Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000722', 'U0000050', 'X0000243', 44, '2023-12-04T18:55:53.308Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000722', 'OR000722', 34.86, '2023-12-04T18:55:53.308Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000723', 'U0000031', 'X0000506', 1, '2023-12-25T18:26:04.234Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000723', 'OR000723', 72.78, '2023-12-25T18:26:04.234Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000723', 'OR000723', '192 Roberts Branch', '2023-12-30T18:26:04.234Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000724', 'U0000014', 'X0000750', 5, '2024-03-09T21:53:30.358Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000724', 'OR000724', 17.92, '2024-03-09T21:53:30.358Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000724', 'OR000724', '55447 Warren Close', '2024-03-10T21:53:30.358Z','2024-03-15T21:53:30.358Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000725', 'U0000088', 'X0000758', 38, '2024-01-12T02:17:23.306Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000726', 'U0000022', 'X0000769', 13, '2024-03-09T09:36:03.892Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000726', 'OR000726', 46.76, '2024-03-09T09:36:03.892Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000727', 'U0000062', 'X0000576', 41, '2023-11-10T10:25:09.677Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000727', 'OR000727', 11.22, '2023-11-10T10:25:09.677Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000727', 'OR000727', '9219 Cassin Trace', '2023-11-11T10:25:09.677Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000728', 'U0000002', 'X0000777', 81, '2023-11-30T18:14:04.338Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000728', 'OR000728', 44.52, '2023-11-30T18:14:04.338Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000728', 'OR000728', '806 Ferry Road', '2023-12-01T18:14:04.338Z','2023-12-04T18:14:04.338Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000729', 'U0000056', 'X0000200', 3, '2023-11-03T09:12:26.316Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000730', 'U0000096', 'X0000678', 35, '2024-02-27T06:01:02.523Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000730', 'OR000730', 481.75, '2024-02-27T06:01:02.523Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000731', 'U0000043', 'X0000121', 23, '2023-12-18T09:22:55.115Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000731', 'OR000731', 156.03, '2023-12-18T09:22:55.115Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000731', 'OR000731', '2436 Gloucester Road', '2023-12-21T09:22:55.115Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000732', 'U0000028', 'X0000258', 28, '2023-12-11T05:51:21.151Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000732', 'OR000732', 144.13, '2023-12-11T05:51:21.151Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000732', 'OR000732', '889 St John''s Road', '2023-12-12T05:51:21.151Z','2023-12-16T05:51:21.151Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000733', 'U0000036', 'X0000238', 59, '2023-12-03T15:58:12.206Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000734', 'U0000029', 'X0000585', 66, '2024-01-31T10:21:08.914Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000734', 'OR000734', 130.81, '2024-01-31T10:21:08.914Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000735', 'U0000075', 'X0000002', 69, '2024-03-27T23:02:23.311Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000735', 'OR000735', 46.45, '2024-03-27T23:02:23.311Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000735', 'OR000735', '457 Broad Lane', '2024-04-01T23:02:23.311Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000736', 'U0000098', 'X0000879', 30, '2023-11-30T01:49:33.385Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000736', 'OR000736', 33.42, '2023-11-30T01:49:33.385Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000736', 'OR000736', '9279 Marcelo Tunnel', '2023-12-05T01:49:33.385Z','2023-12-06T01:49:33.385Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000737', 'U0000077', 'X0000654', 25, '2023-11-02T06:22:05.163Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000738', 'U0000047', 'X0000805', 26, '2023-11-15T14:09:23.399Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000738', 'OR000738', 45.42, '2023-11-15T14:09:23.399Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000739', 'U0000035', 'X0000270', 9, '2024-01-27T22:10:25.352Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000739', 'OR000739', 38.73, '2024-01-27T22:10:25.352Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000739', 'OR000739', '80090 Schmidt Plains', '2024-01-28T22:10:25.352Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000740', 'U0000071', 'X0000347', 21, '2024-02-21T17:36:38.992Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000740', 'OR000740', 437.25, '2024-02-21T17:36:38.992Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000740', 'OR000740', '7624 Smith Lights', '2024-02-25T17:36:38.992Z','2024-02-26T17:36:38.992Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000741', 'U0000074', 'X0000031', 31, '2023-10-24T16:51:43.838Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000742', 'U0000085', 'X0000824', 10, '2024-01-30T03:20:16.375Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000742', 'OR000742', 25.23, '2024-01-30T03:20:16.375Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000743', 'U0000017', 'X0000810', 14, '2023-11-23T00:12:14.944Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000743', 'OR000743', 31.83, '2023-11-23T00:12:14.944Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000743', 'OR000743', '658 Lavada Alley', '2023-11-28T00:12:14.944Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000744', 'U0000075', 'X0000236', 6, '2024-03-18T10:43:14.844Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000744', 'OR000744', 77.76, '2024-03-18T10:43:14.844Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000744', 'OR000744', '457 Broad Lane', '2024-03-19T10:43:14.844Z','2024-03-22T10:43:14.844Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000745', 'U0000094', 'X0000557', 20, '2023-12-01T13:36:37.003Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000746', 'U0000083', 'X0000574', 19, '2023-12-10T14:51:15.136Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000746', 'OR000746', 156.24, '2023-12-10T14:51:15.136Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000747', 'U0000082', 'X0000003', 33, '2024-03-22T02:48:18.072Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000747', 'OR000747', 36.93, '2024-03-22T02:48:18.072Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000747', 'OR000747', '6029 Mill Street', '2024-03-24T02:48:18.072Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000748', 'U0000009', 'X0000631', 44, '2023-10-20T17:26:40.951Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000748', 'OR000748', 289.63, '2023-10-20T17:26:40.951Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000748', 'OR000748', '744 Christiansen Locks', '2023-10-23T17:26:40.951Z','2023-10-27T17:26:40.951Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000749', 'U0000067', 'X0000450', 26, '2024-01-27T11:35:10.792Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000750', 'U0000019', 'X0000474', 22, '2023-11-19T13:31:17.688Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000750', 'OR000750', 284.22, '2023-11-19T13:31:17.688Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000751', 'U0000024', 'X0000196', 10, '2023-10-07T07:56:43.183Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000751', 'OR000751', 311.61, '2023-10-07T07:56:43.183Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000751', 'OR000751', '6494 Lind Pass', '2023-10-12T07:56:43.183Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000752', 'U0000093', 'X0000939', 28, '2024-03-15T20:53:39.181Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000752', 'OR000752', 1092.56, '2024-03-15T20:53:39.181Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000752', 'OR000752', '5140 Daisha Brook', '2024-03-18T20:53:39.181Z','2024-03-21T20:53:39.181Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000753', 'U0000038', 'X0000893', 26, '2023-12-11T16:28:05.384Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000754', 'U0000086', 'X0000534', 51, '2024-02-23T12:45:52.188Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000754', 'OR000754', 249.84, '2024-02-23T12:45:52.188Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000755', 'U0000069', 'X0000766', 10, '2024-01-20T02:17:34.352Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000755', 'OR000755', 124.47, '2024-01-20T02:17:34.352Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000755', 'OR000755', '33085 Beatty Track', '2024-01-23T02:17:34.352Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000756', 'U0000042', 'X0000162', 28, '2024-01-26T10:25:57.299Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000756', 'OR000756', 104.82, '2024-01-26T10:25:57.299Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000756', 'OR000756', '489 W Walnut Street', '2024-01-29T10:25:57.299Z','2024-01-31T10:25:57.299Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000757', 'U0000005', 'X0000554', 82, '2023-12-09T10:10:41.214Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000758', 'U0000008', 'X0000357', 10, '2023-12-30T04:59:05.654Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000758', 'OR000758', 43.92, '2023-12-30T04:59:05.654Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000759', 'U0000044', 'X0000488', 12, '2024-03-13T17:43:26.938Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000759', 'OR000759', 435.03, '2024-03-13T17:43:26.938Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000759', 'OR000759', '12640 Olaf Hill', '2024-03-16T17:43:26.938Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000760', 'U0000004', 'X0000306', 5, '2024-03-05T23:45:13.402Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000760', 'OR000760', 95.43, '2024-03-05T23:45:13.402Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000760', 'OR000760', '6318 Kiehn Glens', '2024-03-10T23:45:13.402Z','2024-03-15T23:45:13.402Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000761', 'U0000069', 'X0000189', 41, '2023-11-03T07:46:18.753Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000762', 'U0000075', 'X0000260', 26, '2024-02-14T06:10:24.834Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000762', 'OR000762', 115.77, '2024-02-14T06:10:24.834Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000763', 'U0000092', 'X0000081', 22, '2023-12-08T15:07:57.792Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000763', 'OR000763', 27.88, '2023-12-08T15:07:57.792Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000763', 'OR000763', '124 Delaney Point', '2023-12-09T15:07:57.792Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000764', 'U0000037', 'X0000190', 30, '2024-02-08T11:38:44.497Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000764', 'OR000764', 33.22, '2024-02-08T11:38:44.497Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000764', 'OR000764', '12115 Tennyson Road', '2024-02-10T11:38:44.497Z','2024-02-11T11:38:44.497Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000765', 'U0000053', 'X0000031', 23, '2023-11-17T17:37:48.132Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000766', 'U0000042', 'X0000843', 38, '2024-03-22T15:44:09.346Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000766', 'OR000766', 1467.66, '2024-03-22T15:44:09.346Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000767', 'U0000010', 'X0000504', 60, '2024-02-11T15:35:26.664Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000767', 'OR000767', 156.87, '2024-02-11T15:35:26.664Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000767', 'OR000767', '14941 W Central Avenue', '2024-02-12T15:35:26.664Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000768', 'U0000017', 'X0000847', 6, '2024-03-02T03:59:14.854Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000768', 'OR000768', 31.5, '2024-03-02T03:59:14.854Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000768', 'OR000768', '658 Lavada Alley', '2024-03-03T03:59:14.854Z','2024-03-07T03:59:14.854Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000769', 'U0000100', 'X0000829', 17, '2023-12-05T09:10:05.340Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000770', 'U0000012', 'X0000914', 8, '2024-03-03T12:36:48.639Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000770', 'OR000770', 34.98, '2024-03-03T12:36:48.639Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000771', 'U0000091', 'X0000717', 11, '2023-10-09T20:24:33.925Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000771', 'OR000771', 873.33, '2023-10-09T20:24:33.925Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000771', 'OR000771', '56370 Suzanne Loop', '2023-10-14T20:24:33.925Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000772', 'U0000020', 'X0000645', 58, '2024-03-24T22:30:05.998Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000772', 'OR000772', 67.92, '2024-03-24T22:30:05.998Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000772', 'OR000772', '85931 Pagac Brook', '2024-03-28T22:30:05.998Z','2024-04-02T22:30:05.998Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000773', 'U0000007', 'X0000015', 6, '2023-12-05T17:16:36.889Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000774', 'U0000098', 'X0000580', 18, '2024-03-13T21:42:33.379Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000774', 'OR000774', 137.85, '2024-03-13T21:42:33.379Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000775', 'U0000015', 'X0000045', 30, '2023-12-17T18:10:19.990Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000775', 'OR000775', 182.35, '2023-12-17T18:10:19.990Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000775', 'OR000775', '34992 Maybelle Run', '2023-12-20T18:10:19.990Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000776', 'U0000006', 'X0000077', 34, '2024-02-18T13:23:09.300Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000776', 'OR000776', 39.87, '2024-02-18T13:23:09.300Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000776', 'OR000776', '1792 Emelie Motorway', '2024-02-22T13:23:09.300Z','2024-02-23T13:23:09.300Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000777', 'U0000073', 'X0000258', 89, '2023-12-21T13:07:22.504Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000778', 'U0000088', 'X0000703', 23, '2023-12-15T03:51:23.660Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000778', 'OR000778', 209.26, '2023-12-15T03:51:23.660Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000779', 'U0000087', 'X0000794', 5, '2023-10-31T16:54:11.930Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000779', 'OR000779', 243.18, '2023-10-31T16:54:11.930Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000779', 'OR000779', '773 Cartwright Ridge', '2023-11-05T16:54:11.930Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000780', 'U0000049', 'X0000870', 26, '2023-12-27T23:21:49.369Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000780', 'OR000780', 138.24, '2023-12-27T23:21:49.369Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000780', 'OR000780', '4264 Park Lane', '2023-12-28T23:21:49.369Z','2023-12-30T23:21:49.369Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000781', 'U0000012', 'X0000592', 26, '2024-01-07T23:26:31.089Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000782', 'U0000055', 'X0000990', 22, '2023-12-07T23:59:57.121Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000782', 'OR000782', 95.94, '2023-12-07T23:59:57.121Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000783', 'U0000090', 'X0000939', 41, '2024-03-14T15:56:38.264Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000783', 'OR000783', 1092.56, '2024-03-14T15:56:38.264Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000783', 'OR000783', '94225 Hassan Mills', '2024-03-18T15:56:38.264Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000784', 'U0000079', 'X0000972', 37, '2023-11-01T11:10:17.739Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000784', 'OR000784', 307.51, '2023-11-01T11:10:17.739Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000784', 'OR000784', '16043 Brenna Landing', '2023-11-02T11:10:17.739Z','2023-11-05T11:10:17.739Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000785', 'U0000028', 'X0000958', 21, '2024-03-27T07:55:53.613Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000786', 'U0000034', 'X0000735', 70, '2023-12-16T09:28:53.932Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000786', 'OR000786', 119.95, '2023-12-16T09:28:53.932Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000787', 'U0000070', 'X0000417', 78, '2024-03-24T19:57:04.598Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000787', 'OR000787', 67.52, '2024-03-24T19:57:04.598Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000787', 'OR000787', '88565 N Harrison Street', '2024-03-26T19:57:04.598Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000788', 'U0000061', 'X0000170', 60, '2024-01-03T21:15:29.168Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000788', 'OR000788', 539.82, '2024-01-03T21:15:29.168Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000788', 'OR000788', '80281 Cathrine Field', '2024-01-04T21:15:29.168Z','2024-01-08T21:15:29.168Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000789', 'U0000065', 'X0000085', 27, '2023-11-20T16:45:27.883Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000790', 'U0000093', 'X0000853', 69, '2023-12-08T07:19:10.601Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000790', 'OR000790', 110.34, '2023-12-08T07:19:10.601Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000791', 'U0000012', 'X0000431', 65, '2023-10-29T08:46:21.024Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000791', 'OR000791', 23.09, '2023-10-29T08:46:21.024Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000791', 'OR000791', '84299 Parkside', '2023-10-30T08:46:21.024Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000792', 'U0000086', 'X0000199', 4, '2024-02-24T09:04:30.835Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000792', 'OR000792', 14.68, '2024-02-24T09:04:30.835Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000792', 'OR000792', '69611 Pound Lane', '2024-02-28T09:04:30.835Z','2024-03-02T09:04:30.835Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000793', 'U0000054', 'X0000814', 38, '2023-11-02T03:07:14.350Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000794', 'U0000067', 'X0000604', 19, '2024-03-24T05:28:13.386Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000794', 'OR000794', 141.57, '2024-03-24T05:28:13.386Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000795', 'U0000090', 'X0000568', 23, '2023-10-09T01:53:50.810Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000795', 'OR000795', 11.19, '2023-10-09T01:53:50.810Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000795', 'OR000795', '94225 Hassan Mills', '2023-10-14T01:53:50.810Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000796', 'U0000031', 'X0000436', 5, '2024-03-06T17:33:14.715Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000796', 'OR000796', 97.06, '2024-03-06T17:33:14.715Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000796', 'OR000796', '192 Roberts Branch', '2024-03-10T17:33:14.715Z','2024-03-12T17:33:14.715Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000797', 'U0000076', 'X0000786', 19, '2024-03-31T21:57:34.884Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000798', 'U0000092', 'X0000495', 44, '2024-01-21T12:15:54.727Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000798', 'OR000798', 222.52, '2024-01-21T12:15:54.727Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000799', 'U0000099', 'X0000247', 48, '2023-12-02T17:10:19.798Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000799', 'OR000799', 191.31, '2023-12-02T17:10:19.798Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000799', 'OR000799', '323 Bernardo Oval', '2023-12-05T17:10:19.798Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000800', 'U0000026', 'X0000217', 3, '2023-10-05T03:31:14.341Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000800', 'OR000800', 184.6, '2023-10-05T03:31:14.341Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000800', 'OR000800', '323 Emmerich Course', '2023-10-10T03:31:14.341Z','2023-10-12T03:31:14.341Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000801', 'U0000064', 'X0000275', 7, '2024-02-19T02:19:44.540Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000802', 'U0000020', 'X0000822', 1, '2024-03-13T04:44:10.305Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000802', 'OR000802', 1084.65, '2024-03-13T04:44:10.305Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000803', 'U0000040', 'X0000639', 67, '2023-12-30T06:25:22.663Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000803', 'OR000803', 32.3, '2023-12-30T06:25:22.663Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000803', 'OR000803', '54268 Schimmel Burg', '2023-12-31T06:25:22.663Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000804', 'U0000083', 'X0000189', 75, '2024-02-11T06:43:19.990Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000804', 'OR000804', 77.7, '2024-02-11T06:43:19.990Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000804', 'OR000804', '5520 Beach Road', '2024-02-13T06:43:19.990Z','2024-02-16T06:43:19.990Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000805', 'U0000029', 'X0000884', 39, '2023-11-24T01:44:28.392Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000806', 'U0000051', 'X0000379', 7, '2024-03-17T07:10:59.426Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000806', 'OR000806', 43.2, '2024-03-17T07:10:59.426Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000807', 'U0000073', 'X0000715', 8, '2023-12-01T11:11:20.353Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000807', 'OR000807', 125.35, '2023-12-01T11:11:20.353Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000807', 'OR000807', '2363 Ruecker Valley', '2023-12-04T11:11:20.353Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000808', 'U0000047', 'X0000359', 30, '2024-01-21T23:18:12.909Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000808', 'OR000808', 45, '2024-01-21T23:18:12.909Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000808', 'OR000808', '770 W Washington Avenue', '2024-01-25T23:18:12.909Z','2024-01-30T23:18:12.909Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000809', 'U0000021', 'X0000216', 10, '2024-02-23T22:19:50.816Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000810', 'U0000024', 'X0000438', 66, '2023-10-17T04:44:05.462Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000810', 'OR000810', 200.22, '2023-10-17T04:44:05.462Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000811', 'U0000051', 'X0000364', 4, '2023-11-01T11:56:37.914Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000811', 'OR000811', 49.95, '2023-11-01T11:56:37.914Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000811', 'OR000811', '5981 Atlantic Avenue', '2023-11-03T11:56:37.914Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000812', 'U0000070', 'X0000394', 18, '2024-01-08T14:15:30.647Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000812', 'OR000812', 940.25, '2024-01-08T14:15:30.647Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000812', 'OR000812', '88565 N Harrison Street', '2024-01-13T14:15:30.647Z','2024-01-16T14:15:30.647Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000813', 'U0000062', 'X0000027', 4, '2024-01-30T16:37:20.922Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000814', 'U0000022', 'X0000768', 10, '2023-11-07T03:27:12.635Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000814', 'OR000814', 160.09, '2023-11-07T03:27:12.635Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000815', 'U0000079', 'X0000520', 68, '2024-02-07T05:48:37.944Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000815', 'OR000815', 161.64, '2024-02-07T05:48:37.944Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000815', 'OR000815', '16043 Brenna Landing', '2024-02-12T05:48:37.944Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000816', 'U0000077', 'X0000808', 16, '2023-10-30T09:24:00.528Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000816', 'OR000816', 16.34, '2023-10-30T09:24:00.528Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000816', 'OR000816', '9507 Gottlieb Gateway', '2023-10-31T09:24:00.528Z','2023-11-02T09:24:00.528Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000817', 'U0000012', 'X0000823', 63, '2023-11-22T17:54:25.788Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000818', 'U0000012', 'X0000800', 34, '2023-12-01T05:50:46.605Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000818', 'OR000818', 992.22, '2023-12-01T05:50:46.605Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000819', 'U0000064', 'X0000775', 21, '2024-03-17T14:04:41.885Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000819', 'OR000819', 150.69, '2024-03-17T14:04:41.885Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000819', 'OR000819', '1692 Smith Street', '2024-03-21T14:04:41.885Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000820', 'U0000025', 'X0000821', 18, '2024-03-16T04:21:47.850Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000820', 'OR000820', 1167.24, '2024-03-16T04:21:47.850Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000820', 'OR000820', '6274 Jerrod Plain', '2024-03-18T04:21:47.850Z','2024-03-21T04:21:47.850Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000821', 'U0000088', 'X0000603', 40, '2024-01-09T06:56:09.286Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000822', 'U0000036', 'X0000880', 22, '2024-01-18T12:15:25.144Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000822', 'OR000822', 22.8, '2024-01-18T12:15:25.144Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000823', 'U0000029', 'X0000906', 29, '2024-03-04T04:16:42.399Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000823', 'OR000823', 266.14, '2024-03-04T04:16:42.399Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000823', 'OR000823', '842 Nitzsche Knoll', '2024-03-05T04:16:42.399Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000824', 'U0000045', 'X0000417', 12, '2023-10-06T01:03:16.262Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000824', 'OR000824', 67.52, '2023-10-06T01:03:16.262Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000824', 'OR000824', '893 Cummerata Trail', '2023-10-10T01:03:16.262Z','2023-10-12T01:03:16.262Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000825', 'U0000069', 'X0000664', 39, '2024-01-21T16:25:53.744Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000826', 'U0000043', 'X0000470', 44, '2024-03-23T00:02:06.444Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000826', 'OR000826', 136.35, '2024-03-23T00:02:06.444Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000827', 'U0000014', 'X0000820', 13, '2024-03-02T16:23:20.380Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000827', 'OR000827', 56.62, '2024-03-02T16:23:20.380Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000827', 'OR000827', '55447 Warren Close', '2024-03-06T16:23:20.380Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000828', 'U0000015', 'X0000599', 41, '2024-03-20T04:58:48.550Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000828', 'OR000828', 40.41, '2024-03-20T04:58:48.550Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000828', 'OR000828', '34992 Maybelle Run', '2024-03-21T04:58:48.550Z','2024-03-26T04:58:48.550Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000829', 'U0000010', 'X0000957', 1, '2024-03-01T16:21:13.770Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000830', 'U0000004', 'X0000188', 3, '2023-10-09T02:58:57.591Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000830', 'OR000830', 69.06, '2023-10-09T02:58:57.591Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000831', 'U0000009', 'X0000927', 8, '2023-10-24T02:19:33.474Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000831', 'OR000831', 18.6, '2023-10-24T02:19:33.474Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000831', 'OR000831', '744 Christiansen Locks', '2023-10-28T02:19:33.474Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000832', 'U0000093', 'X0000933', 39, '2024-03-12T15:16:01.430Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000832', 'OR000832', 86.39, '2024-03-12T15:16:01.430Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000832', 'OR000832', '5140 Daisha Brook', '2024-03-17T15:16:01.430Z','2024-03-18T15:16:01.430Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000833', 'U0000043', 'X0000849', 1, '2023-10-11T17:21:43.257Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000834', 'U0000088', 'X0000369', 26, '2024-03-17T17:03:00.815Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000834', 'OR000834', 45.91, '2024-03-17T17:03:00.815Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000835', 'U0000090', 'X0000143', 33, '2023-10-16T16:45:56.135Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000835', 'OR000835', 1049.84, '2023-10-16T16:45:56.135Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000835', 'OR000835', '94225 Hassan Mills', '2023-10-20T16:45:56.135Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000836', 'U0000018', 'X0000571', 2, '2024-02-22T15:34:26.301Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000836', 'OR000836', 1026.6, '2024-02-22T15:34:26.301Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000836', 'OR000836', '59575 Mill Street', '2024-02-27T15:34:26.301Z','2024-02-28T15:34:26.301Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000837', 'U0000070', 'X0000404', 2, '2024-01-07T01:41:28.023Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000838', 'U0000040', 'X0000323', 53, '2023-11-03T19:01:42.755Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000838', 'OR000838', 130.73, '2023-11-03T19:01:42.755Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000839', 'U0000033', 'X0000313', 11, '2023-11-30T13:24:06.739Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000839', 'OR000839', 63.18, '2023-11-30T13:24:06.739Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000839', 'OR000839', '1975 Main Street', '2023-12-01T13:24:06.739Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000840', 'U0000034', 'X0000034', 81, '2024-01-14T20:12:17.984Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000840', 'OR000840', 852, '2024-01-14T20:12:17.984Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000840', 'OR000840', '33811 E Main Street', '2024-01-18T20:12:17.984Z','2024-01-23T20:12:17.984Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000841', 'U0000035', 'X0000099', 11, '2024-03-19T08:54:43.583Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000842', 'U0000006', 'X0000942', 27, '2024-01-06T21:41:00.077Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000842', 'OR000842', 139.83, '2024-01-06T21:41:00.077Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000843', 'U0000023', 'X0000164', 74, '2024-01-14T21:12:57.128Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000843', 'OR000843', 139.4, '2024-01-14T21:12:57.128Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000843', 'OR000843', '3935 Magnolia Trail', '2024-01-19T21:12:57.128Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000844', 'U0000046', 'X0000668', 2, '2024-01-09T07:53:59.792Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000844', 'OR000844', 1470.76, '2024-01-09T07:53:59.792Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000844', 'OR000844', '5563 Juniper Close', '2024-01-12T07:53:59.792Z','2024-01-16T07:53:59.792Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000845', 'U0000092', 'X0000829', 38, '2023-12-04T01:26:46.078Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000846', 'U0000052', 'X0000892', 36, '2023-10-15T13:22:49.777Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000846', 'OR000846', 77.56, '2023-10-15T13:22:49.777Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000847', 'U0000077', 'X0000531', 33, '2024-02-20T14:23:14.425Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000847', 'OR000847', 137.66, '2024-02-20T14:23:14.425Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000847', 'OR000847', '9507 Gottlieb Gateway', '2024-02-22T14:23:14.425Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000848', 'U0000032', 'X0000701', 12, '2023-11-14T01:22:28.619Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000848', 'OR000848', 35.36, '2023-11-14T01:22:28.619Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000848', 'OR000848', '25440 S Water Street', '2023-11-18T01:22:28.619Z','2023-11-21T01:22:28.619Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000849', 'U0000005', 'X0000232', 19, '2024-02-11T00:53:56.591Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000850', 'U0000084', 'X0000645', 71, '2024-03-01T17:46:46.110Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000850', 'OR000850', 67.92, '2024-03-01T17:46:46.110Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000851', 'U0000073', 'X0000228', 11, '2023-12-15T09:07:00.966Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000851', 'OR000851', 665.73, '2023-12-15T09:07:00.966Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000851', 'OR000851', '2363 Ruecker Valley', '2023-12-17T09:07:00.966Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000852', 'U0000081', 'X0000547', 50, '2024-02-08T19:54:25.956Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000852', 'OR000852', 98.04, '2024-02-08T19:54:25.956Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000852', 'OR000852', '327 Hills Summit', '2024-02-10T19:54:25.956Z','2024-02-14T19:54:25.956Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000853', 'U0000011', 'X0000958', 12, '2023-11-06T05:54:52.664Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000854', 'U0000032', 'X0000145', 27, '2024-02-21T12:42:43.694Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000854', 'OR000854', 17.27, '2024-02-21T12:42:43.694Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000855', 'U0000096', 'X0000703', 29, '2023-10-06T19:24:00.935Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000855', 'OR000855', 209.26, '2023-10-06T19:24:00.935Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000855', 'OR000855', '28976 Laurel Rue', '2023-10-08T19:24:00.935Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000856', 'U0000090', 'X0000064', 36, '2024-02-06T05:48:26.891Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000856', 'OR000856', 142.52, '2024-02-06T05:48:26.891Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000856', 'OR000856', '94225 Hassan Mills', '2024-02-07T05:48:26.891Z','2024-02-09T05:48:26.891Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000857', 'U0000019', 'X0000697', 31, '2023-12-30T23:43:57.503Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000858', 'U0000064', 'X0000672', 62, '2024-03-04T06:32:37.569Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000858', 'OR000858', 1195.38, '2024-03-04T06:32:37.569Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000859', 'U0000036', 'X0000706', 9, '2023-10-06T06:59:59.930Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000859', 'OR000859', 186.48, '2023-10-06T06:59:59.930Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000859', 'OR000859', '47427 Lime Grove', '2023-10-10T06:59:59.930Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000860', 'U0000059', 'X0000509', 7, '2024-02-29T19:52:56.978Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000860', 'OR000860', 45.24, '2024-02-29T19:52:56.978Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000860', 'OR000860', '22218 W 8th Street', '2024-03-04T19:52:56.978Z','2024-03-06T19:52:56.978Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000861', 'U0000083', 'X0000678', 10, '2024-01-20T13:17:57.893Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000862', 'U0000045', 'X0000883', 47, '2023-11-13T00:01:17.439Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000862', 'OR000862', 84.42, '2023-11-13T00:01:17.439Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000863', 'U0000033', 'X0000063', 4, '2023-11-10T15:15:05.527Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000863', 'OR000863', 1296.45, '2023-11-10T15:15:05.527Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000863', 'OR000863', '1975 Main Street', '2023-11-15T15:15:05.527Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000864', 'U0000064', 'X0000703', 21, '2024-03-24T00:52:13.033Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000864', 'OR000864', 209.26, '2024-03-24T00:52:13.033Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000864', 'OR000864', '1692 Smith Street', '2024-03-25T00:52:13.033Z','2024-03-30T00:52:13.033Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000865', 'U0000093', 'X0000511', 53, '2023-12-11T16:20:07.743Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000866', 'U0000045', 'X0000227', 19, '2023-12-14T19:16:25.267Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000866', 'OR000866', 500.29, '2023-12-14T19:16:25.267Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000867', 'U0000085', 'X0000089', 5, '2024-02-25T08:37:08.503Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000867', 'OR000867', 26.27, '2024-02-25T08:37:08.503Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000867', 'OR000867', '597 Crescent Road', '2024-02-28T08:37:08.503Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000868', 'U0000042', 'X0000642', 11, '2023-10-06T22:58:42.659Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000868', 'OR000868', 38.38, '2023-10-06T22:58:42.659Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000868', 'OR000868', '489 W Walnut Street', '2023-10-08T22:58:42.659Z','2023-10-09T22:58:42.659Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000869', 'U0000054', 'X0000434', 8, '2023-12-21T16:46:07.623Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000870', 'U0000016', 'X0000154', 46, '2024-02-23T21:59:23.601Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000870', 'OR000870', 141.59, '2024-02-23T21:59:23.601Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000871', 'U0000089', 'X0000858', 54, '2023-12-31T22:26:30.144Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000871', 'OR000871', 29.4, '2023-12-31T22:26:30.144Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000871', 'OR000871', '14414 Gleichner Haven', '2024-01-02T22:26:30.144Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000872', 'U0000099', 'X0000277', 24, '2024-01-22T20:05:01.582Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000872', 'OR000872', 139.74, '2024-01-22T20:05:01.582Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000872', 'OR000872', '323 Bernardo Oval', '2024-01-23T20:05:01.582Z','2024-01-25T20:05:01.582Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000873', 'U0000001', 'X0000327', 13, '2024-02-29T02:04:56.512Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000874', 'U0000057', 'X0000009', 13, '2024-03-02T23:25:10.719Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000874', 'OR000874', 72.2, '2024-03-02T23:25:10.719Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000875', 'U0000007', 'X0000553', 16, '2023-11-18T13:24:13.038Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000875', 'OR000875', 117.89, '2023-11-18T13:24:13.038Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000875', 'OR000875', '6137 Stehr Extensions', '2023-11-23T13:24:13.038Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000876', 'U0000099', 'X0000850', 57, '2024-01-04T16:46:25.724Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000876', 'OR000876', 28.28, '2024-01-04T16:46:25.724Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000876', 'OR000876', '323 Bernardo Oval', '2024-01-05T16:46:25.724Z','2024-01-06T16:46:25.724Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000877', 'U0000004', 'X0000593', 25, '2024-03-18T13:09:24.488Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000878', 'U0000090', 'X0000254', 40, '2023-11-26T07:04:05.141Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000878', 'OR000878', 148.6, '2023-11-26T07:04:05.141Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000879', 'U0000048', 'X0000535', 66, '2024-02-11T23:39:29.653Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000879', 'OR000879', 69.45, '2024-02-11T23:39:29.653Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000879', 'OR000879', '9885 Priory Road', '2024-02-13T23:39:29.653Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000880', 'U0000093', 'X0000395', 7, '2024-02-14T11:44:21.511Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000880', 'OR000880', 63.77, '2024-02-14T11:44:21.511Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000880', 'OR000880', '5140 Daisha Brook', '2024-02-17T11:44:21.511Z','2024-02-19T11:44:21.511Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000881', 'U0000037', 'X0000319', 16, '2023-12-17T17:17:10.135Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000882', 'U0000027', 'X0000293', 20, '2024-02-22T09:34:40.009Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000882', 'OR000882', 75.91, '2024-02-22T09:34:40.009Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000883', 'U0000054', 'X0000512', 6, '2023-12-26T05:05:40.335Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000883', 'OR000883', 154.63, '2023-12-26T05:05:40.335Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000883', 'OR000883', '7936 Cliff Road', '2023-12-30T05:05:40.335Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000884', 'U0000027', 'X0000386', 28, '2023-10-13T13:56:46.986Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000884', 'OR000884', 162.87, '2023-10-13T13:56:46.986Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000884', 'OR000884', '24259 Ritchie Mountains', '2023-10-14T13:56:46.986Z','2023-10-17T13:56:46.986Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000885', 'U0000024', 'X0000621', 14, '2023-12-27T19:41:21.343Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000886', 'U0000042', 'X0000614', 5, '2023-10-05T04:50:50.865Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000886', 'OR000886', 806.94, '2023-10-05T04:50:50.865Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000887', 'U0000094', 'X0000825', 25, '2023-10-11T06:49:53.152Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000887', 'OR000887', 155.02, '2023-10-11T06:49:53.152Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000887', 'OR000887', '16775 Archibald Fort', '2023-10-14T06:49:53.152Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000888', 'U0000079', 'X0000245', 8, '2023-11-04T11:13:21.744Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000888', 'OR000888', 111.81, '2023-11-04T11:13:21.744Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000888', 'OR000888', '16043 Brenna Landing', '2023-11-08T11:13:21.744Z','2023-11-09T11:13:21.744Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000889', 'U0000066', 'X0000611', 1, '2024-03-03T20:59:38.185Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000890', 'U0000084', 'X0000343', 1, '2023-11-27T05:09:29.022Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000890', 'OR000890', 28.18, '2023-11-27T05:09:29.022Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000891', 'U0000085', 'X0000532', 1, '2024-02-16T08:07:18.269Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000891', 'OR000891', 199.88, '2024-02-16T08:07:18.269Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000891', 'OR000891', '597 Crescent Road', '2024-02-17T08:07:18.269Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000892', 'U0000018', 'X0000139', 17, '2023-10-13T19:40:56.872Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000892', 'OR000892', 140.32, '2023-10-13T19:40:56.872Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000892', 'OR000892', '59575 Mill Street', '2023-10-16T19:40:56.872Z','2023-10-19T19:40:56.872Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000893', 'U0000087', 'X0000893', 42, '2023-10-24T11:59:18.990Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000894', 'U0000065', 'X0000210', 32, '2024-03-29T04:26:53.933Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000894', 'OR000894', 150.78, '2024-03-29T04:26:53.933Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000895', 'U0000080', 'X0000402', 42, '2023-12-10T17:07:57.048Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000895', 'OR000895', 174.34, '2023-12-10T17:07:57.048Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000895', 'OR000895', '321 Hickory Street', '2023-12-14T17:07:57.048Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000896', 'U0000038', 'X0000565', 45, '2023-10-12T08:36:31.709Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000896', 'OR000896', 29.43, '2023-10-12T08:36:31.709Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000896', 'OR000896', '44261 Maye Wells', '2023-10-17T08:36:31.709Z','2023-10-21T08:36:31.709Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000897', 'U0000093', 'X0000561', 1, '2023-10-21T14:19:23.849Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000898', 'U0000052', 'X0000050', 4, '2023-11-26T12:59:55.033Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000898', 'OR000898', 11.34, '2023-11-26T12:59:55.033Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000899', 'U0000084', 'X0000998', 28, '2023-10-11T21:41:15.063Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000899', 'OR000899', 146, '2023-10-11T21:41:15.063Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000899', 'OR000899', '20325 Brock Heights', '2023-10-13T21:41:15.063Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000900', 'U0000023', 'X0000953', 20, '2024-03-10T08:18:44.619Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000900', 'OR000900', 134.87, '2024-03-10T08:18:44.619Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000900', 'OR000900', '3935 Magnolia Trail', '2024-03-14T08:18:44.619Z','2024-03-16T08:18:44.619Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000901', 'U0000062', 'X0000492', 83, '2024-03-19T18:12:28.565Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000902', 'U0000093', 'X0000923', 35, '2024-03-29T06:23:15.966Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000902', 'OR000902', 1492.17, '2024-03-29T06:23:15.966Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000903', 'U0000090', 'X0000449', 23, '2024-02-18T08:08:37.436Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000903', 'OR000903', 107.44, '2024-02-18T08:08:37.436Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000903', 'OR000903', '94225 Hassan Mills', '2024-02-21T08:08:37.436Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000904', 'U0000088', 'X0000271', 49, '2023-11-09T11:47:06.102Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000904', 'OR000904', 120.5, '2023-11-09T11:47:06.102Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000904', 'OR000904', '3693 Jason Motorway', '2023-11-12T11:47:06.102Z','2023-11-17T11:47:06.102Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000905', 'U0000025', 'X0000556', 2, '2023-12-06T06:19:03.637Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000906', 'U0000006', 'X0000350', 50, '2023-10-22T03:48:33.103Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000906', 'OR000906', 183.82, '2023-10-22T03:48:33.103Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000907', 'U0000008', 'X0000769', 11, '2024-03-03T12:40:32.204Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000907', 'OR000907', 46.76, '2024-03-03T12:40:32.204Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000907', 'OR000907', '6391 Grayson Islands', '2024-03-05T12:40:32.204Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000908', 'U0000007', 'X0000351', 2, '2024-02-10T15:40:57.049Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000908', 'OR000908', 63.24, '2024-02-10T15:40:57.049Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000908', 'OR000908', '6137 Stehr Extensions', '2024-02-12T15:40:57.049Z','2024-02-13T15:40:57.049Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000909', 'U0000007', 'X0000633', 20, '2024-01-13T00:11:08.615Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000910', 'U0000071', 'X0000397', 47, '2024-02-12T00:07:47.436Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000910', 'OR000910', 57.93, '2024-02-12T00:07:47.436Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000911', 'U0000088', 'X0000776', 15, '2024-01-14T14:32:47.280Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000911', 'OR000911', 11.87, '2024-01-14T14:32:47.280Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000911', 'OR000911', '3693 Jason Motorway', '2024-01-18T14:32:47.280Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000912', 'U0000079', 'X0000062', 2, '2024-03-04T17:55:14.110Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000912', 'OR000912', 839.07, '2024-03-04T17:55:14.110Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000912', 'OR000912', '16043 Brenna Landing', '2024-03-05T17:55:14.110Z','2024-03-09T17:55:14.110Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000913', 'U0000089', 'X0000612', 7, '2023-10-23T06:07:25.703Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000914', 'U0000050', 'X0000251', 2, '2023-11-10T16:28:59.567Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000914', 'OR000914', 86.04, '2023-11-10T16:28:59.567Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000915', 'U0000027', 'X0000115', 4, '2024-03-02T11:38:40.146Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000915', 'OR000915', 91.71, '2024-03-02T11:38:40.146Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000915', 'OR000915', '24259 Ritchie Mountains', '2024-03-07T11:38:40.146Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000916', 'U0000100', 'X0000470', 37, '2023-10-31T08:28:05.927Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000916', 'OR000916', 136.35, '2023-10-31T08:28:05.927Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000916', 'OR000916', '67999 Gavin Unions', '2023-11-02T08:28:05.927Z','2023-11-07T08:28:05.927Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000917', 'U0000003', 'X0000959', 59, '2023-10-15T14:24:55.045Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000918', 'U0000063', 'X0000470', 7, '2023-11-16T11:39:31.623Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000918', 'OR000918', 136.35, '2023-11-16T11:39:31.623Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000919', 'U0000095', 'X0000528', 28, '2024-01-31T01:45:54.368Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000919', 'OR000919', 92.97, '2024-01-31T01:45:54.368Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000919', 'OR000919', '9730 Bayer Neck', '2024-02-04T01:45:54.368Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000920', 'U0000043', 'X0000970', 66, '2024-03-26T16:53:56.891Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000920', 'OR000920', 991.35, '2024-03-26T16:53:56.891Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000920', 'OR000920', '2436 Gloucester Road', '2024-03-28T16:53:56.891Z','2024-04-02T16:53:56.891Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000921', 'U0000017', 'X0000529', 2, '2023-12-19T13:13:18.626Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000922', 'U0000054', 'X0000057', 16, '2024-02-28T14:14:43.355Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000922', 'OR000922', 25.92, '2024-02-28T14:14:43.355Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000923', 'U0000039', 'X0000837', 34, '2023-12-17T01:12:10.674Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000923', 'OR000923', 36.77, '2023-12-17T01:12:10.674Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000923', 'OR000923', '94686 N Broadway', '2023-12-19T01:12:10.674Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000924', 'U0000070', 'X0000941', 1, '2023-12-09T12:11:30.898Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000924', 'OR000924', 89.07, '2023-12-09T12:11:30.898Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000924', 'OR000924', '88565 N Harrison Street', '2023-12-14T12:11:30.898Z','2023-12-16T12:11:30.898Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000925', 'U0000089', 'X0000114', 20, '2023-12-09T15:47:20.705Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000926', 'U0000045', 'X0000873', 8, '2024-02-15T01:08:07.409Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000926', 'OR000926', 145.89, '2024-02-15T01:08:07.409Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000927', 'U0000002', 'X0000405', 19, '2023-11-09T03:53:24.084Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000927', 'OR000927', 120.99, '2023-11-09T03:53:24.084Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000927', 'OR000927', '806 Ferry Road', '2023-11-11T03:53:24.084Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000928', 'U0000045', 'X0000403', 3, '2023-10-09T02:02:19.490Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000928', 'OR000928', 69.28, '2023-10-09T02:02:19.490Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000928', 'OR000928', '893 Cummerata Trail', '2023-10-13T02:02:19.490Z','2023-10-18T02:02:19.490Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000929', 'U0000024', 'X0000384', 12, '2023-11-01T16:51:00.650Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000930', 'U0000010', 'X0000361', 27, '2023-11-01T15:43:57.691Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000930', 'OR000930', 33.24, '2023-11-01T15:43:57.691Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000931', 'U0000070', 'X0000133', 36, '2023-10-28T15:55:57.525Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000931', 'OR000931', 429.08, '2023-10-28T15:55:57.525Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000931', 'OR000931', '88565 N Harrison Street', '2023-10-30T15:55:57.525Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000932', 'U0000023', 'X0000478', 54, '2024-02-15T15:22:31.877Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000932', 'OR000932', 60.2, '2024-02-15T15:22:31.877Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000932', 'OR000932', '3935 Magnolia Trail', '2024-02-20T15:22:31.877Z','2024-02-24T15:22:31.877Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000933', 'U0000008', 'X0000178', 14, '2024-02-24T21:14:26.210Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000934', 'U0000004', 'X0000839', 76, '2024-03-03T00:15:37.875Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000934', 'OR000934', 243.44, '2024-03-03T00:15:37.875Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000935', 'U0000046', 'X0000790', 2, '2024-01-15T09:37:18.881Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000935', 'OR000935', 255.13, '2024-01-15T09:37:18.881Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000935', 'OR000935', '5563 Juniper Close', '2024-01-17T09:37:18.881Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000936', 'U0000014', 'X0000236', 46, '2023-10-14T06:40:31.282Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000936', 'OR000936', 77.76, '2023-10-14T06:40:31.282Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000936', 'OR000936', '55447 Warren Close', '2023-10-15T06:40:31.282Z','2023-10-19T06:40:31.282Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000937', 'U0000029', 'X0000631', 45, '2023-12-26T01:54:28.208Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000938', 'U0000082', 'X0000130', 40, '2024-02-02T02:33:52.293Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000938', 'OR000938', 108.1, '2024-02-02T02:33:52.293Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000939', 'U0000040', 'X0000137', 13, '2023-10-07T07:43:57.441Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000939', 'OR000939', 146.43, '2023-10-07T07:43:57.441Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000939', 'OR000939', '54268 Schimmel Burg', '2023-10-12T07:43:57.441Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000940', 'U0000083', 'X0000620', 4, '2023-11-21T03:41:58.157Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000940', 'OR000940', 42.42, '2023-11-21T03:41:58.157Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000940', 'OR000940', '5520 Beach Road', '2023-11-22T03:41:58.157Z','2023-11-23T03:41:58.157Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000941', 'U0000018', 'X0000525', 27, '2023-12-13T06:39:25.954Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000942', 'U0000086', 'X0000958', 16, '2023-10-28T15:03:34.426Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000942', 'OR000942', 27.8, '2023-10-28T15:03:34.426Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000943', 'U0000039', 'X0000331', 56, '2024-02-28T09:45:24.683Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000943', 'OR000943', 131.09, '2024-02-28T09:45:24.683Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000943', 'OR000943', '94686 N Broadway', '2024-02-29T09:45:24.683Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000944', 'U0000058', 'X0000227', 5, '2023-12-11T12:17:15.312Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000944', 'OR000944', 500.29, '2023-12-11T12:17:15.312Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000944', 'OR000944', '62184 W 12th Street', '2023-12-16T12:17:15.312Z','2023-12-17T12:17:15.312Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000945', 'U0000064', 'X0000871', 74, '2023-11-14T08:13:24.958Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000946', 'U0000070', 'X0000347', 67, '2024-03-28T00:49:17.183Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000946', 'OR000946', 437.25, '2024-03-28T00:49:17.183Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000947', 'U0000099', 'X0000723', 52, '2024-01-16T23:36:22.584Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000947', 'OR000947', 82.35, '2024-01-16T23:36:22.584Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000947', 'OR000947', '323 Bernardo Oval', '2024-01-19T23:36:22.584Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000948', 'U0000072', 'X0000501', 11, '2023-12-07T20:19:21.018Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000948', 'OR000948', 94.72, '2023-12-07T20:19:21.018Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000948', 'OR000948', '469 Lacy Rue', '2023-12-11T20:19:21.018Z','2023-12-16T20:19:21.018Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000949', 'U0000049', 'X0000804', 9, '2024-03-02T15:42:50.636Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000950', 'U0000093', 'X0000117', 74, '2024-03-26T03:07:01.494Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000950', 'OR000950', 44.71, '2024-03-26T03:07:01.494Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000951', 'U0000053', 'X0000401', 25, '2023-11-06T16:07:17.551Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000951', 'OR000951', 33.66, '2023-11-06T16:07:17.551Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000951', 'OR000951', '9299 Railway Street', '2023-11-11T16:07:17.551Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000952', 'U0000052', 'X0000797', 33, '2023-11-08T15:29:08.715Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000952', 'OR000952', 35.73, '2023-11-08T15:29:08.715Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000952', 'OR000952', '156 Park Crescent', '2023-11-13T15:29:08.715Z','2023-11-14T15:29:08.715Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000953', 'U0000043', 'X0000166', 6, '2023-10-01T04:39:17.178Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000954', 'U0000072', 'X0000839', 80, '2024-02-13T09:36:54.246Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000954', 'OR000954', 243.44, '2024-02-13T09:36:54.246Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000955', 'U0000081', 'X0000628', 64, '2024-01-29T18:01:57.839Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000955', 'OR000955', 134.75, '2024-01-29T18:01:57.839Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000955', 'OR000955', '327 Hills Summit', '2024-01-30T18:01:57.839Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000956', 'U0000071', 'X0000394', 25, '2024-03-03T00:42:16.221Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000956', 'OR000956', 940.25, '2024-03-03T00:42:16.221Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000956', 'OR000956', '7624 Smith Lights', '2024-03-07T00:42:16.221Z','2024-03-12T00:42:16.221Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000957', 'U0000094', 'X0000878', 60, '2024-01-07T05:30:56.098Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000958', 'U0000063', 'X0000300', 88, '2024-02-01T00:56:22.497Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000958', 'OR000958', 32.36, '2024-02-01T00:56:22.497Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000959', 'U0000047', 'X0000653', 31, '2023-12-10T01:18:12.708Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000959', 'OR000959', 92.55, '2023-12-10T01:18:12.708Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000959', 'OR000959', '770 W Washington Avenue', '2023-12-11T01:18:12.708Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000960', 'U0000051', 'X0000722', 22, '2024-02-24T13:58:27.288Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000960', 'OR000960', 38.82, '2024-02-24T13:58:27.288Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000960', 'OR000960', '5981 Atlantic Avenue', '2024-02-28T13:58:27.288Z','2024-02-29T13:58:27.288Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000961', 'U0000061', 'X0000960', 27, '2024-02-01T21:49:32.868Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000962', 'U0000021', 'X0000976', 14, '2023-12-19T20:05:10.082Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000962', 'OR000962', 65.03, '2023-12-19T20:05:10.082Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000963', 'U0000012', 'X0000614', 13, '2024-02-03T04:18:01.985Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000963', 'OR000963', 806.94, '2024-02-03T04:18:01.985Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000963', 'OR000963', '84299 Parkside', '2024-02-07T04:18:01.985Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000964', 'U0000027', 'X0000884', 22, '2023-12-13T17:53:52.177Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000964', 'OR000964', 205.88, '2023-12-13T17:53:52.177Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000964', 'OR000964', '24259 Ritchie Mountains', '2023-12-17T17:53:52.177Z','2023-12-20T17:53:52.177Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000965', 'U0000047', 'X0000251', 11, '2023-12-30T05:03:07.238Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000966', 'U0000073', 'X0000868', 23, '2023-12-03T11:13:55.470Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000966', 'OR000966', 192.72, '2023-12-03T11:13:55.470Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000967', 'U0000077', 'X0000692', 19, '2024-01-04T14:20:57.139Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000967', 'OR000967', 494.61, '2024-01-04T14:20:57.139Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000967', 'OR000967', '9507 Gottlieb Gateway', '2024-01-08T14:20:57.139Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000968', 'U0000004', 'X0000191', 28, '2024-02-29T14:04:33.680Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000968', 'OR000968', 22.71, '2024-02-29T14:04:33.680Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000968', 'OR000968', '6318 Kiehn Glens', '2024-03-01T14:04:33.680Z','2024-03-03T14:04:33.680Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000969', 'U0000010', 'X0000146', 31, '2023-12-10T15:34:37.195Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000970', 'U0000036', 'X0000247', 9, '2023-11-01T03:14:14.035Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000970', 'OR000970', 191.31, '2023-11-01T03:14:14.035Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000971', 'U0000075', 'X0000342', 15, '2024-03-14T16:06:32.900Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000971', 'OR000971', 268.69, '2024-03-14T16:06:32.900Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000971', 'OR000971', '457 Broad Lane', '2024-03-16T16:06:32.900Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000972', 'U0000094', 'X0000565', 92, '2024-01-23T07:15:40.705Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000972', 'OR000972', 29.43, '2024-01-23T07:15:40.705Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000972', 'OR000972', '16775 Archibald Fort', '2024-01-26T07:15:40.705Z','2024-01-30T07:15:40.705Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000973', 'U0000030', 'X0000966', 19, '2024-02-05T03:21:06.268Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000974', 'U0000079', 'X0000512', 11, '2024-01-17T16:13:09.958Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000974', 'OR000974', 154.63, '2024-01-17T16:13:09.958Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000975', 'U0000090', 'X0000036', 37, '2024-02-04T05:27:50.330Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000975', 'OR000975', 86.47, '2024-02-04T05:27:50.330Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000975', 'OR000975', '94225 Hassan Mills', '2024-02-06T05:27:50.330Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000976', 'U0000007', 'X0000392', 28, '2023-11-21T21:23:43.252Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000976', 'OR000976', 10.79, '2023-11-21T21:23:43.252Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000976', 'OR000976', '6137 Stehr Extensions', '2023-11-25T21:23:43.252Z','2023-11-29T21:23:43.252Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000977', 'U0000057', 'X0000670', 33, '2023-12-26T10:09:15.057Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000978', 'U0000057', 'X0000252', 16, '2023-10-10T11:14:46.715Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000978', 'OR000978', 540.45, '2023-10-10T11:14:46.715Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000979', 'U0000097', 'X0000929', 76, '2024-01-15T01:46:07.909Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000979', 'OR000979', 195.1, '2024-01-15T01:46:07.909Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000979', 'OR000979', '14604 Jermaine Junctions', '2024-01-16T01:46:07.909Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000980', 'U0000045', 'X0000874', 23, '2024-02-22T04:14:29.631Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000980', 'OR000980', 96.14, '2024-02-22T04:14:29.631Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000980', 'OR000980', '893 Cummerata Trail', '2024-02-26T04:14:29.631Z','2024-02-29T04:14:29.631Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000981', 'U0000031', 'X0000219', 42, '2023-11-26T05:21:51.457Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000982', 'U0000035', 'X0000773', 16, '2024-02-27T12:30:08.170Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000982', 'OR000982', 119.79, '2024-02-27T12:30:08.170Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000983', 'U0000086', 'X0000857', 16, '2024-03-01T19:50:24.216Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000983', 'OR000983', 1007.85, '2024-03-01T19:50:24.216Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000983', 'OR000983', '69611 Pound Lane', '2024-03-03T19:50:24.216Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000984', 'U0000018', 'X0000456', 29, '2023-10-09T05:50:32.620Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000984', 'OR000984', 17.82, '2023-10-09T05:50:32.620Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000984', 'OR000984', '59575 Mill Street', '2023-10-11T05:50:32.620Z','2023-10-12T05:50:32.620Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000985', 'U0000045', 'X0000170', 54, '2024-03-30T00:53:47.970Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000986', 'U0000035', 'X0000635', 63, '2024-02-06T00:33:30.796Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000986', 'OR000986', 22.73, '2024-02-06T00:33:30.796Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000987', 'U0000066', 'X0000633', 4, '2023-12-29T02:50:18.976Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000987', 'OR000987', 88.25, '2023-12-29T02:50:18.976Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000987', 'OR000987', '514 Jefferson Avenue', '2023-12-30T02:50:18.976Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000988', 'U0000037', 'X0000177', 19, '2023-10-15T12:15:51.503Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000988', 'OR000988', 110.46, '2023-10-15T12:15:51.503Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000988', 'OR000988', '12115 Tennyson Road', '2023-10-18T12:15:51.503Z','2023-10-19T12:15:51.503Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000989', 'U0000042', 'X0000555', 5, '2024-02-10T21:21:07.656Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000990', 'U0000036', 'X0000386', 26, '2023-10-29T05:44:28.828Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000990', 'OR000990', 162.87, '2023-10-29T05:44:28.828Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000991', 'U0000035', 'X0000071', 23, '2024-02-10T15:37:43.683Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000991', 'OR000991', 62.23, '2024-02-10T15:37:43.683Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000991', 'OR000991', '80090 Schmidt Plains', '2024-02-13T15:37:43.683Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000992', 'U0000020', 'X0000773', 29, '2024-03-26T08:15:06.393Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000992', 'OR000992', 119.79, '2024-03-26T08:15:06.393Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000992', 'OR000992', '85931 Pagac Brook', '2024-03-28T08:15:06.393Z','2024-03-30T08:15:06.393Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000993', 'U0000057', 'X0000661', 46, '2023-11-29T12:48:36.517Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000994', 'U0000001', 'X0000326', 3, '2024-01-31T18:38:06.891Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000994', 'OR000994', 71.14, '2024-01-31T18:38:06.891Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000995', 'U0000062', 'X0000593', 8, '2023-12-27T05:58:55.811Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000995', 'OR000995', 127.41, '2023-12-27T05:58:55.811Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000995', 'OR000995', '9219 Cassin Trace', '2023-12-31T05:58:55.811Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000996', 'U0000029', 'X0000571', 8, '2024-02-11T04:37:29.344Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000996', 'OR000996', 1026.6, '2024-02-11T04:37:29.344Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000996', 'OR000996', '842 Nitzsche Knoll', '2024-02-16T04:37:29.344Z','2024-02-17T04:37:29.344Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000997', 'U0000007', 'X0000695', 12, '2023-10-30T04:38:42.125Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000998', 'U0000032', 'X0000795', 72, '2024-01-13T21:02:32.877Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000998', 'OR000998', 1087.57, '2024-01-13T21:02:32.877Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR000999', 'U0000001', 'X0000567', 75, '2024-01-17T13:55:22.987Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0000999', 'OR000999', 144.7, '2024-01-17T13:55:22.987Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH000999', 'OR000999', '250 N Cedar Street', '2024-01-21T13:55:22.987Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001000', 'U0000050', 'X0000364', 7, '2023-11-13T09:11:38.228Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001000', 'OR001000', 49.95, '2023-11-13T09:11:38.228Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001000', 'OR001000', '385 Mill Street', '2023-11-17T09:11:38.228Z','2023-11-20T09:11:38.228Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001001', 'U0000042', 'X0000711', 20, '2024-02-26T22:50:41.973Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001002', 'U0000065', 'X0000815', 76, '2024-01-28T03:32:57.254Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001002', 'OR001002', 145.34, '2024-01-28T03:32:57.254Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001003', 'U0000097', 'X0000666', 24, '2024-02-18T19:31:39.809Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001003', 'OR001003', 202.88, '2024-02-18T19:31:39.809Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001003', 'OR001003', '14604 Jermaine Junctions', '2024-02-23T19:31:39.809Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001004', 'U0000099', 'X0000206', 32, '2024-01-24T23:00:57.294Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001004', 'OR001004', 101.3, '2024-01-24T23:00:57.294Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001004', 'OR001004', '323 Bernardo Oval', '2024-01-25T23:00:57.294Z','2024-01-26T23:00:57.294Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001005', 'U0000085', 'X0000099', 38, '2023-12-05T16:09:06.287Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001006', 'U0000028', 'X0000203', 9, '2024-03-13T04:11:34.678Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001006', 'OR001006', 246.28, '2024-03-13T04:11:34.678Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001007', 'U0000003', 'X0000943', 3, '2023-10-24T22:06:30.790Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001007', 'OR001007', 208.38, '2023-10-24T22:06:30.790Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001007', 'OR001007', '62430 Casper Neck', '2023-10-25T22:06:30.790Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001008', 'U0000054', 'X0000588', 4, '2023-11-17T12:58:23.888Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001008', 'OR001008', 253.42, '2023-11-17T12:58:23.888Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001008', 'OR001008', '7936 Cliff Road', '2023-11-22T12:58:23.888Z','2023-11-23T12:58:23.888Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001009', 'U0000024', 'X0000838', 40, '2024-02-02T13:46:01.763Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001010', 'U0000008', 'X0000664', 4, '2024-01-04T13:48:08.183Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001010', 'OR001010', 41.27, '2024-01-04T13:48:08.183Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001011', 'U0000048', 'X0000920', 6, '2023-12-22T05:14:44.946Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001011', 'OR001011', 16.11, '2023-12-22T05:14:44.946Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001011', 'OR001011', '9885 Priory Road', '2023-12-26T05:14:44.946Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001012', 'U0000081', 'X0000300', 25, '2024-01-25T08:04:28.232Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001012', 'OR001012', 32.36, '2024-01-25T08:04:28.232Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001012', 'OR001012', '327 Hills Summit', '2024-01-29T08:04:28.232Z','2024-02-01T08:04:28.232Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001013', 'U0000014', 'X0000595', 13, '2023-12-06T02:13:05.826Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001014', 'U0000045', 'X0000005', 56, '2024-01-21T19:51:17.228Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001014', 'OR001014', 227.02, '2024-01-21T19:51:17.228Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001015', 'U0000058', 'X0000176', 53, '2023-10-12T09:17:53.755Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001015', 'OR001015', 27.2, '2023-10-12T09:17:53.755Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001015', 'OR001015', '62184 W 12th Street', '2023-10-13T09:17:53.755Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001016', 'U0000039', 'X0000133', 48, '2024-03-12T09:49:25.385Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001016', 'OR001016', 429.08, '2024-03-12T09:49:25.385Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001016', 'OR001016', '94686 N Broadway', '2024-03-13T09:49:25.385Z','2024-03-18T09:49:25.385Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001017', 'U0000012', 'X0000926', 71, '2024-01-30T21:33:04.403Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001018', 'U0000100', 'X0000645', 27, '2024-03-15T23:29:47.555Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001018', 'OR001018', 67.92, '2024-03-15T23:29:47.555Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001019', 'U0000001', 'X0000767', 21, '2024-03-09T20:27:49.105Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001019', 'OR001019', 72.78, '2024-03-09T20:27:49.105Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001019', 'OR001019', '250 N Cedar Street', '2024-03-11T20:27:49.105Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001020', 'U0000028', 'X0000980', 6, '2023-11-28T04:52:37.236Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001020', 'OR001020', 31.37, '2023-11-28T04:52:37.236Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001020', 'OR001020', '889 St John''s Road', '2023-12-01T04:52:37.236Z','2023-12-05T04:52:37.236Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001021', 'U0000017', 'X0000443', 40, '2023-12-15T20:09:53.355Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001022', 'U0000081', 'X0000073', 11, '2024-03-30T16:55:52.875Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001022', 'OR001022', 167.23, '2024-03-30T16:55:52.875Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001023', 'U0000062', 'X0000257', 47, '2024-02-23T00:54:17.546Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001023', 'OR001023', 1130.55, '2024-02-23T00:54:17.546Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001023', 'OR001023', '9219 Cassin Trace', '2024-02-27T00:54:17.546Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001024', 'U0000003', 'X0000458', 65, '2024-02-01T21:23:37.727Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001024', 'OR001024', 33.42, '2024-02-01T21:23:37.727Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001024', 'OR001024', '62430 Casper Neck', '2024-02-05T21:23:37.727Z','2024-02-09T21:23:37.727Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001025', 'U0000087', 'X0000175', 6, '2024-01-12T19:43:07.310Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001026', 'U0000049', 'X0000990', 45, '2024-01-29T05:13:43.548Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001026', 'OR001026', 95.94, '2024-01-29T05:13:43.548Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001027', 'U0000099', 'X0000225', 21, '2024-03-20T09:46:48.823Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001027', 'OR001027', 133.35, '2024-03-20T09:46:48.823Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001027', 'OR001027', '323 Bernardo Oval', '2024-03-23T09:46:48.823Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001028', 'U0000083', 'X0000472', 61, '2023-10-15T11:59:59.953Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001028', 'OR001028', 49.48, '2023-10-15T11:59:59.953Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001028', 'OR001028', '5520 Beach Road', '2023-10-16T11:59:59.953Z','2023-10-18T11:59:59.953Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001029', 'U0000081', 'X0000075', 48, '2023-12-24T14:25:46.298Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001030', 'U0000039', 'X0000723', 22, '2024-02-01T07:51:16.378Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001030', 'OR001030', 82.35, '2024-02-01T07:51:16.378Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001031', 'U0000075', 'X0000681', 17, '2024-03-22T01:11:33.899Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001031', 'OR001031', 49.84, '2024-03-22T01:11:33.899Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001031', 'OR001031', '457 Broad Lane', '2024-03-26T01:11:33.899Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001032', 'U0000027', 'X0000105', 30, '2024-03-16T11:46:46.796Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001032', 'OR001032', 219.76, '2024-03-16T11:46:46.796Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001032', 'OR001032', '24259 Ritchie Mountains', '2024-03-21T11:46:46.796Z','2024-03-25T11:46:46.796Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001033', 'U0000096', 'X0000597', 9, '2024-02-03T18:49:35.942Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001034', 'U0000098', 'X0000866', 45, '2024-02-08T16:18:44.254Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001034', 'OR001034', 195.44, '2024-02-08T16:18:44.254Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001035', 'U0000088', 'X0000025', 48, '2024-02-01T18:07:58.000Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001035', 'OR001035', 467.5, '2024-02-01T18:07:58.000Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001035', 'OR001035', '3693 Jason Motorway', '2024-02-04T18:07:58.000Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001036', 'U0000040', 'X0000171', 73, '2023-12-01T03:47:57.625Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001036', 'OR001036', 36.73, '2023-12-01T03:47:57.625Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001036', 'OR001036', '54268 Schimmel Burg', '2023-12-02T03:47:57.625Z','2023-12-07T03:47:57.625Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001037', 'U0000089', 'X0000845', 31, '2023-11-11T03:35:59.245Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001038', 'U0000065', 'X0000378', 11, '2024-03-13T08:53:39.159Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001038', 'OR001038', 95.78, '2024-03-13T08:53:39.159Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001039', 'U0000020', 'X0000468', 5, '2023-12-08T03:48:43.126Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001039', 'OR001039', 191.62, '2023-12-08T03:48:43.126Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001039', 'OR001039', '85931 Pagac Brook', '2023-12-10T03:48:43.126Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001040', 'U0000029', 'X0000495', 47, '2024-03-17T21:33:06.305Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001040', 'OR001040', 222.52, '2024-03-17T21:33:06.305Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001040', 'OR001040', '842 Nitzsche Knoll', '2024-03-20T21:33:06.305Z','2024-03-24T21:33:06.305Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001041', 'U0000047', 'X0000083', 18, '2023-10-05T03:44:36.577Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001042', 'U0000049', 'X0000785', 4, '2024-03-23T14:43:26.492Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001042', 'OR001042', 27.63, '2024-03-23T14:43:26.492Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001043', 'U0000093', 'X0000265', 4, '2023-11-16T03:29:45.108Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001043', 'OR001043', 17.16, '2023-11-16T03:29:45.108Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001043', 'OR001043', '5140 Daisha Brook', '2023-11-20T03:29:45.108Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001044', 'U0000014', 'X0000793', 16, '2023-12-30T23:39:53.255Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001044', 'OR001044', 1153.9, '2023-12-30T23:39:53.255Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001044', 'OR001044', '55447 Warren Close', '2024-01-01T23:39:53.255Z','2024-01-04T23:39:53.255Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001045', 'U0000001', 'X0000491', 26, '2023-10-10T16:18:32.441Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001046', 'U0000089', 'X0000104', 40, '2024-03-27T02:48:03.137Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001046', 'OR001046', 218.5, '2024-03-27T02:48:03.137Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001047', 'U0000094', 'X0000577', 4, '2024-01-05T19:12:02.657Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001047', 'OR001047', 158.64, '2024-01-05T19:12:02.657Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001047', 'OR001047', '16775 Archibald Fort', '2024-01-09T19:12:02.657Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001048', 'U0000005', 'X0000112', 6, '2023-10-13T22:08:07.662Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001048', 'OR001048', 36.44, '2023-10-13T22:08:07.662Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001048', 'OR001048', '249 Dickinson Motorway', '2023-10-18T22:08:07.662Z','2023-10-20T22:08:07.662Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001049', 'U0000044', 'X0000793', 40, '2024-03-19T22:30:17.287Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001050', 'U0000069', 'X0000612', 32, '2023-10-09T01:05:12.792Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001050', 'OR001050', 71.37, '2023-10-09T01:05:12.792Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001051', 'U0000076', 'X0000503', 14, '2023-11-14T09:34:46.684Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001051', 'OR001051', 168.91, '2023-11-14T09:34:46.684Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001051', 'OR001051', '69547 Rosamond Field', '2023-11-15T09:34:46.684Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001052', 'U0000041', 'X0000524', 1, '2023-12-13T08:55:01.922Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001052', 'OR001052', 47.01, '2023-12-13T08:55:01.922Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001052', 'OR001052', '916 Bayer Dale', '2023-12-16T08:55:01.922Z','2023-12-20T08:55:01.922Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001053', 'U0000063', 'X0000570', 43, '2024-03-04T00:41:58.494Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001054', 'U0000001', 'X0000961', 70, '2023-11-07T03:31:33.458Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001054', 'OR001054', 134.55, '2023-11-07T03:31:33.458Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001055', 'U0000014', 'X0000928', 38, '2024-01-13T08:32:20.901Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001055', 'OR001055', 207.31, '2024-01-13T08:32:20.901Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001055', 'OR001055', '55447 Warren Close', '2024-01-15T08:32:20.901Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001056', 'U0000013', 'X0000405', 2, '2023-12-02T21:23:59.805Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001056', 'OR001056', 120.99, '2023-12-02T21:23:59.805Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001056', 'OR001056', '7082 Muller Meadow', '2023-12-04T21:23:59.805Z','2023-12-05T21:23:59.805Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001057', 'U0000071', 'X0000362', 48, '2023-10-15T19:33:18.689Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001058', 'U0000053', 'X0000425', 69, '2024-03-05T09:50:18.400Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001058', 'OR001058', 49.36, '2024-03-05T09:50:18.400Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001059', 'U0000060', 'X0000994', 30, '2023-10-20T05:08:55.600Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001059', 'OR001059', 209.95, '2023-10-20T05:08:55.600Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001059', 'OR001059', '39988 Ryan Lodge', '2023-10-24T05:08:55.600Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001060', 'U0000061', 'X0000054', 37, '2024-01-02T02:25:30.263Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001060', 'OR001060', 136.8, '2024-01-02T02:25:30.263Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001060', 'OR001060', '80281 Cathrine Field', '2024-01-07T02:25:30.263Z','2024-01-08T02:25:30.263Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001061', 'U0000024', 'X0000572', 17, '2024-03-22T17:27:03.745Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001062', 'U0000006', 'X0000299', 9, '2023-12-08T20:10:06.030Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001062', 'OR001062', 100.81, '2023-12-08T20:10:06.030Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001063', 'U0000080', 'X0000096', 12, '2023-12-01T22:44:52.075Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001063', 'OR001063', 18.38, '2023-12-01T22:44:52.075Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001063', 'OR001063', '321 Hickory Street', '2023-12-04T22:44:52.075Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001064', 'U0000004', 'X0000476', 4, '2023-10-17T12:55:04.986Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001064', 'OR001064', 33.06, '2023-10-17T12:55:04.986Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001064', 'OR001064', '6318 Kiehn Glens', '2023-10-20T12:55:04.986Z','2023-10-23T12:55:04.986Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001065', 'U0000011', 'X0000627', 1, '2023-11-16T08:38:21.379Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001066', 'U0000016', 'X0000031', 24, '2024-01-22T06:46:08.430Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001066', 'OR001066', 347.07, '2024-01-22T06:46:08.430Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001067', 'U0000089', 'X0000607', 1, '2024-03-06T10:34:30.444Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001067', 'OR001067', 49.17, '2024-03-06T10:34:30.444Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001067', 'OR001067', '14414 Gleichner Haven', '2024-03-11T10:34:30.444Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001068', 'U0000006', 'X0000517', 7, '2023-10-09T14:57:05.335Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001068', 'OR001068', 63.47, '2023-10-09T14:57:05.335Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001068', 'OR001068', '1792 Emelie Motorway', '2023-10-13T14:57:05.335Z','2023-10-17T14:57:05.335Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001069', 'U0000062', 'X0000991', 18, '2023-11-02T15:33:58.412Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001070', 'U0000008', 'X0000158', 54, '2024-03-04T22:34:48.368Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001070', 'OR001070', 87.75, '2024-03-04T22:34:48.368Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001071', 'U0000013', 'X0000318', 24, '2023-11-10T06:37:49.735Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001071', 'OR001071', 166.57, '2023-11-10T06:37:49.735Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001071', 'OR001071', '7082 Muller Meadow', '2023-11-12T06:37:49.735Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001072', 'U0000035', 'X0000685', 13, '2024-02-21T05:21:44.572Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001072', 'OR001072', 67.12, '2024-02-21T05:21:44.572Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001072', 'OR001072', '80090 Schmidt Plains', '2024-02-26T05:21:44.572Z','2024-02-29T05:21:44.572Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001073', 'U0000072', 'X0000537', 47, '2023-10-08T11:28:20.169Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001074', 'U0000055', 'X0000585', 42, '2023-12-15T01:18:53.255Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001074', 'OR001074', 130.81, '2023-12-15T01:18:53.255Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001075', 'U0000096', 'X0000433', 10, '2023-10-31T13:49:55.382Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001075', 'OR001075', 32.1, '2023-10-31T13:49:55.382Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001075', 'OR001075', '28976 Laurel Rue', '2023-11-01T13:49:55.382Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001076', 'U0000051', 'X0000284', 29, '2023-10-18T20:23:33.624Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001076', 'OR001076', 48.27, '2023-10-18T20:23:33.624Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001076', 'OR001076', '5981 Atlantic Avenue', '2023-10-22T20:23:33.624Z','2023-10-24T20:23:33.624Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001077', 'U0000056', 'X0000925', 12, '2023-10-08T05:35:53.299Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001078', 'U0000050', 'X0000064', 34, '2024-02-27T16:04:32.769Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001078', 'OR001078', 142.52, '2024-02-27T16:04:32.769Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001079', 'U0000061', 'X0000016', 2, '2023-11-26T04:14:55.342Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001079', 'OR001079', 66.51, '2023-11-26T04:14:55.342Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001079', 'OR001079', '80281 Cathrine Field', '2023-11-29T04:14:55.342Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001080', 'U0000082', 'X0000323', 41, '2024-01-14T07:35:51.629Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001080', 'OR001080', 130.73, '2024-01-14T07:35:51.629Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001080', 'OR001080', '6029 Mill Street', '2024-01-16T07:35:51.629Z','2024-01-17T07:35:51.629Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001081', 'U0000014', 'X0000831', 4, '2024-01-25T03:48:39.552Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001082', 'U0000016', 'X0000248', 9, '2024-02-10T13:14:31.732Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001082', 'OR001082', 523.1, '2024-02-10T13:14:31.732Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001083', 'U0000004', 'X0000881', 52, '2024-02-06T23:24:24.440Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001083', 'OR001083', 111.41, '2024-02-06T23:24:24.440Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001083', 'OR001083', '6318 Kiehn Glens', '2024-02-07T23:24:24.440Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001084', 'U0000011', 'X0000484', 36, '2023-11-08T00:32:52.117Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001084', 'OR001084', 382.12, '2023-11-08T00:32:52.117Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001084', 'OR001084', '41055 Quitzon Estate', '2023-11-10T00:32:52.117Z','2023-11-11T00:32:52.117Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001085', 'U0000045', 'X0000053', 73, '2024-01-05T04:54:51.550Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001086', 'U0000063', 'X0000382', 11, '2023-11-11T07:39:54.383Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001086', 'OR001086', 87.36, '2023-11-11T07:39:54.383Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001087', 'U0000026', 'X0000785', 51, '2024-03-01T01:15:34.965Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001087', 'OR001087', 27.63, '2024-03-01T01:15:34.965Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001087', 'OR001087', '323 Emmerich Course', '2024-03-04T01:15:34.965Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001088', 'U0000087', 'X0000227', 3, '2023-12-01T01:36:31.888Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001088', 'OR001088', 500.29, '2023-12-01T01:36:31.888Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001088', 'OR001088', '773 Cartwright Ridge', '2023-12-05T01:36:31.888Z','2023-12-06T01:36:31.888Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001089', 'U0000035', 'X0000144', 15, '2023-11-27T01:50:05.011Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001090', 'U0000053', 'X0000467', 90, '2023-10-15T03:26:11.512Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001090', 'OR001090', 94.16, '2023-10-15T03:26:11.512Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001091', 'U0000073', 'X0000842', 73, '2023-10-30T05:39:29.412Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001091', 'OR001091', 21.45, '2023-10-30T05:39:29.412Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001091', 'OR001091', '2363 Ruecker Valley', '2023-11-03T05:39:29.412Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001092', 'U0000021', 'X0000143', 30, '2023-11-05T09:45:31.058Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001092', 'OR001092', 1049.84, '2023-11-05T09:45:31.058Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001092', 'OR001092', '5955 S Market Street', '2023-11-06T09:45:31.058Z','2023-11-11T09:45:31.058Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001093', 'U0000074', 'X0000186', 68, '2024-02-12T21:08:35.903Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001094', 'U0000075', 'X0000837', 85, '2024-02-17T04:10:10.893Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001094', 'OR001094', 36.77, '2024-02-17T04:10:10.893Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001095', 'U0000043', 'X0000505', 7, '2023-12-07T20:04:15.853Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001095', 'OR001095', 148.23, '2023-12-07T20:04:15.853Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001095', 'OR001095', '2436 Gloucester Road', '2023-12-12T20:04:15.853Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001096', 'U0000065', 'X0000284', 56, '2024-03-08T05:25:35.469Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001096', 'OR001096', 48.27, '2024-03-08T05:25:35.469Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001096', 'OR001096', '3001 Heller Circle', '2024-03-12T05:25:35.469Z','2024-03-16T05:25:35.469Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001097', 'U0000065', 'X0000891', 6, '2023-10-21T04:06:15.729Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001098', 'U0000066', 'X0000908', 6, '2024-01-10T11:46:37.709Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001098', 'OR001098', 53.86, '2024-01-10T11:46:37.709Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001099', 'U0000022', 'X0000094', 1, '2024-02-01T13:48:58.352Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001099', 'OR001099', 1401.99, '2024-02-01T13:48:58.352Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001099', 'OR001099', '761 Rey Shoals', '2024-02-02T13:48:58.352Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001100', 'U0000077', 'X0000110', 10, '2024-03-07T05:09:28.532Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001100', 'OR001100', 18.38, '2024-03-07T05:09:28.532Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001100', 'OR001100', '9507 Gottlieb Gateway', '2024-03-09T05:09:28.532Z','2024-03-14T05:09:28.532Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001101', 'U0000081', 'X0000213', 3, '2024-03-01T11:44:09.809Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001102', 'U0000025', 'X0000203', 46, '2023-12-06T15:41:29.763Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001102', 'OR001102', 246.28, '2023-12-06T15:41:29.763Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001103', 'U0000009', 'X0000326', 54, '2024-01-03T01:41:33.076Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001103', 'OR001103', 71.14, '2024-01-03T01:41:33.076Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001103', 'OR001103', '744 Christiansen Locks', '2024-01-04T01:41:33.076Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001104', 'U0000076', 'X0000116', 3, '2024-01-29T17:46:06.570Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001104', 'OR001104', 249.36, '2024-01-29T17:46:06.570Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001104', 'OR001104', '69547 Rosamond Field', '2024-01-31T17:46:06.570Z','2024-02-04T17:46:06.570Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001105', 'U0000085', 'X0000840', 10, '2024-01-22T23:49:24.093Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001106', 'U0000021', 'X0000890', 22, '2023-12-17T22:54:01.499Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001106', 'OR001106', 451.23, '2023-12-17T22:54:01.499Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001107', 'U0000053', 'X0000681', 12, '2023-11-27T20:24:03.218Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001107', 'OR001107', 49.84, '2023-11-27T20:24:03.218Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001107', 'OR001107', '9299 Railway Street', '2023-11-30T20:24:03.218Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001108', 'U0000026', 'X0000820', 21, '2024-01-24T10:50:41.574Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001108', 'OR001108', 56.62, '2024-01-24T10:50:41.574Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001108', 'OR001108', '323 Emmerich Course', '2024-01-25T10:50:41.574Z','2024-01-27T10:50:41.574Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001109', 'U0000042', 'X0000374', 8, '2023-12-08T20:50:16.577Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001110', 'U0000023', 'X0000079', 2, '2024-01-27T16:20:28.167Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001110', 'OR001110', 47.1, '2024-01-27T16:20:28.167Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001111', 'U0000030', 'X0000424', 12, '2024-01-06T22:41:33.502Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001111', 'OR001111', 235.2, '2024-01-06T22:41:33.502Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001111', 'OR001111', '9883 Irving Loop', '2024-01-09T22:41:33.502Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001112', 'U0000063', 'X0000817', 6, '2024-03-30T09:18:08.936Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001112', 'OR001112', 150.06, '2024-03-30T09:18:08.936Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001112', 'OR001112', '876 Market Street', '2024-04-01T09:18:08.936Z','2024-04-04T09:18:08.936Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001113', 'U0000051', 'X0000426', 7, '2023-10-05T01:21:35.260Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001114', 'U0000092', 'X0000769', 8, '2024-03-31T19:11:34.040Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001114', 'OR001114', 46.76, '2024-03-31T19:11:34.040Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001115', 'U0000036', 'X0000240', 5, '2024-01-07T15:28:24.279Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001115', 'OR001115', 24.12, '2024-01-07T15:28:24.279Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001115', 'OR001115', '47427 Lime Grove', '2024-01-10T15:28:24.279Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001116', 'U0000071', 'X0000209', 38, '2024-02-17T14:38:35.297Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001116', 'OR001116', 63.51, '2024-02-17T14:38:35.297Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001116', 'OR001116', '7624 Smith Lights', '2024-02-19T14:38:35.297Z','2024-02-20T14:38:35.297Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001117', 'U0000042', 'X0000558', 22, '2023-12-02T16:04:00.570Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001118', 'U0000001', 'X0000403', 1, '2023-12-17T14:10:39.992Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001118', 'OR001118', 69.28, '2023-12-17T14:10:39.992Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001119', 'U0000099', 'X0000215', 30, '2024-03-20T12:59:26.064Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001119', 'OR001119', 64.05, '2024-03-20T12:59:26.064Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001119', 'OR001119', '323 Bernardo Oval', '2024-03-21T12:59:26.064Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001120', 'U0000001', 'X0000810', 65, '2024-01-06T22:56:25.441Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001120', 'OR001120', 31.83, '2024-01-06T22:56:25.441Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001120', 'OR001120', '250 N Cedar Street', '2024-01-08T22:56:25.441Z','2024-01-10T22:56:25.441Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001121', 'U0000008', 'X0000884', 3, '2024-03-21T06:03:04.301Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001122', 'U0000027', 'X0000866', 30, '2023-11-19T11:40:41.091Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001122', 'OR001122', 195.44, '2023-11-19T11:40:41.091Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001123', 'U0000017', 'X0000065', 63, '2023-10-16T10:33:22.845Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001123', 'OR001123', 237.39, '2023-10-16T10:33:22.845Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001123', 'OR001123', '658 Lavada Alley', '2023-10-18T10:33:22.845Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001124', 'U0000037', 'X0000345', 52, '2023-11-15T16:38:20.485Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001124', 'OR001124', 131.58, '2023-11-15T16:38:20.485Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001124', 'OR001124', '12115 Tennyson Road', '2023-11-19T16:38:20.485Z','2023-11-24T16:38:20.485Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001125', 'U0000093', 'X0000598', 72, '2024-03-13T10:46:53.787Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001126', 'U0000031', 'X0000341', 8, '2023-12-04T14:53:42.573Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001126', 'OR001126', 70.56, '2023-12-04T14:53:42.573Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001127', 'U0000023', 'X0000047', 75, '2024-02-13T06:06:59.742Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001127', 'OR001127', 25.79, '2024-02-13T06:06:59.742Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001127', 'OR001127', '3935 Magnolia Trail', '2024-02-17T06:06:59.742Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001128', 'U0000029', 'X0000569', 4, '2023-12-06T15:42:41.726Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001128', 'OR001128', 51.64, '2023-12-06T15:42:41.726Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001128', 'OR001128', '842 Nitzsche Knoll', '2023-12-10T15:42:41.726Z','2023-12-13T15:42:41.726Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001129', 'U0000041', 'X0000704', 1, '2024-03-15T00:52:29.676Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001130', 'U0000001', 'X0000154', 57, '2024-03-26T11:39:03.451Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001130', 'OR001130', 141.59, '2024-03-26T11:39:03.451Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001131', 'U0000035', 'X0000097', 26, '2023-11-11T02:44:33.004Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001131', 'OR001131', 981.68, '2023-11-11T02:44:33.004Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001131', 'OR001131', '80090 Schmidt Plains', '2023-11-14T02:44:33.004Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001132', 'U0000061', 'X0000549', 62, '2024-03-01T16:08:39.564Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001132', 'OR001132', 1169.24, '2024-03-01T16:08:39.564Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001132', 'OR001132', '80281 Cathrine Field', '2024-03-03T16:08:39.564Z','2024-03-08T16:08:39.564Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001133', 'U0000045', 'X0000353', 21, '2023-10-17T04:35:21.171Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001134', 'U0000014', 'X0000109', 40, '2023-12-09T18:09:15.026Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001134', 'OR001134', 250.2, '2023-12-09T18:09:15.026Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001135', 'U0000044', 'X0000498', 26, '2023-11-04T19:34:06.132Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001135', 'OR001135', 151.47, '2023-11-04T19:34:06.132Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001135', 'OR001135', '12640 Olaf Hill', '2023-11-05T19:34:06.132Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001136', 'U0000009', 'X0000417', 61, '2023-12-15T14:35:54.157Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001136', 'OR001136', 67.52, '2023-12-15T14:35:54.157Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001136', 'OR001136', '744 Christiansen Locks', '2023-12-17T14:35:54.157Z','2023-12-21T14:35:54.157Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001137', 'U0000023', 'X0000840', 12, '2024-01-28T10:16:16.004Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001138', 'U0000031', 'X0000031', 6, '2024-03-18T13:49:38.789Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001138', 'OR001138', 347.07, '2024-03-18T13:49:38.789Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001139', 'U0000054', 'X0000883', 75, '2023-10-02T14:23:50.429Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001139', 'OR001139', 84.42, '2023-10-02T14:23:50.429Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001139', 'OR001139', '7936 Cliff Road', '2023-10-07T14:23:50.429Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001140', 'U0000008', 'X0000561', 9, '2024-03-27T19:06:18.035Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001140', 'OR001140', 159.94, '2024-03-27T19:06:18.035Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001140', 'OR001140', '6391 Grayson Islands', '2024-04-01T19:06:18.035Z','2024-04-05T19:06:18.035Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001141', 'U0000008', 'X0000478', 30, '2023-12-09T08:25:48.144Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001142', 'U0000019', 'X0000857', 28, '2024-02-24T20:10:42.206Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001142', 'OR001142', 1007.85, '2024-02-24T20:10:42.206Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001143', 'U0000048', 'X0000385', 36, '2023-11-04T01:19:51.279Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001143', 'OR001143', 40.16, '2023-11-04T01:19:51.279Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001143', 'OR001143', '9885 Priory Road', '2023-11-09T01:19:51.279Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001144', 'U0000029', 'X0000539', 4, '2023-11-21T20:27:45.859Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001144', 'OR001144', 49.03, '2023-11-21T20:27:45.859Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001144', 'OR001144', '842 Nitzsche Knoll', '2023-11-26T20:27:45.859Z','2023-12-01T20:27:45.859Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001145', 'U0000020', 'X0000546', 1, '2024-01-09T21:59:30.498Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001146', 'U0000051', 'X0000641', 20, '2024-03-29T14:34:48.951Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001146', 'OR001146', 127.27, '2024-03-29T14:34:48.951Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001147', 'U0000100', 'X0000404', 42, '2023-10-27T19:56:49.218Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001147', 'OR001147', 65.1, '2023-10-27T19:56:49.218Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001147', 'OR001147', '67999 Gavin Unions', '2023-10-31T19:56:49.218Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001148', 'U0000036', 'X0000006', 38, '2024-01-20T07:11:25.136Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001148', 'OR001148', 47.09, '2024-01-20T07:11:25.136Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001148', 'OR001148', '47427 Lime Grove', '2024-01-21T07:11:25.136Z','2024-01-23T07:11:25.136Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001149', 'U0000007', 'X0000521', 73, '2023-11-16T02:06:10.181Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001150', 'U0000038', 'X0000457', 23, '2023-12-28T08:15:21.508Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001150', 'OR001150', 258.75, '2023-12-28T08:15:21.508Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001151', 'U0000063', 'X0000251', 3, '2024-02-24T02:14:07.127Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001151', 'OR001151', 86.04, '2024-02-24T02:14:07.127Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001151', 'OR001151', '876 Market Street', '2024-02-25T02:14:07.127Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001152', 'U0000034', 'X0000600', 32, '2023-10-24T12:29:10.761Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001152', 'OR001152', 1545.46, '2023-10-24T12:29:10.761Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001152', 'OR001152', '33811 E Main Street', '2023-10-27T12:29:10.761Z','2023-10-29T12:29:10.761Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001153', 'U0000089', 'X0000089', 16, '2023-12-12T19:12:32.998Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001154', 'U0000091', 'X0000740', 34, '2023-11-17T22:53:45.895Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001154', 'OR001154', 1518.07, '2023-11-17T22:53:45.895Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001155', 'U0000012', 'X0000064', 38, '2024-03-27T04:01:50.270Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001155', 'OR001155', 142.52, '2024-03-27T04:01:50.270Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001155', 'OR001155', '84299 Parkside', '2024-03-30T04:01:50.270Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001156', 'U0000059', 'X0000312', 2, '2023-11-28T23:40:49.376Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001156', 'OR001156', 177.57, '2023-11-28T23:40:49.376Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001156', 'OR001156', '22218 W 8th Street', '2023-11-29T23:40:49.376Z','2023-11-30T23:40:49.376Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001157', 'U0000081', 'X0000035', 30, '2023-10-21T18:57:56.054Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001158', 'U0000033', 'X0000455', 44, '2024-03-20T20:29:10.230Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001158', 'OR001158', 78.96, '2024-03-20T20:29:10.230Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001159', 'U0000008', 'X0000517', 42, '2024-03-18T20:13:52.173Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001159', 'OR001159', 63.47, '2024-03-18T20:13:52.173Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001159', 'OR001159', '6391 Grayson Islands', '2024-03-22T20:13:52.173Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001160', 'U0000001', 'X0000406', 53, '2023-11-19T11:12:44.712Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001160', 'OR001160', 216.72, '2023-11-19T11:12:44.712Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001160', 'OR001160', '250 N Cedar Street', '2023-11-24T11:12:44.712Z','2023-11-25T11:12:44.712Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001161', 'U0000038', 'X0000447', 14, '2023-12-06T04:17:21.116Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001162', 'U0000096', 'X0000318', 2, '2023-12-23T00:18:11.326Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001162', 'OR001162', 166.57, '2023-12-23T00:18:11.326Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001163', 'U0000012', 'X0000824', 10, '2023-11-17T01:09:15.839Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001163', 'OR001163', 25.23, '2023-11-17T01:09:15.839Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001163', 'OR001163', '84299 Parkside', '2023-11-21T01:09:15.839Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001164', 'U0000034', 'X0000209', 38, '2024-01-12T14:07:52.451Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001164', 'OR001164', 63.51, '2024-01-12T14:07:52.451Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001164', 'OR001164', '33811 E Main Street', '2024-01-14T14:07:52.451Z','2024-01-16T14:07:52.451Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001165', 'U0000099', 'X0000676', 9, '2024-02-08T02:09:38.792Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001166', 'U0000100', 'X0000331', 69, '2024-01-08T13:25:40.373Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001166', 'OR001166', 131.09, '2024-01-08T13:25:40.373Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001167', 'U0000005', 'X0000690', 37, '2023-12-06T21:38:51.007Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001167', 'OR001167', 30.06, '2023-12-06T21:38:51.007Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001167', 'OR001167', '249 Dickinson Motorway', '2023-12-11T21:38:51.007Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001168', 'U0000064', 'X0000212', 46, '2024-01-14T01:31:08.390Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001168', 'OR001168', 1023.35, '2024-01-14T01:31:08.390Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001168', 'OR001168', '1692 Smith Street', '2024-01-18T01:31:08.390Z','2024-01-21T01:31:08.390Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001169', 'U0000055', 'X0000185', 12, '2023-11-21T01:40:06.097Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001170', 'U0000023', 'X0000562', 33, '2024-03-18T17:52:17.838Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001170', 'OR001170', 28.84, '2024-03-18T17:52:17.838Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001171', 'U0000034', 'X0000952', 20, '2023-12-24T03:30:45.291Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001171', 'OR001171', 117.61, '2023-12-24T03:30:45.291Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001171', 'OR001171', '33811 E Main Street', '2023-12-26T03:30:45.291Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001172', 'U0000043', 'X0000721', 27, '2023-10-19T18:13:36.576Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001172', 'OR001172', 174.78, '2023-10-19T18:13:36.576Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001172', 'OR001172', '2436 Gloucester Road', '2023-10-24T18:13:36.576Z','2023-10-28T18:13:36.576Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001173', 'U0000052', 'X0000472', 55, '2023-11-21T09:41:55.129Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001174', 'U0000068', 'X0000752', 3, '2024-02-29T15:00:04.849Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001174', 'OR001174', 254.55, '2024-02-29T15:00:04.849Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001175', 'U0000075', 'X0000331', 18, '2023-12-27T14:39:54.990Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001175', 'OR001175', 131.09, '2023-12-27T14:39:54.990Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001175', 'OR001175', '457 Broad Lane', '2023-12-28T14:39:54.990Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001176', 'U0000092', 'X0000326', 19, '2023-12-02T21:27:14.747Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001176', 'OR001176', 71.14, '2023-12-02T21:27:14.747Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001176', 'OR001176', '124 Delaney Point', '2023-12-07T21:27:14.747Z','2023-12-08T21:27:14.747Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001177', 'U0000076', 'X0000927', 22, '2024-02-10T05:44:02.120Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001178', 'U0000068', 'X0000859', 38, '2023-10-25T00:45:49.696Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001178', 'OR001178', 115.75, '2023-10-25T00:45:49.696Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001179', 'U0000083', 'X0000986', 2, '2024-02-11T02:51:13.404Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001179', 'OR001179', 31.58, '2024-02-11T02:51:13.404Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001179', 'OR001179', '5520 Beach Road', '2024-02-15T02:51:13.404Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001180', 'U0000002', 'X0000859', 62, '2023-12-08T04:33:39.062Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001180', 'OR001180', 115.75, '2023-12-08T04:33:39.062Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001180', 'OR001180', '806 Ferry Road', '2023-12-13T04:33:39.062Z','2023-12-18T04:33:39.062Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001181', 'U0000059', 'X0000693', 64, '2023-10-08T18:37:57.539Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001182', 'U0000052', 'X0000430', 26, '2023-11-26T05:46:41.610Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001182', 'OR001182', 129.19, '2023-11-26T05:46:41.610Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001183', 'U0000066', 'X0000411', 1, '2023-11-08T01:02:37.678Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001183', 'OR001183', 37.63, '2023-11-08T01:02:37.678Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001183', 'OR001183', '514 Jefferson Avenue', '2023-11-13T01:02:37.678Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001184', 'U0000030', 'X0000087', 5, '2023-10-04T04:31:19.563Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001184', 'OR001184', 275.06, '2023-10-04T04:31:19.563Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001184', 'OR001184', '9883 Irving Loop', '2023-10-06T04:31:19.563Z','2023-10-07T04:31:19.563Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001185', 'U0000013', 'X0000815', 13, '2024-02-13T15:16:28.450Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001186', 'U0000046', 'X0000900', 46, '2023-12-12T16:06:07.658Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001186', 'OR001186', 50.46, '2023-12-12T16:06:07.658Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001187', 'U0000038', 'X0000859', 7, '2023-12-30T07:24:54.934Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001187', 'OR001187', 115.75, '2023-12-30T07:24:54.934Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001187', 'OR001187', '44261 Maye Wells', '2024-01-01T07:24:54.934Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001188', 'U0000009', 'X0000503', 23, '2024-01-26T08:43:02.831Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001188', 'OR001188', 168.91, '2024-01-26T08:43:02.831Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001188', 'OR001188', '744 Christiansen Locks', '2024-01-27T08:43:02.831Z','2024-01-28T08:43:02.831Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001189', 'U0000066', 'X0000418', 33, '2023-12-17T15:56:24.690Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001190', 'U0000075', 'X0000046', 40, '2024-02-16T00:40:37.851Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001190', 'OR001190', 142.78, '2024-02-16T00:40:37.851Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001191', 'U0000091', 'X0000045', 54, '2023-11-25T23:32:39.611Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001191', 'OR001191', 182.35, '2023-11-25T23:32:39.611Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001191', 'OR001191', '56370 Suzanne Loop', '2023-11-28T23:32:39.611Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001192', 'U0000028', 'X0000947', 5, '2023-12-16T14:08:51.727Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001192', 'OR001192', 49.7, '2023-12-16T14:08:51.727Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001192', 'OR001192', '889 St John''s Road', '2023-12-19T14:08:51.727Z','2023-12-24T14:08:51.727Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001193', 'U0000021', 'X0000880', 22, '2024-03-26T10:31:19.733Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001194', 'U0000100', 'X0000632', 44, '2024-02-14T23:30:29.558Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001194', 'OR001194', 132.34, '2024-02-14T23:30:29.558Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001195', 'U0000050', 'X0001000', 14, '2023-12-12T23:15:32.240Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001195', 'OR001195', 111.73, '2023-12-12T23:15:32.240Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001195', 'OR001195', '385 Mill Street', '2023-12-17T23:15:32.240Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001196', 'U0000022', 'X0000519', 10, '2023-11-21T01:30:15.928Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001196', 'OR001196', 828.35, '2023-11-21T01:30:15.928Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001196', 'OR001196', '761 Rey Shoals', '2023-11-26T01:30:15.928Z','2023-11-30T01:30:15.928Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001197', 'U0000054', 'X0000410', 29, '2024-02-05T16:54:26.804Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001198', 'U0000079', 'X0000917', 11, '2023-10-04T04:19:34.110Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001198', 'OR001198', 169.52, '2023-10-04T04:19:34.110Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001199', 'U0000096', 'X0000225', 8, '2024-03-12T10:55:27.877Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001199', 'OR001199', 133.35, '2024-03-12T10:55:27.877Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001199', 'OR001199', '28976 Laurel Rue', '2024-03-14T10:55:27.877Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001200', 'U0000072', 'X0000167', 18, '2024-03-17T19:34:42.205Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001200', 'OR001200', 1395.43, '2024-03-17T19:34:42.205Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001200', 'OR001200', '469 Lacy Rue', '2024-03-20T19:34:42.205Z','2024-03-22T19:34:42.205Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001201', 'U0000032', 'X0000309', 19, '2023-12-03T13:06:12.801Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001202', 'U0000022', 'X0000060', 32, '2024-03-25T23:36:33.995Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001202', 'OR001202', 62.74, '2024-03-25T23:36:33.995Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001203', 'U0000011', 'X0000387', 36, '2023-12-09T09:12:41.334Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001203', 'OR001203', 1306.14, '2023-12-09T09:12:41.334Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001203', 'OR001203', '41055 Quitzon Estate', '2023-12-12T09:12:41.334Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001204', 'U0000038', 'X0000885', 49, '2024-02-23T22:30:34.181Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001204', 'OR001204', 748.85, '2024-02-23T22:30:34.181Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001204', 'OR001204', '44261 Maye Wells', '2024-02-24T22:30:34.181Z','2024-02-25T22:30:34.181Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001205', 'U0000022', 'X0000074', 76, '2024-03-21T11:29:23.704Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001206', 'U0000039', 'X0000404', 74, '2023-12-31T10:32:35.747Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001206', 'OR001206', 65.1, '2023-12-31T10:32:35.747Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001207', 'U0000058', 'X0000770', 22, '2024-03-31T13:23:39.383Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001207', 'OR001207', 137.56, '2024-03-31T13:23:39.383Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001207', 'OR001207', '62184 W 12th Street', '2024-04-01T13:23:39.383Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001208', 'U0000003', 'X0000198', 17, '2024-01-08T15:37:48.136Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001208', 'OR001208', 47.82, '2024-01-08T15:37:48.136Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001208', 'OR001208', '62430 Casper Neck', '2024-01-11T15:37:48.136Z','2024-01-12T15:37:48.136Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001209', 'U0000045', 'X0000729', 74, '2023-11-13T23:27:17.247Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001210', 'U0000048', 'X0000743', 7, '2023-11-12T11:52:10.458Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001210', 'OR001210', 838.95, '2023-11-12T11:52:10.458Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001211', 'U0000055', 'X0000169', 17, '2023-10-13T12:52:45.240Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001211', 'OR001211', 80.25, '2023-10-13T12:52:45.240Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001211', 'OR001211', '4086 Braun Terrace', '2023-10-18T12:52:45.240Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001212', 'U0000046', 'X0000414', 7, '2024-01-10T00:41:24.889Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001212', 'OR001212', 38.19, '2024-01-10T00:41:24.889Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001212', 'OR001212', '5563 Juniper Close', '2024-01-12T00:41:24.889Z','2024-01-16T00:41:24.889Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001213', 'U0000076', 'X0000736', 21, '2024-03-08T22:28:09.960Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001214', 'U0000033', 'X0000232', 59, '2023-11-05T00:57:36.058Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001214', 'OR001214', 278.99, '2023-11-05T00:57:36.058Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001215', 'U0000052', 'X0000514', 68, '2024-01-21T00:31:33.339Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001215', 'OR001215', 206.49, '2024-01-21T00:31:33.339Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001215', 'OR001215', '156 Park Crescent', '2024-01-24T00:31:33.339Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001216', 'U0000054', 'X0000375', 55, '2024-01-28T13:28:48.613Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001216', 'OR001216', 300.44, '2024-01-28T13:28:48.613Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001216', 'OR001216', '7936 Cliff Road', '2024-01-29T13:28:48.613Z','2024-02-01T13:28:48.613Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001217', 'U0000029', 'X0000239', 3, '2023-10-24T00:50:49.462Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001218', 'U0000010', 'X0000359', 39, '2024-02-21T12:08:37.455Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001218', 'OR001218', 45, '2024-02-21T12:08:37.455Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001219', 'U0000053', 'X0000996', 14, '2024-01-22T22:15:18.278Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001219', 'OR001219', 455.87, '2024-01-22T22:15:18.278Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001219', 'OR001219', '9299 Railway Street', '2024-01-26T22:15:18.278Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001220', 'U0000056', 'X0000503', 11, '2024-03-14T09:12:51.666Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001220', 'OR001220', 168.91, '2024-03-14T09:12:51.666Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001220', 'OR001220', '255 Chester Lakes', '2024-03-16T09:12:51.666Z','2024-03-17T09:12:51.666Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001221', 'U0000025', 'X0000513', 62, '2023-12-02T10:14:36.578Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001222', 'U0000043', 'X0000038', 26, '2023-12-30T17:06:48.892Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001222', 'OR001222', 54.77, '2023-12-30T17:06:48.892Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001223', 'U0000005', 'X0000007', 4, '2023-11-09T21:08:14.588Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001223', 'OR001223', 163.65, '2023-11-09T21:08:14.588Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001223', 'OR001223', '249 Dickinson Motorway', '2023-11-13T21:08:14.588Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001224', 'U0000075', 'X0000044', 29, '2024-02-10T21:38:31.364Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001224', 'OR001224', 112.64, '2024-02-10T21:38:31.364Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001224', 'OR001224', '457 Broad Lane', '2024-02-14T21:38:31.364Z','2024-02-18T21:38:31.364Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001225', 'U0000097', 'X0000586', 43, '2024-02-12T00:59:12.376Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001226', 'U0000045', 'X0000800', 19, '2023-11-08T02:28:23.160Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001226', 'OR001226', 992.22, '2023-11-08T02:28:23.160Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001227', 'U0000075', 'X0000885', 1, '2024-02-22T22:20:39.567Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001227', 'OR001227', 748.85, '2024-02-22T22:20:39.567Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001227', 'OR001227', '457 Broad Lane', '2024-02-25T22:20:39.567Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001228', 'U0000068', 'X0000805', 16, '2023-10-05T17:28:33.735Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001228', 'OR001228', 45.42, '2023-10-05T17:28:33.735Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001228', 'OR001228', '597 Destiny Gateway', '2023-10-10T17:28:33.735Z','2023-10-15T17:28:33.735Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001229', 'U0000009', 'X0000501', 2, '2023-12-17T23:06:50.625Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001230', 'U0000060', 'X0000986', 16, '2023-12-19T02:17:07.725Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001230', 'OR001230', 31.58, '2023-12-19T02:17:07.725Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001231', 'U0000053', 'X0000404', 2, '2023-11-17T08:14:34.957Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001231', 'OR001231', 65.1, '2023-11-17T08:14:34.957Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001231', 'OR001231', '9299 Railway Street', '2023-11-20T08:14:34.957Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001232', 'U0000044', 'X0000778', 7, '2023-11-03T02:49:10.163Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001232', 'OR001232', 110.9, '2023-11-03T02:49:10.163Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001232', 'OR001232', '12640 Olaf Hill', '2023-11-07T02:49:10.163Z','2023-11-12T02:49:10.163Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001233', 'U0000099', 'X0000496', 7, '2024-02-29T12:20:04.190Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001234', 'U0000010', 'X0000654', 37, '2023-12-19T13:20:55.746Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001234', 'OR001234', 145.66, '2023-12-19T13:20:55.746Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001235', 'U0000069', 'X0000289', 5, '2024-01-23T10:56:21.633Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001235', 'OR001235', 197.66, '2024-01-23T10:56:21.633Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001235', 'OR001235', '33085 Beatty Track', '2024-01-27T10:56:21.633Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001236', 'U0000049', 'X0000070', 5, '2024-01-29T08:30:02.641Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001236', 'OR001236', 35.22, '2024-01-29T08:30:02.641Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001236', 'OR001236', '4264 Park Lane', '2024-01-30T08:30:02.641Z','2024-02-03T08:30:02.641Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001237', 'U0000082', 'X0000985', 54, '2024-01-06T16:49:09.883Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001238', 'U0000004', 'X0000298', 69, '2024-03-10T07:55:20.897Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001238', 'OR001238', 173.82, '2024-03-10T07:55:20.897Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001239', 'U0000005', 'X0000053', 32, '2023-10-13T02:49:58.764Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001239', 'OR001239', 65.62, '2023-10-13T02:49:58.764Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001239', 'OR001239', '249 Dickinson Motorway', '2023-10-14T02:49:58.764Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001240', 'U0000040', 'X0000854', 24, '2023-12-24T01:34:22.217Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001240', 'OR001240', 144.85, '2023-12-24T01:34:22.217Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001240', 'OR001240', '54268 Schimmel Burg', '2023-12-28T01:34:22.217Z','2024-01-01T01:34:22.217Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001241', 'U0000035', 'X0000896', 12, '2023-12-28T19:18:42.924Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001242', 'U0000032', 'X0000260', 4, '2024-02-03T05:48:29.636Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001242', 'OR001242', 115.77, '2024-02-03T05:48:29.636Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001243', 'U0000022', 'X0000460', 47, '2023-11-19T14:58:56.340Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001243', 'OR001243', 156.47, '2023-11-19T14:58:56.340Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001243', 'OR001243', '761 Rey Shoals', '2023-11-23T14:58:56.340Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001244', 'U0000013', 'X0000432', 77, '2023-12-01T10:09:06.704Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001244', 'OR001244', 138.65, '2023-12-01T10:09:06.704Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001244', 'OR001244', '7082 Muller Meadow', '2023-12-06T10:09:06.704Z','2023-12-10T10:09:06.704Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001245', 'U0000068', 'X0000380', 51, '2023-12-07T06:38:48.525Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001246', 'U0000023', 'X0000531', 7, '2024-01-11T04:00:46.433Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001246', 'OR001246', 137.66, '2024-01-11T04:00:46.433Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001247', 'U0000042', 'X0000818', 3, '2024-03-05T20:54:14.647Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001247', 'OR001247', 60.93, '2024-03-05T20:54:14.647Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001247', 'OR001247', '489 W Walnut Street', '2024-03-07T20:54:14.647Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001248', 'U0000095', 'X0000441', 3, '2024-01-13T01:25:40.121Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001248', 'OR001248', 892.21, '2024-01-13T01:25:40.121Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001248', 'OR001248', '9730 Bayer Neck', '2024-01-14T01:25:40.121Z','2024-01-19T01:25:40.121Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001249', 'U0000055', 'X0000125', 34, '2023-10-05T14:45:54.863Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001250', 'U0000037', 'X0000289', 15, '2023-12-03T09:07:36.227Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001250', 'OR001250', 197.66, '2023-12-03T09:07:36.227Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001251', 'U0000088', 'X0000112', 1, '2024-03-20T11:00:32.398Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001251', 'OR001251', 36.44, '2024-03-20T11:00:32.398Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001251', 'OR001251', '3693 Jason Motorway', '2024-03-21T11:00:32.398Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001252', 'U0000072', 'X0000454', 19, '2023-12-08T01:23:23.057Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001252', 'OR001252', 94.35, '2023-12-08T01:23:23.057Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001252', 'OR001252', '469 Lacy Rue', '2023-12-12T01:23:23.057Z','2023-12-13T01:23:23.057Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001253', 'U0000098', 'X0000761', 35, '2024-02-13T07:29:30.710Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001254', 'U0000086', 'X0000942', 31, '2023-12-15T10:14:41.878Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001254', 'OR001254', 139.83, '2023-12-15T10:14:41.878Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001255', 'U0000074', 'X0000290', 13, '2023-10-24T10:23:39.216Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001255', 'OR001255', 48.28, '2023-10-24T10:23:39.216Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001255', 'OR001255', '456 Selina Gardens', '2023-10-29T10:23:39.216Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001256', 'U0000071', 'X0000111', 39, '2024-03-18T13:54:40.100Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001256', 'OR001256', 25.5, '2024-03-18T13:54:40.100Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001256', 'OR001256', '7624 Smith Lights', '2024-03-21T13:54:40.100Z','2024-03-25T13:54:40.100Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001257', 'U0000095', 'X0000388', 45, '2023-12-20T10:58:33.563Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001258', 'U0000050', 'X0000151', 45, '2023-12-14T09:28:51.351Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001258', 'OR001258', 282.6, '2023-12-14T09:28:51.351Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001259', 'U0000060', 'X0000285', 35, '2024-03-05T08:09:59.019Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001259', 'OR001259', 25.04, '2024-03-05T08:09:59.019Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001259', 'OR001259', '39988 Ryan Lodge', '2024-03-07T08:09:59.019Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001260', 'U0000032', 'X0000432', 36, '2024-02-28T10:34:01.831Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001260', 'OR001260', 138.65, '2024-02-28T10:34:01.831Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001260', 'OR001260', '25440 S Water Street', '2024-03-02T10:34:01.831Z','2024-03-07T10:34:01.831Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001261', 'U0000042', 'X0000984', 47, '2023-10-02T10:09:22.639Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001262', 'U0000036', 'X0000988', 57, '2023-10-26T05:16:19.958Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001262', 'OR001262', 122.23, '2023-10-26T05:16:19.958Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001263', 'U0000095', 'X0000220', 1, '2024-01-09T18:07:29.362Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001263', 'OR001263', 53.25, '2024-01-09T18:07:29.362Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001263', 'OR001263', '9730 Bayer Neck', '2024-01-11T18:07:29.362Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001264', 'U0000044', 'X0000929', 11, '2024-01-12T18:51:41.299Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001264', 'OR001264', 195.1, '2024-01-12T18:51:41.299Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001264', 'OR001264', '12640 Olaf Hill', '2024-01-17T18:51:41.299Z','2024-01-22T18:51:41.299Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001265', 'U0000087', 'X0000561', 14, '2024-02-12T19:27:59.624Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001266', 'U0000056', 'X0000984', 23, '2023-12-25T16:16:19.476Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001266', 'OR001266', 186.09, '2023-12-25T16:16:19.476Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001267', 'U0000042', 'X0000767', 48, '2024-01-13T23:12:58.300Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001267', 'OR001267', 72.78, '2024-01-13T23:12:58.300Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001267', 'OR001267', '489 W Walnut Street', '2024-01-15T23:12:58.300Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001268', 'U0000008', 'X0000979', 6, '2024-01-15T11:46:20.032Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001268', 'OR001268', 23.22, '2024-01-15T11:46:20.032Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001268', 'OR001268', '6391 Grayson Islands', '2024-01-19T11:46:20.032Z','2024-01-24T11:46:20.032Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001269', 'U0000070', 'X0000602', 71, '2023-10-14T19:49:11.431Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001270', 'U0000097', 'X0000002', 11, '2023-10-23T23:50:44.901Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001270', 'OR001270', 46.45, '2023-10-23T23:50:44.901Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001271', 'U0000020', 'X0000847', 7, '2024-02-29T12:05:06.251Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001271', 'OR001271', 31.5, '2024-02-29T12:05:06.251Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001271', 'OR001271', '85931 Pagac Brook', '2024-03-04T12:05:06.251Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001272', 'U0000051', 'X0000303', 75, '2024-02-24T04:50:07.389Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001272', 'OR001272', 47.45, '2024-02-24T04:50:07.389Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001272', 'OR001272', '5981 Atlantic Avenue', '2024-02-29T04:50:07.389Z','2024-03-02T04:50:07.389Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001273', 'U0000010', 'X0000819', 2, '2023-11-16T09:39:50.840Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001274', 'U0000003', 'X0000485', 8, '2024-02-25T21:15:01.728Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001274', 'OR001274', 29.74, '2024-02-25T21:15:01.728Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001275', 'U0000058', 'X0000990', 80, '2024-03-27T16:57:27.331Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001275', 'OR001275', 95.94, '2024-03-27T16:57:27.331Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001275', 'OR001275', '62184 W 12th Street', '2024-03-31T16:57:27.331Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001276', 'U0000017', 'X0000533', 53, '2023-11-13T07:41:42.408Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001276', 'OR001276', 102.5, '2023-11-13T07:41:42.408Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001276', 'OR001276', '658 Lavada Alley', '2023-11-17T07:41:42.408Z','2023-11-18T07:41:42.408Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001277', 'U0000072', 'X0000385', 79, '2023-11-17T04:42:36.205Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001278', 'U0000083', 'X0000511', 1, '2024-02-09T00:50:05.852Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001278', 'OR001278', 39.72, '2024-02-09T00:50:05.852Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001279', 'U0000083', 'X0000564', 60, '2024-03-20T23:06:00.142Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001279', 'OR001279', 1322.37, '2024-03-20T23:06:00.142Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001279', 'OR001279', '5520 Beach Road', '2024-03-23T23:06:00.142Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001280', 'U0000030', 'X0000913', 9, '2023-10-07T18:05:13.135Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001280', 'OR001280', 154.37, '2023-10-07T18:05:13.135Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001280', 'OR001280', '9883 Irving Loop', '2023-10-08T18:05:13.135Z','2023-10-11T18:05:13.135Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001281', 'U0000089', 'X0000038', 16, '2023-10-13T09:52:01.273Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001282', 'U0000010', 'X0000498', 26, '2023-10-25T01:26:15.414Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001282', 'OR001282', 151.47, '2023-10-25T01:26:15.414Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001283', 'U0000068', 'X0000518', 5, '2024-02-01T01:12:58.004Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001283', 'OR001283', 165.13, '2024-02-01T01:12:58.004Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001283', 'OR001283', '597 Destiny Gateway', '2024-02-05T01:12:58.004Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001284', 'U0000018', 'X0000003', 16, '2023-12-29T15:34:24.414Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001284', 'OR001284', 36.93, '2023-12-29T15:34:24.414Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001284', 'OR001284', '59575 Mill Street', '2023-12-31T15:34:24.414Z','2024-01-04T15:34:24.414Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001285', 'U0000056', 'X0000545', 28, '2023-10-20T15:33:49.296Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001286', 'U0000043', 'X0000734', 31, '2024-03-03T00:51:24.933Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001286', 'OR001286', 62.4, '2024-03-03T00:51:24.933Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001287', 'U0000073', 'X0000381', 17, '2024-02-21T03:52:49.385Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001287', 'OR001287', 34.53, '2024-02-21T03:52:49.385Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001287', 'OR001287', '2363 Ruecker Valley', '2024-02-25T03:52:49.385Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001288', 'U0000087', 'X0000323', 40, '2024-02-28T11:00:57.225Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001288', 'OR001288', 130.73, '2024-02-28T11:00:57.225Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001288', 'OR001288', '773 Cartwright Ridge', '2024-03-04T11:00:57.225Z','2024-03-06T11:00:57.225Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001289', 'U0000095', 'X0000919', 1, '2024-02-14T05:13:25.694Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001290', 'U0000077', 'X0000660', 80, '2023-11-17T11:29:13.088Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001290', 'OR001290', 18.88, '2023-11-17T11:29:13.088Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001291', 'U0000002', 'X0000034', 84, '2024-02-28T07:39:54.303Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001291', 'OR001291', 852, '2024-02-28T07:39:54.303Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001291', 'OR001291', '806 Ferry Road', '2024-03-03T07:39:54.303Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001292', 'U0000077', 'X0000300', 87, '2023-11-15T16:08:18.160Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001292', 'OR001292', 32.36, '2023-11-15T16:08:18.160Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001292', 'OR001292', '9507 Gottlieb Gateway', '2023-11-19T16:08:18.160Z','2023-11-24T16:08:18.160Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001293', 'U0000038', 'X0000850', 28, '2024-01-09T07:15:43.781Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001294', 'U0000010', 'X0000701', 12, '2024-01-12T22:40:06.758Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001294', 'OR001294', 35.36, '2024-01-12T22:40:06.758Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001295', 'U0000045', 'X0000573', 56, '2024-01-04T12:03:29.761Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001295', 'OR001295', 48.86, '2024-01-04T12:03:29.761Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001295', 'OR001295', '893 Cummerata Trail', '2024-01-06T12:03:29.761Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001296', 'U0000031', 'X0000336', 55, '2023-10-17T11:17:21.022Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001296', 'OR001296', 1003.95, '2023-10-17T11:17:21.022Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001296', 'OR001296', '192 Roberts Branch', '2023-10-22T11:17:21.022Z','2023-10-25T11:17:21.022Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001297', 'U0000035', 'X0000122', 40, '2024-01-06T16:26:44.677Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001298', 'U0000003', 'X0000631', 2, '2023-11-29T08:40:07.592Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001298', 'OR001298', 289.63, '2023-11-29T08:40:07.592Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001299', 'U0000088', 'X0000804', 7, '2023-11-06T12:23:05.770Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001299', 'OR001299', 46.34, '2023-11-06T12:23:05.770Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001299', 'OR001299', '3693 Jason Motorway', '2023-11-07T12:23:05.770Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001300', 'U0000059', 'X0000974', 72, '2023-11-22T09:37:57.832Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001300', 'OR001300', 39.67, '2023-11-22T09:37:57.832Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001300', 'OR001300', '22218 W 8th Street', '2023-11-24T09:37:57.832Z','2023-11-27T09:37:57.832Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001301', 'U0000052', 'X0000542', 34, '2023-11-25T13:09:12.515Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001302', 'U0000047', 'X0000662', 54, '2023-11-04T07:12:57.992Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001302', 'OR001302', 14.31, '2023-11-04T07:12:57.992Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001303', 'U0000028', 'X0000208', 14, '2024-03-06T07:07:04.795Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001303', 'OR001303', 52.35, '2024-03-06T07:07:04.795Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001303', 'OR001303', '889 St John''s Road', '2024-03-10T07:07:04.795Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001304', 'U0000081', 'X0000040', 7, '2023-11-23T07:33:04.987Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001304', 'OR001304', 76.35, '2023-11-23T07:33:04.987Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001304', 'OR001304', '327 Hills Summit', '2023-11-28T07:33:04.987Z','2023-11-30T07:33:04.987Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001305', 'U0000032', 'X0000100', 21, '2024-03-24T18:02:04.702Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001306', 'U0000004', 'X0000780', 13, '2023-11-18T14:08:09.716Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001306', 'OR001306', 97.71, '2023-11-18T14:08:09.716Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001307', 'U0000005', 'X0000975', 6, '2023-11-24T16:59:19.842Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001307', 'OR001307', 141.93, '2023-11-24T16:59:19.842Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001307', 'OR001307', '249 Dickinson Motorway', '2023-11-25T16:59:19.842Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001308', 'U0000031', 'X0000397', 29, '2024-03-29T22:15:11.186Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001308', 'OR001308', 57.93, '2024-03-29T22:15:11.186Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001308', 'OR001308', '192 Roberts Branch', '2024-03-31T22:15:11.186Z','2024-04-04T22:15:11.186Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001309', 'U0000031', 'X0000978', 6, '2024-01-19T17:57:33.930Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001310', 'U0000090', 'X0000112', 9, '2024-03-12T22:30:01.722Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001310', 'OR001310', 36.44, '2024-03-12T22:30:01.722Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001311', 'U0000039', 'X0000220', 13, '2024-02-15T05:15:26.548Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001311', 'OR001311', 53.25, '2024-02-15T05:15:26.548Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001311', 'OR001311', '94686 N Broadway', '2024-02-18T05:15:26.548Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001312', 'U0000044', 'X0000083', 36, '2024-01-26T02:28:26.082Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001312', 'OR001312', 98.79, '2024-01-26T02:28:26.082Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001312', 'OR001312', '12640 Olaf Hill', '2024-01-31T02:28:26.082Z','2024-02-01T02:28:26.082Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001313', 'U0000016', 'X0000010', 34, '2023-10-18T17:35:55.953Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001314', 'U0000040', 'X0000737', 7, '2023-10-28T14:18:59.906Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001314', 'OR001314', 9.95, '2023-10-28T14:18:59.906Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001315', 'U0000075', 'X0000004', 27, '2024-01-27T10:05:58.147Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001315', 'OR001315', 123.06, '2024-01-27T10:05:58.147Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001315', 'OR001315', '457 Broad Lane', '2024-01-31T10:05:58.147Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001316', 'U0000018', 'X0000256', 36, '2024-02-14T03:01:37.859Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001316', 'OR001316', 6.64, '2024-02-14T03:01:37.859Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001316', 'OR001316', '59575 Mill Street', '2024-02-15T03:01:37.859Z','2024-02-19T03:01:37.859Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001317', 'U0000031', 'X0000199', 12, '2023-12-03T11:08:51.603Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001318', 'U0000039', 'X0000064', 3, '2023-12-28T10:38:03.212Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001318', 'OR001318', 142.52, '2023-12-28T10:38:03.212Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001319', 'U0000083', 'X0000540', 41, '2024-03-10T08:15:17.423Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001319', 'OR001319', 72.2, '2024-03-10T08:15:17.423Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001319', 'OR001319', '5520 Beach Road', '2024-03-15T08:15:17.423Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001320', 'U0000003', 'X0000886', 11, '2023-11-23T19:03:01.527Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001320', 'OR001320', 93.05, '2023-11-23T19:03:01.527Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001320', 'OR001320', '62430 Casper Neck', '2023-11-24T19:03:01.527Z','2023-11-25T19:03:01.527Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001321', 'U0000056', 'X0000525', 26, '2023-10-28T17:24:43.367Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001322', 'U0000043', 'X0000526', 25, '2024-01-03T21:02:37.472Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001322', 'OR001322', 21.75, '2024-01-03T21:02:37.472Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001323', 'U0000010', 'X0000904', 18, '2023-11-16T08:41:49.397Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001323', 'OR001323', 38.46, '2023-11-16T08:41:49.397Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001323', 'OR001323', '14941 W Central Avenue', '2023-11-21T08:41:49.397Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001324', 'U0000076', 'X0000293', 8, '2024-03-15T09:25:15.158Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001324', 'OR001324', 75.91, '2024-03-15T09:25:15.158Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001324', 'OR001324', '69547 Rosamond Field', '2024-03-20T09:25:15.158Z','2024-03-24T09:25:15.158Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001325', 'U0000045', 'X0000782', 30, '2024-02-29T19:59:40.894Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001326', 'U0000022', 'X0000325', 7, '2024-03-28T18:32:38.033Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001326', 'OR001326', 101.91, '2024-03-28T18:32:38.033Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001327', 'U0000002', 'X0000739', 52, '2024-03-10T14:17:00.906Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001327', 'OR001327', 9.63, '2024-03-10T14:17:00.906Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001327', 'OR001327', '806 Ferry Road', '2024-03-11T14:17:00.906Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001328', 'U0000039', 'X0000745', 5, '2024-03-16T00:52:35.375Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001328', 'OR001328', 86.16, '2024-03-16T00:52:35.375Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001328', 'OR001328', '94686 N Broadway', '2024-03-21T00:52:35.375Z','2024-03-23T00:52:35.375Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001329', 'U0000049', 'X0000130', 40, '2023-12-05T20:47:59.462Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001330', 'U0000012', 'X0000415', 12, '2023-11-15T23:41:30.204Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001330', 'OR001330', 205.2, '2023-11-15T23:41:30.204Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001331', 'U0000038', 'X0000136', 72, '2024-01-11T01:18:33.095Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001331', 'OR001331', 96.09, '2024-01-11T01:18:33.095Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001331', 'OR001331', '44261 Maye Wells', '2024-01-16T01:18:33.095Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001332', 'U0000041', 'X0000586', 46, '2023-11-21T10:45:37.626Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001332', 'OR001332', 219.39, '2023-11-21T10:45:37.626Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001332', 'OR001332', '916 Bayer Dale', '2023-11-22T10:45:37.626Z','2023-11-25T10:45:37.626Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001333', 'U0000002', 'X0000243', 54, '2024-03-19T18:36:39.706Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001334', 'U0000033', 'X0001000', 21, '2023-10-09T10:47:01.640Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001334', 'OR001334', 111.73, '2023-10-09T10:47:01.640Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001335', 'U0000042', 'X0000631', 14, '2024-03-14T07:32:13.745Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001335', 'OR001335', 289.63, '2024-03-14T07:32:13.745Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001335', 'OR001335', '489 W Walnut Street', '2024-03-16T07:32:13.745Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001336', 'U0000063', 'X0000744', 5, '2024-01-28T10:23:54.044Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001336', 'OR001336', 27.81, '2024-01-28T10:23:54.044Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001336', 'OR001336', '876 Market Street', '2024-02-02T10:23:54.044Z','2024-02-03T10:23:54.044Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001337', 'U0000057', 'X0000011', 17, '2023-11-01T12:01:26.694Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001338', 'U0000005', 'X0000971', 12, '2023-12-16T21:38:10.242Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001338', 'OR001338', 77.32, '2023-12-16T21:38:10.242Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001339', 'U0000071', 'X0000124', 20, '2024-02-20T10:07:20.260Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001339', 'OR001339', 27.83, '2024-02-20T10:07:20.260Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001339', 'OR001339', '7624 Smith Lights', '2024-02-24T10:07:20.260Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001340', 'U0000091', 'X0000669', 4, '2024-03-13T23:03:21.717Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001340', 'OR001340', 263.82, '2024-03-13T23:03:21.717Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001340', 'OR001340', '56370 Suzanne Loop', '2024-03-14T23:03:21.717Z','2024-03-18T23:03:21.717Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001341', 'U0000089', 'X0000938', 8, '2023-11-22T04:39:57.313Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001342', 'U0000043', 'X0000841', 4, '2024-03-15T02:34:27.886Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001342', 'OR001342', 425.78, '2024-03-15T02:34:27.886Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001343', 'U0000058', 'X0000526', 9, '2023-10-22T00:20:57.030Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001343', 'OR001343', 21.75, '2023-10-22T00:20:57.030Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001343', 'OR001343', '62184 W 12th Street', '2023-10-27T00:20:57.030Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001344', 'U0000025', 'X0000761', 43, '2024-03-24T09:18:47.152Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001344', 'OR001344', 53.97, '2024-03-24T09:18:47.152Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001344', 'OR001344', '6274 Jerrod Plain', '2024-03-26T09:18:47.152Z','2024-03-29T09:18:47.152Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001345', 'U0000080', 'X0000601', 54, '2024-03-12T20:56:16.525Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001346', 'U0000012', 'X0000855', 49, '2024-02-23T02:42:13.678Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001346', 'OR001346', 306.58, '2024-02-23T02:42:13.678Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001347', 'U0000038', 'X0000071', 2, '2023-11-16T11:17:50.457Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001347', 'OR001347', 62.23, '2023-11-16T11:17:50.457Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001347', 'OR001347', '44261 Maye Wells', '2023-11-21T11:17:50.457Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001348', 'U0000014', 'X0000776', 12, '2024-03-31T17:44:18.904Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001348', 'OR001348', 11.87, '2024-03-31T17:44:18.904Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001348', 'OR001348', '55447 Warren Close', '2024-04-04T17:44:18.904Z','2024-04-08T17:44:18.904Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001349', 'U0000020', 'X0000565', 1, '2023-12-02T16:57:59.241Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001350', 'U0000090', 'X0000754', 54, '2024-03-11T09:56:17.699Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001350', 'OR001350', 296.14, '2024-03-11T09:56:17.699Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001351', 'U0000033', 'X0000384', 18, '2023-12-12T13:07:53.346Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001351', 'OR001351', 59.8, '2023-12-12T13:07:53.346Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001351', 'OR001351', '1975 Main Street', '2023-12-16T13:07:53.346Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001352', 'U0000020', 'X0000368', 51, '2024-02-10T18:17:32.278Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001352', 'OR001352', 37.12, '2024-02-10T18:17:32.278Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001352', 'OR001352', '85931 Pagac Brook', '2024-02-14T18:17:32.278Z','2024-02-17T18:17:32.278Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001353', 'U0000044', 'X0000469', 34, '2023-12-30T18:51:50.736Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001354', 'U0000004', 'X0000262', 12, '2023-11-07T02:47:25.344Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001354', 'OR001354', 276.11, '2023-11-07T02:47:25.344Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001355', 'U0000016', 'X0000760', 40, '2024-03-09T15:51:48.316Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001355', 'OR001355', 24.59, '2024-03-09T15:51:48.316Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001355', 'OR001355', '714 N Cedar Street', '2024-03-10T15:51:48.316Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001356', 'U0000032', 'X0000446', 6, '2023-12-27T19:34:33.833Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001356', 'OR001356', 53.58, '2023-12-27T19:34:33.833Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001356', 'OR001356', '25440 S Water Street', '2023-12-30T19:34:33.833Z','2024-01-01T19:34:33.833Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001357', 'U0000017', 'X0000637', 13, '2024-03-20T08:31:28.081Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001358', 'U0000014', 'X0000164', 46, '2024-01-20T22:45:49.591Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001358', 'OR001358', 139.4, '2024-01-20T22:45:49.591Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001359', 'U0000032', 'X0000106', 17, '2023-10-30T14:28:17.528Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001359', 'OR001359', 17.31, '2023-10-30T14:28:17.528Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001359', 'OR001359', '25440 S Water Street', '2023-11-02T14:28:17.528Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001360', 'U0000014', 'X0000578', 22, '2024-02-02T18:23:55.504Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001360', 'OR001360', 911.96, '2024-02-02T18:23:55.504Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001360', 'OR001360', '55447 Warren Close', '2024-02-04T18:23:55.504Z','2024-02-05T18:23:55.504Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001361', 'U0000032', 'X0000533', 53, '2024-03-03T04:23:16.003Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001362', 'U0000077', 'X0000204', 25, '2023-10-23T06:23:19.312Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001362', 'OR001362', 28.38, '2023-10-23T06:23:19.312Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001363', 'U0000006', 'X0000798', 32, '2024-02-02T01:26:07.781Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001363', 'OR001363', 258, '2024-02-02T01:26:07.781Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001363', 'OR001363', '1792 Emelie Motorway', '2024-02-07T01:26:07.781Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001364', 'U0000014', 'X0000308', 84, '2023-10-04T09:32:28.888Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001364', 'OR001364', 74.39, '2023-10-04T09:32:28.888Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001364', 'OR001364', '55447 Warren Close', '2023-10-07T09:32:28.888Z','2023-10-10T09:32:28.888Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001365', 'U0000085', 'X0000062', 51, '2023-11-19T19:12:54.208Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001366', 'U0000022', 'X0000157', 12, '2023-11-21T20:04:09.865Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001366', 'OR001366', 113.76, '2023-11-21T20:04:09.865Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001367', 'U0000083', 'X0000946', 10, '2023-12-11T15:09:15.022Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001367', 'OR001367', 71.14, '2023-12-11T15:09:15.022Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001367', 'OR001367', '5520 Beach Road', '2023-12-12T15:09:15.022Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001368', 'U0000090', 'X0000548', 4, '2023-11-18T01:38:27.017Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001368', 'OR001368', 151.73, '2023-11-18T01:38:27.017Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001368', 'OR001368', '94225 Hassan Mills', '2023-11-19T01:38:27.017Z','2023-11-20T01:38:27.017Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001369', 'U0000005', 'X0000059', 64, '2024-02-23T06:24:54.682Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001370', 'U0000096', 'X0000868', 16, '2024-03-21T23:44:21.320Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001370', 'OR001370', 192.72, '2024-03-21T23:44:21.320Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001371', 'U0000039', 'X0000278', 29, '2024-01-12T04:08:52.971Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001371', 'OR001371', 899.55, '2024-01-12T04:08:52.971Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001371', 'OR001371', '94686 N Broadway', '2024-01-17T04:08:52.971Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001372', 'U0000083', 'X0000123', 70, '2023-12-31T07:59:37.466Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001372', 'OR001372', 129.51, '2023-12-31T07:59:37.466Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001372', 'OR001372', '5520 Beach Road', '2024-01-05T07:59:37.466Z','2024-01-09T07:59:37.466Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001373', 'U0000030', 'X0000014', 9, '2024-01-13T03:54:55.941Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001374', 'U0000049', 'X0000611', 32, '2024-02-06T00:57:23.139Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001374', 'OR001374', 32.13, '2024-02-06T00:57:23.139Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001375', 'U0000083', 'X0000642', 9, '2023-11-20T04:13:38.898Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001375', 'OR001375', 38.38, '2023-11-20T04:13:38.898Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001375', 'OR001375', '5520 Beach Road', '2023-11-25T04:13:38.898Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001376', 'U0000081', 'X0000759', 5, '2024-01-05T17:55:30.105Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001376', 'OR001376', 415.33, '2024-01-05T17:55:30.105Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001376', 'OR001376', '327 Hills Summit', '2024-01-08T17:55:30.105Z','2024-01-09T17:55:30.105Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001377', 'U0000059', 'X0000376', 17, '2023-12-16T21:35:46.843Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001378', 'U0000048', 'X0000667', 18, '2024-03-18T12:16:51.988Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001378', 'OR001378', 67.7, '2024-03-18T12:16:51.988Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001379', 'U0000010', 'X0000580', 81, '2024-02-01T12:46:13.448Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001379', 'OR001379', 137.85, '2024-02-01T12:46:13.448Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001379', 'OR001379', '14941 W Central Avenue', '2024-02-05T12:46:13.448Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001380', 'U0000078', 'X0000421', 8, '2024-03-22T21:22:19.940Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001380', 'OR001380', 77.31, '2024-03-22T21:22:19.940Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001380', 'OR001380', '4575 Rippin Stravenue', '2024-03-23T21:22:19.940Z','2024-03-25T21:22:19.940Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001381', 'U0000061', 'X0000981', 5, '2023-12-18T22:29:30.699Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001382', 'U0000040', 'X0000444', 10, '2024-02-14T00:05:24.960Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001382', 'OR001382', 142.17, '2024-02-14T00:05:24.960Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001383', 'U0000057', 'X0000404', 2, '2024-01-13T08:12:43.874Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001383', 'OR001383', 65.1, '2024-01-13T08:12:43.874Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001383', 'OR001383', '3417 Camden Mission', '2024-01-16T08:12:43.874Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001384', 'U0000045', 'X0000767', 8, '2024-03-11T05:04:50.644Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001384', 'OR001384', 72.78, '2024-03-11T05:04:50.644Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001384', 'OR001384', '893 Cummerata Trail', '2024-03-14T05:04:50.644Z','2024-03-16T05:04:50.644Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001385', 'U0000001', 'X0000151', 16, '2023-10-29T15:24:34.180Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001386', 'U0000011', 'X0000985', 17, '2023-12-10T16:43:11.902Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001386', 'OR001386', 245.24, '2023-12-10T16:43:11.902Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001387', 'U0000093', 'X0000843', 11, '2024-02-28T05:29:56.827Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001387', 'OR001387', 1467.66, '2024-02-28T05:29:56.827Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001387', 'OR001387', '5140 Daisha Brook', '2024-02-29T05:29:56.827Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001388', 'U0000062', 'X0000910', 21, '2024-01-28T15:08:44.211Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001388', 'OR001388', 97.45, '2024-01-28T15:08:44.211Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001388', 'OR001388', '9219 Cassin Trace', '2024-02-02T15:08:44.211Z','2024-02-06T15:08:44.211Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001389', 'U0000044', 'X0000983', 32, '2023-12-18T05:29:50.567Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001390', 'U0000068', 'X0000229', 13, '2024-02-21T22:20:36.345Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001390', 'OR001390', 254.85, '2024-02-21T22:20:36.345Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001391', 'U0000010', 'X0000247', 10, '2023-10-17T09:45:18.575Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001391', 'OR001391', 191.31, '2023-10-17T09:45:18.575Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001391', 'OR001391', '14941 W Central Avenue', '2023-10-18T09:45:18.575Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001392', 'U0000039', 'X0000232', 39, '2024-03-16T08:57:58.627Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001392', 'OR001392', 278.99, '2024-03-16T08:57:58.627Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001392', 'OR001392', '94686 N Broadway', '2024-03-20T08:57:58.627Z','2024-03-22T08:57:58.627Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001393', 'U0000030', 'X0000378', 6, '2024-01-19T01:58:26.617Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001394', 'U0000088', 'X0000676', 61, '2023-11-17T21:53:37.303Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001394', 'OR001394', 74.11, '2023-11-17T21:53:37.303Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001395', 'U0000014', 'X0000381', 1, '2023-10-01T20:13:50.802Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001395', 'OR001395', 34.53, '2023-10-01T20:13:50.802Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001395', 'OR001395', '55447 Warren Close', '2023-10-03T20:13:50.802Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001396', 'U0000033', 'X0000285', 52, '2023-10-24T07:38:53.717Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001396', 'OR001396', 25.04, '2023-10-24T07:38:53.717Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001396', 'OR001396', '1975 Main Street', '2023-10-29T07:38:53.717Z','2023-11-03T07:38:53.717Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001397', 'U0000003', 'X0000236', 2, '2024-03-14T08:06:05.678Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001398', 'U0000081', 'X0000169', 28, '2023-11-04T20:11:02.670Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001398', 'OR001398', 80.25, '2023-11-04T20:11:02.670Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001399', 'U0000062', 'X0000285', 80, '2023-12-25T12:57:01.177Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001399', 'OR001399', 25.04, '2023-12-25T12:57:01.177Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001399', 'OR001399', '9219 Cassin Trace', '2023-12-26T12:57:01.177Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001400', 'U0000089', 'X0000840', 1, '2024-01-03T07:25:00.485Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001400', 'OR001400', 613.63, '2024-01-03T07:25:00.485Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001400', 'OR001400', '14414 Gleichner Haven', '2024-01-05T07:25:00.485Z','2024-01-07T07:25:00.485Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001401', 'U0000098', 'X0000418', 29, '2023-12-01T03:42:18.053Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001402', 'U0000070', 'X0000677', 17, '2024-01-25T00:25:40.991Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001402', 'OR001402', 85.32, '2024-01-25T00:25:40.991Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001403', 'U0000089', 'X0000689', 31, '2024-02-29T10:35:40.259Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001403', 'OR001403', 148.23, '2024-02-29T10:35:40.259Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001403', 'OR001403', '14414 Gleichner Haven', '2024-03-04T10:35:40.259Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001404', 'U0000039', 'X0000638', 59, '2024-02-17T07:34:38.695Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001404', 'OR001404', 68.66, '2024-02-17T07:34:38.695Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001404', 'OR001404', '94686 N Broadway', '2024-02-22T07:34:38.695Z','2024-02-27T07:34:38.695Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001405', 'U0000090', 'X0000698', 9, '2023-10-27T05:26:34.598Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001406', 'U0000089', 'X0000616', 82, '2023-12-05T07:31:46.929Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001406', 'OR001406', 147.02, '2023-12-05T07:31:46.929Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001407', 'U0000005', 'X0000762', 44, '2024-02-17T20:49:09.664Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001407', 'OR001407', 48.97, '2024-02-17T20:49:09.664Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001407', 'OR001407', '249 Dickinson Motorway', '2024-02-19T20:49:09.664Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001408', 'U0000070', 'X0000145', 27, '2024-03-20T23:50:53.565Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001408', 'OR001408', 17.27, '2024-03-20T23:50:53.565Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001408', 'OR001408', '88565 N Harrison Street', '2024-03-25T23:50:53.565Z','2024-03-28T23:50:53.565Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001409', 'U0000066', 'X0000104', 2, '2024-02-23T01:14:40.094Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001410', 'U0000095', 'X0000953', 6, '2023-11-20T06:35:51.128Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001410', 'OR001410', 134.87, '2023-11-20T06:35:51.128Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001411', 'U0000092', 'X0000689', 42, '2023-12-24T06:40:03.239Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001411', 'OR001411', 148.23, '2023-12-24T06:40:03.239Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001411', 'OR001411', '124 Delaney Point', '2023-12-29T06:40:03.239Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001412', 'U0000083', 'X0000109', 53, '2024-01-05T04:34:31.595Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001412', 'OR001412', 250.2, '2024-01-05T04:34:31.595Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001412', 'OR001412', '5520 Beach Road', '2024-01-09T04:34:31.595Z','2024-01-14T04:34:31.595Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001413', 'U0000014', 'X0000524', 50, '2024-01-04T10:00:47.157Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001414', 'U0000008', 'X0000351', 12, '2023-11-30T21:55:05.473Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001414', 'OR001414', 63.24, '2023-11-30T21:55:05.473Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001415', 'U0000084', 'X0000031', 1, '2023-11-11T05:25:48.163Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001415', 'OR001415', 347.07, '2023-11-11T05:25:48.163Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001415', 'OR001415', '20325 Brock Heights', '2023-11-16T05:25:48.163Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001416', 'U0000020', 'X0000932', 1, '2024-01-27T15:11:33.205Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001416', 'OR001416', 105, '2024-01-27T15:11:33.205Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001416', 'OR001416', '85931 Pagac Brook', '2024-01-28T15:11:33.205Z','2024-01-29T15:11:33.205Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001417', 'U0000005', 'X0000675', 4, '2023-12-22T10:33:14.900Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001418', 'U0000051', 'X0000822', 3, '2023-10-14T10:39:17.237Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001418', 'OR001418', 1084.65, '2023-10-14T10:39:17.237Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001419', 'U0000045', 'X0000647', 32, '2024-03-14T23:04:59.787Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001419', 'OR001419', 47.09, '2024-03-14T23:04:59.787Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001419', 'OR001419', '893 Cummerata Trail', '2024-03-16T23:04:59.787Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001420', 'U0000098', 'X0000522', 4, '2023-12-05T05:27:58.546Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001420', 'OR001420', 51.3, '2023-12-05T05:27:58.546Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001420', 'OR001420', '9279 Marcelo Tunnel', '2023-12-07T05:27:58.546Z','2023-12-11T05:27:58.546Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001421', 'U0000080', 'X0000645', 30, '2023-12-12T22:56:00.466Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001422', 'U0000067', 'X0000542', 42, '2023-11-06T19:25:22.754Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001422', 'OR001422', 605.44, '2023-11-06T19:25:22.754Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001423', 'U0000034', 'X0000976', 9, '2024-03-21T21:12:16.624Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001423', 'OR001423', 65.03, '2024-03-21T21:12:16.624Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001423', 'OR001423', '33811 E Main Street', '2024-03-23T21:12:16.624Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001424', 'U0000021', 'X0000329', 71, '2024-03-17T11:50:34.639Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001424', 'OR001424', 141.57, '2024-03-17T11:50:34.639Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001424', 'OR001424', '5955 S Market Street', '2024-03-22T11:50:34.639Z','2024-03-23T11:50:34.639Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001425', 'U0000052', 'X0000717', 2, '2023-11-24T20:32:11.535Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001426', 'U0000030', 'X0000824', 8, '2023-11-06T22:46:51.176Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001426', 'OR001426', 25.23, '2023-11-06T22:46:51.176Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001427', 'U0000075', 'X0000159', 3, '2024-02-23T04:41:06.381Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001427', 'OR001427', 47.84, '2024-02-23T04:41:06.381Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001427', 'OR001427', '457 Broad Lane', '2024-02-24T04:41:06.381Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001428', 'U0000088', 'X0000311', 35, '2023-11-18T22:59:31.655Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001428', 'OR001428', 647.92, '2023-11-18T22:59:31.655Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001428', 'OR001428', '3693 Jason Motorway', '2023-11-20T22:59:31.655Z','2023-11-23T22:59:31.655Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001429', 'U0000009', 'X0000976', 5, '2024-02-06T12:23:15.110Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001430', 'U0000056', 'X0000114', 67, '2024-02-12T05:29:52.371Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001430', 'OR001430', 56.01, '2024-02-12T05:29:52.371Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001431', 'U0000018', 'X0000624', 15, '2023-11-16T22:14:39.336Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001431', 'OR001431', 24.86, '2023-11-16T22:14:39.336Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001431', 'OR001431', '59575 Mill Street', '2023-11-18T22:14:39.336Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001432', 'U0000046', 'X0000014', 8, '2023-10-16T20:17:22.086Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001432', 'OR001432', 642.27, '2023-10-16T20:17:22.086Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001432', 'OR001432', '5563 Juniper Close', '2023-10-17T20:17:22.086Z','2023-10-19T20:17:22.086Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001433', 'U0000024', 'X0000633', 35, '2024-03-02T07:24:05.951Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001434', 'U0000086', 'X0000070', 24, '2023-10-10T00:00:13.343Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001434', 'OR001434', 35.22, '2023-10-10T00:00:13.343Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001435', 'U0000037', 'X0000994', 27, '2023-12-24T15:29:42.362Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001435', 'OR001435', 209.95, '2023-12-24T15:29:42.362Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001435', 'OR001435', '12115 Tennyson Road', '2023-12-25T15:29:42.362Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001436', 'U0000065', 'X0000190', 52, '2024-01-30T16:45:38.687Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001436', 'OR001436', 33.22, '2024-01-30T16:45:38.687Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001436', 'OR001436', '3001 Heller Circle', '2024-02-01T16:45:38.687Z','2024-02-02T16:45:38.687Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001437', 'U0000008', 'X0000687', 21, '2024-03-16T11:17:12.645Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001438', 'U0000052', 'X0000961', 47, '2023-12-03T18:36:56.749Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001438', 'OR001438', 134.55, '2023-12-03T18:36:56.749Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001439', 'U0000099', 'X0000682', 4, '2023-12-25T11:02:17.352Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001439', 'OR001439', 203.26, '2023-12-25T11:02:17.352Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001439', 'OR001439', '323 Bernardo Oval', '2023-12-27T11:02:17.352Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001440', 'U0000008', 'X0000173', 1, '2023-12-27T08:12:26.240Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001440', 'OR001440', 145.88, '2023-12-27T08:12:26.240Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001440', 'OR001440', '6391 Grayson Islands', '2024-01-01T08:12:26.240Z','2024-01-04T08:12:26.240Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001441', 'U0000006', 'X0000891', 34, '2024-03-27T03:12:07.459Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001442', 'U0000100', 'X0000312', 14, '2024-03-24T17:00:52.401Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001442', 'OR001442', 177.57, '2024-03-24T17:00:52.401Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001443', 'U0000045', 'X0000061', 74, '2024-03-10T15:47:53.726Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001443', 'OR001443', 159.3, '2024-03-10T15:47:53.726Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001443', 'OR001443', '893 Cummerata Trail', '2024-03-15T15:47:53.726Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001444', 'U0000032', 'X0000728', 28, '2024-02-24T07:47:51.963Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001444', 'OR001444', 15.52, '2024-02-24T07:47:51.963Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001444', 'OR001444', '25440 S Water Street', '2024-02-28T07:47:51.963Z','2024-02-29T07:47:51.963Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001445', 'U0000100', 'X0000333', 28, '2023-11-08T05:06:40.025Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001446', 'U0000087', 'X0000931', 7, '2023-10-15T15:48:16.120Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001446', 'OR001446', 49.97, '2023-10-15T15:48:16.120Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001447', 'U0000098', 'X0000811', 21, '2023-10-28T09:15:29.056Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001447', 'OR001447', 15.45, '2023-10-28T09:15:29.056Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001447', 'OR001447', '9279 Marcelo Tunnel', '2023-10-31T09:15:29.056Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001448', 'U0000089', 'X0000638', 19, '2023-10-21T16:47:43.248Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001448', 'OR001448', 68.66, '2023-10-21T16:47:43.248Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001448', 'OR001448', '14414 Gleichner Haven', '2023-10-23T16:47:43.248Z','2023-10-24T16:47:43.248Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001449', 'U0000068', 'X0000566', 36, '2023-12-22T22:35:34.808Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001450', 'U0000055', 'X0000824', 1, '2024-02-20T06:51:49.586Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001450', 'OR001450', 25.23, '2024-02-20T06:51:49.586Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001451', 'U0000090', 'X0000485', 32, '2024-02-20T12:57:37.389Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001451', 'OR001451', 29.74, '2024-02-20T12:57:37.389Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001451', 'OR001451', '94225 Hassan Mills', '2024-02-21T12:57:37.389Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001452', 'U0000066', 'X0000372', 15, '2023-12-15T07:45:37.438Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001452', 'OR001452', 99.21, '2023-12-15T07:45:37.438Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001452', 'OR001452', '514 Jefferson Avenue', '2023-12-20T07:45:37.438Z','2023-12-25T07:45:37.438Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001453', 'U0000020', 'X0000369', 69, '2023-12-05T11:26:32.780Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001454', 'U0000065', 'X0000722', 33, '2023-12-31T07:02:35.422Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001454', 'OR001454', 38.82, '2023-12-31T07:02:35.422Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001455', 'U0000093', 'X0000637', 60, '2024-03-17T09:40:21.804Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001455', 'OR001455', 22.18, '2024-03-17T09:40:21.804Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001455', 'OR001455', '5140 Daisha Brook', '2024-03-18T09:40:21.804Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001456', 'U0000080', 'X0000101', 26, '2024-03-22T16:25:56.192Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001456', 'OR001456', 77.8, '2024-03-22T16:25:56.192Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001456', 'OR001456', '321 Hickory Street', '2024-03-25T16:25:56.192Z','2024-03-29T16:25:56.192Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001457', 'U0000072', 'X0000793', 11, '2024-01-18T21:24:44.406Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001458', 'U0000076', 'X0000661', 14, '2023-12-24T09:48:44.656Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001458', 'OR001458', 154.14, '2023-12-24T09:48:44.656Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001459', 'U0000073', 'X0000598', 40, '2024-03-16T06:58:39.575Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001459', 'OR001459', 121.43, '2024-03-16T06:58:39.575Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001459', 'OR001459', '2363 Ruecker Valley', '2024-03-18T06:58:39.575Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001460', 'U0000035', 'X0000457', 9, '2023-12-28T02:17:34.445Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001460', 'OR001460', 258.75, '2023-12-28T02:17:34.445Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001460', 'OR001460', '80090 Schmidt Plains', '2023-12-30T02:17:34.445Z','2024-01-01T02:17:34.445Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001461', 'U0000072', 'X0000167', 19, '2024-01-29T05:57:18.615Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001462', 'U0000057', 'X0000567', 86, '2023-11-18T13:14:21.225Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001462', 'OR001462', 144.7, '2023-11-18T13:14:21.225Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001463', 'U0000023', 'X0000381', 18, '2024-02-06T11:31:37.822Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001463', 'OR001463', 34.53, '2024-02-06T11:31:37.822Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001463', 'OR001463', '3935 Magnolia Trail', '2024-02-08T11:31:37.822Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001464', 'U0000076', 'X0000435', 18, '2023-12-16T07:06:08.109Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001464', 'OR001464', 257.53, '2023-12-16T07:06:08.109Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001464', 'OR001464', '69547 Rosamond Field', '2023-12-18T07:06:08.109Z','2023-12-20T07:06:08.109Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001465', 'U0000100', 'X0000471', 1, '2024-02-29T18:15:39.682Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001466', 'U0000064', 'X0000963', 5, '2023-10-15T11:47:38.275Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001466', 'OR001466', 51.2, '2023-10-15T11:47:38.275Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001467', 'U0000012', 'X0000327', 15, '2024-03-20T19:05:26.132Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001467', 'OR001467', 180, '2024-03-20T19:05:26.132Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001467', 'OR001467', '84299 Parkside', '2024-03-22T19:05:26.132Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001468', 'U0000059', 'X0000935', 9, '2024-01-02T18:16:56.067Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001468', 'OR001468', 165.93, '2024-01-02T18:16:56.067Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001468', 'OR001468', '22218 W 8th Street', '2024-01-04T18:16:56.067Z','2024-01-07T18:16:56.067Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001469', 'U0000017', 'X0000434', 13, '2023-11-11T02:20:26.794Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001470', 'U0000008', 'X0000890', 12, '2023-10-10T11:23:14.169Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001470', 'OR001470', 451.23, '2023-10-10T11:23:14.169Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001471', 'U0000037', 'X0000533', 45, '2024-02-04T04:48:36.298Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001471', 'OR001471', 102.5, '2024-02-04T04:48:36.298Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001471', 'OR001471', '12115 Tennyson Road', '2024-02-09T04:48:36.298Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001472', 'U0000093', 'X0000759', 43, '2024-02-09T20:49:12.644Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001472', 'OR001472', 415.33, '2024-02-09T20:49:12.644Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001472', 'OR001472', '5140 Daisha Brook', '2024-02-11T20:49:12.644Z','2024-02-15T20:49:12.644Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001473', 'U0000026', 'X0000812', 15, '2024-02-24T00:39:12.474Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001474', 'U0000033', 'X0000143', 27, '2023-12-05T00:21:20.184Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001474', 'OR001474', 1049.84, '2023-12-05T00:21:20.184Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001475', 'U0000026', 'X0000964', 39, '2023-12-19T04:27:01.408Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001475', 'OR001475', 185.88, '2023-12-19T04:27:01.408Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001475', 'OR001475', '323 Emmerich Course', '2023-12-24T04:27:01.408Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001476', 'U0000085', 'X0000182', 7, '2024-01-12T20:16:25.569Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001476', 'OR001476', 64.3, '2024-01-12T20:16:25.569Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001476', 'OR001476', '597 Crescent Road', '2024-01-17T20:16:25.569Z','2024-01-18T20:16:25.569Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001477', 'U0000041', 'X0000485', 19, '2023-12-19T14:05:07.355Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001478', 'U0000079', 'X0000856', 22, '2024-03-06T06:25:41.101Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001478', 'OR001478', 60.15, '2024-03-06T06:25:41.101Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001479', 'U0000065', 'X0000273', 50, '2024-01-13T16:35:31.380Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001479', 'OR001479', 94.47, '2024-01-13T16:35:31.380Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001479', 'OR001479', '3001 Heller Circle', '2024-01-15T16:35:31.380Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001480', 'U0000026', 'X0000726', 6, '2023-12-08T20:43:22.049Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001480', 'OR001480', 1270.55, '2023-12-08T20:43:22.049Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001480', 'OR001480', '323 Emmerich Course', '2023-12-10T20:43:22.049Z','2023-12-11T20:43:22.049Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001481', 'U0000062', 'X0000670', 44, '2024-02-07T16:06:21.130Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001482', 'U0000076', 'X0000663', 46, '2024-03-06T15:36:06.782Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001482', 'OR001482', 14.71, '2024-03-06T15:36:06.782Z', 'Bank Transfer');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001483', 'U0000016', 'X0000769', 5, '2024-03-29T13:55:21.040Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001483', 'OR001483', 46.76, '2024-03-29T13:55:21.040Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001483', 'OR001483', '714 N Cedar Street', '2024-04-02T13:55:21.040Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001484', 'U0000067', 'X0000079', 38, '2024-03-08T12:48:21.884Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001484', 'OR001484', 47.1, '2024-03-08T12:48:21.884Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001484', 'OR001484', '6233 Elbert Mountains', '2024-03-13T12:48:21.884Z','2024-03-17T12:48:21.884Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001485', 'U0000038', 'X0000360', 44, '2023-11-13T11:51:02.896Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001486', 'U0000013', 'X0000018', 14, '2024-01-28T12:19:50.734Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001486', 'OR001486', 25.86, '2024-01-28T12:19:50.734Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001487', 'U0000066', 'X0000341', 8, '2024-01-27T15:02:05.669Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001487', 'OR001487', 70.56, '2024-01-27T15:02:05.669Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001487', 'OR001487', '514 Jefferson Avenue', '2024-01-31T15:02:05.669Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001488', 'U0000062', 'X0000435', 9, '2024-01-09T13:56:18.940Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001488', 'OR001488', 257.53, '2024-01-09T13:56:18.940Z', 'Credit Card');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001488', 'OR001488', '9219 Cassin Trace', '2024-01-11T13:56:18.940Z','2024-01-16T13:56:18.940Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001489', 'U0000054', 'X0000278', 4, '2024-02-24T01:50:12.949Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001490', 'U0000055', 'X0000680', 59, '2024-03-21T18:12:56.687Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001490', 'OR001490', 16.91, '2024-03-21T18:12:56.687Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001491', 'U0000061', 'X0000143', 9, '2023-11-16T22:48:53.423Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001491', 'OR001491', 1049.84, '2023-11-16T22:48:53.423Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001491', 'OR001491', '80281 Cathrine Field', '2023-11-20T22:48:53.423Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001492', 'U0000061', 'X0000094', 39, '2024-01-14T08:43:15.972Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001492', 'OR001492', 1401.99, '2024-01-14T08:43:15.972Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001492', 'OR001492', '80281 Cathrine Field', '2024-01-17T08:43:15.972Z','2024-01-21T08:43:15.972Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001493', 'U0000058', 'X0000083', 15, '2024-03-12T06:33:57.070Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001494', 'U0000012', 'X0000602', 61, '2024-01-06T10:46:52.915Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001494', 'OR001494', 48.41, '2024-01-06T10:46:52.915Z', 'Credit Card');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001495', 'U0000053', 'X0000943', 1, '2024-03-18T22:06:47.954Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001495', 'OR001495', 208.38, '2024-03-18T22:06:47.954Z', 'Bank Transfer');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001495', 'OR001495', '9299 Railway Street', '2024-03-20T22:06:47.954Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001496', 'U0000012', 'X0000405', 28, '2024-03-22T13:44:49.696Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001496', 'OR001496', 120.99, '2024-03-22T13:44:49.696Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001496', 'OR001496', '84299 Parkside', '2024-03-24T13:44:49.696Z','2024-03-26T13:44:49.696Z');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001497', 'U0000082', 'X0000815', 39, '2024-03-08T09:33:47.056Z', 'Cancelled');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001498', 'U0000034', 'X0000359', 40, '2023-12-11T09:18:29.276Z', 'In Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001498', 'OR001498', 45, '2023-12-11T09:18:29.276Z', 'PayPal');
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001499', 'U0000001', 'X0000835', 35, '2024-02-26T16:10:50.866Z', 'Shipping in Progress');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001499', 'OR001499', 87.55, '2024-02-26T16:10:50.866Z', 'PayPal');
INSERT INTO shipping_details (shipping_id, order_id, address, shipped_date,received_date) VALUES ('SH001499', 'OR001499', '250 N Cedar Street', '2024-03-01T16:10:50.866Z',NULL);
INSERT INTO order_detail (order_id, user_id, product_id, quantity, order_date, status) VALUES ('OR001500', 'U0000060', 'X0000531', 21, '2023-10-24T05:26:36.891Z', 'Completed');
INSERT INTO payment_details (payment_id, order_id, amount, payment_date, payment_method) VALUES ('P0001500', 'OR001500', 137.66, '2023-10-24T05:26:36.891Z', 'PayPal');
INSERT INTO shipping_details (shipping_id,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment