-- Retail analytics seed data (generated by generate_seed_sql.py) -- Idempotent: truncate then insert. Run against existing schema. TRUNCATE TABLE returns, sales, promotions, products, customers, product_categories, regions RESTART IDENTITY CASCADE; -- Regions (static) INSERT INTO regions (name, country) VALUES ('North America', 'US'); INSERT INTO regions (name, country) VALUES ('North America', 'CA'); INSERT INTO regions (name, country) VALUES ('North America', 'MX'); INSERT INTO regions (name, country) VALUES ('South America', 'BR'); INSERT INTO regions (name, country) VALUES ('Europe West', 'FR'); INSERT INTO regions (name, country) VALUES ('Europe West', 'DE'); INSERT INTO regions (name, country) VALUES ('UK & Ireland', 'GB'); INSERT INTO regions (name, country) VALUES ('Asia Pacific', 'JP'); INSERT INTO regions (name, country) VALUES ('Asia Pacific', 'IN'); INSERT INTO regions (name, country) VALUES ('ANZ', 'AU'); INSERT INTO regions (name, country) VALUES ('Middle East', 'AE'); INSERT INTO regions (name, country) VALUES ('Africa', 'ZA'); -- Product categories (static) INSERT INTO product_categories (name) VALUES ('Electronics'); INSERT INTO product_categories (name) VALUES ('Computers'); INSERT INTO product_categories (name) VALUES ('Clothing'); INSERT INTO product_categories (name) VALUES ('Home & Garden'); INSERT INTO product_categories (name) VALUES ('Sports & Outdoors'); INSERT INTO product_categories (name) VALUES ('Toys & Games'); INSERT INTO product_categories (name) VALUES ('Books & Media'); INSERT INTO product_categories (name) VALUES ('Health & Beauty'); INSERT INTO product_categories (name) VALUES ('Office Supplies'); INSERT INTO product_categories (name) VALUES ('Automotive'); INSERT INTO product_categories (name) VALUES ('Pet Supplies'); INSERT INTO product_categories (name) VALUES ('Groceries'); -- Products (10-20 per category, price by tier, meaningful names) INSERT INTO products (id, name, category_id, base_price) VALUES (1, 'Smart Watch Series Purpose 4', 1, 1905.57); INSERT INTO products (id, name, category_id, base_price) VALUES (2, 'USB-C Hub Brother 29', 1, 520.94); INSERT INTO products (id, name, category_id, base_price) VALUES (3, 'Smart Watch Series Ago 87', 1, 1903.54); INSERT INTO products (id, name, category_id, base_price) VALUES (4, 'Gaming Mouse Site 12', 1, 1558.13); INSERT INTO products (id, name, category_id, base_price) VALUES (5, 'Pro Wireless Headphones Face 4', 1, 415.5); INSERT INTO products (id, name, category_id, base_price) VALUES (6, 'USB-C Hub Election 65', 1, 1584.64); INSERT INTO products (id, name, category_id, base_price) VALUES (7, 'Gaming Mouse Dog 26', 1, 1846.85); INSERT INTO products (id, name, category_id, base_price) VALUES (8, 'Gaming Mouse Chair 54', 1, 707.01); INSERT INTO products (id, name, category_id, base_price) VALUES (9, 'Mechanical Keyboard Since 36', 1, 2061.69); INSERT INTO products (id, name, category_id, base_price) VALUES (10, 'Pro Wireless Headphones Blue 98', 1, 2053.38); INSERT INTO products (id, name, category_id, base_price) VALUES (11, 'HD Webcam Require 44', 1, 839.1); INSERT INTO products (id, name, category_id, base_price) VALUES (12, 'USB-C Hub Sit 98', 1, 974.17); INSERT INTO products (id, name, category_id, base_price) VALUES (13, 'Smart Watch Series Wait 49', 1, 422.45); INSERT INTO products (id, name, category_id, base_price) VALUES (14, 'Tablet Stand Offer 78', 1, 808.4); INSERT INTO products (id, name, category_id, base_price) VALUES (15, 'Pro Wireless Headphones Begin 94', 1, 1256.68); INSERT INTO products (id, name, category_id, base_price) VALUES (16, 'Smart Watch Series Performance 49', 1, 381.24); INSERT INTO products (id, name, category_id, base_price) VALUES (17, 'Noise-Cancelling Earbuds Knowledge 81', 1, 1622.6); INSERT INTO products (id, name, category_id, base_price) VALUES (18, 'Tablet Stand Almost 74', 1, 642.26); INSERT INTO products (id, name, category_id, base_price) VALUES (19, 'Smart Watch Series All 6', 1, 1720.91); INSERT INTO products (id, name, category_id, base_price) VALUES (20, 'Noise-Cancelling Earbuds Better 11', 1, 2167.23); INSERT INTO products (id, name, category_id, base_price) VALUES (21, 'Wireless Router Discover 36', 2, 1242.84); INSERT INTO products (id, name, category_id, base_price) VALUES (22, 'Docking Station Early 21', 2, 1051.42); INSERT INTO products (id, name, category_id, base_price) VALUES (23, 'External SSD 1TB Mouth 86', 2, 814.05); INSERT INTO products (id, name, category_id, base_price) VALUES (24, 'Ultrabook 14" Play 78', 2, 1660.45); INSERT INTO products (id, name, category_id, base_price) VALUES (25, 'USB-C Dock Agreement 94', 2, 763.07); INSERT INTO products (id, name, category_id, base_price) VALUES (26, 'Laptop Sleeve Option 49', 2, 820.88); INSERT INTO products (id, name, category_id, base_price) VALUES (27, 'USB-C Dock Decide 29', 2, 1774.61); INSERT INTO products (id, name, category_id, base_price) VALUES (28, 'Gaming Laptop 15" Sense 30', 2, 2090.15); INSERT INTO products (id, name, category_id, base_price) VALUES (29, 'Docking Station Rate 52', 2, 815.8); INSERT INTO products (id, name, category_id, base_price) VALUES (30, 'External SSD 1TB Science 73', 2, 2215.65); INSERT INTO products (id, name, category_id, base_price) VALUES (31, 'Docking Station Offer 28', 2, 1707.51); INSERT INTO products (id, name, category_id, base_price) VALUES (32, 'Polo Shirt Kind 19', 3, 54.43); INSERT INTO products (id, name, category_id, base_price) VALUES (33, 'Wool Sweater Discussion 96', 3, 92.98); INSERT INTO products (id, name, category_id, base_price) VALUES (34, 'Summer Dress List 96', 3, 96.0); INSERT INTO products (id, name, category_id, base_price) VALUES (35, 'Cargo Pants Perform 52', 3, 67.06); INSERT INTO products (id, name, category_id, base_price) VALUES (36, 'Running Shorts Fall 66', 3, 84.16); INSERT INTO products (id, name, category_id, base_price) VALUES (37, 'Cotton T-Shirt Table 15', 3, 39.87); INSERT INTO products (id, name, category_id, base_price) VALUES (38, 'Running Shorts True 88', 3, 74.88); INSERT INTO products (id, name, category_id, base_price) VALUES (39, 'Denim Jacket According 50', 3, 69.61); INSERT INTO products (id, name, category_id, base_price) VALUES (40, 'Polo Shirt Song 68', 3, 52.68); INSERT INTO products (id, name, category_id, base_price) VALUES (41, 'Winter Coat Sure 2', 3, 108.44); INSERT INTO products (id, name, category_id, base_price) VALUES (42, 'Denim Jacket Collection 88', 3, 135.02); INSERT INTO products (id, name, category_id, base_price) VALUES (43, 'Summer Dress Save 99', 3, 103.33); INSERT INTO products (id, name, category_id, base_price) VALUES (44, 'Denim Jacket Knowledge 38', 3, 76.52); INSERT INTO products (id, name, category_id, base_price) VALUES (45, 'Polo Shirt Grow 1', 3, 144.0); INSERT INTO products (id, name, category_id, base_price) VALUES (46, 'Summer Dress Fall 65', 3, 119.06); INSERT INTO products (id, name, category_id, base_price) VALUES (47, 'Winter Coat Clearly 14', 3, 133.17); INSERT INTO products (id, name, category_id, base_price) VALUES (48, 'Blender Dinner 78', 4, 47.82); INSERT INTO products (id, name, category_id, base_price) VALUES (49, 'Storage Bins Source 98', 4, 41.66); INSERT INTO products (id, name, category_id, base_price) VALUES (50, 'Blender Great 1', 4, 113.83); INSERT INTO products (id, name, category_id, base_price) VALUES (51, 'Coffee Maker Blue 3', 4, 33.46); INSERT INTO products (id, name, category_id, base_price) VALUES (52, 'Storage Bins Best 40', 4, 54.51); INSERT INTO products (id, name, category_id, base_price) VALUES (53, 'Throw Pillow Husband 73', 4, 171.25); INSERT INTO products (id, name, category_id, base_price) VALUES (54, 'Plant Pot Set Bill 94', 4, 95.19); INSERT INTO products (id, name, category_id, base_price) VALUES (55, 'Plant Pot Set Her 98', 4, 102.9); INSERT INTO products (id, name, category_id, base_price) VALUES (56, 'Kitchen Tool Set Throw 17', 4, 123.86); INSERT INTO products (id, name, category_id, base_price) VALUES (57, 'Blender Guy 22', 4, 58.73); INSERT INTO products (id, name, category_id, base_price) VALUES (58, 'Vacuum Cleaner Pm 55', 4, 174.12); INSERT INTO products (id, name, category_id, base_price) VALUES (59, 'Blender Everything 97', 4, 135.44); INSERT INTO products (id, name, category_id, base_price) VALUES (60, 'Throw Pillow Surface 92', 4, 66.43); INSERT INTO products (id, name, category_id, base_price) VALUES (61, 'Storage Bins Animal 57', 4, 163.44); INSERT INTO products (id, name, category_id, base_price) VALUES (62, 'Dumbbells Set Show 32', 5, 64.32); INSERT INTO products (id, name, category_id, base_price) VALUES (63, 'Water Bottle Machine 3', 5, 127.95); INSERT INTO products (id, name, category_id, base_price) VALUES (64, 'Cycling Helmet Not 76', 5, 63.54); INSERT INTO products (id, name, category_id, base_price) VALUES (65, 'Dumbbells Set Capital 91', 5, 135.44); INSERT INTO products (id, name, category_id, base_price) VALUES (66, 'Cycling Helmet Win 9', 5, 183.45); INSERT INTO products (id, name, category_id, base_price) VALUES (67, 'Water Bottle Human 10', 5, 114.98); INSERT INTO products (id, name, category_id, base_price) VALUES (68, 'Camping Tent Bar 86', 5, 109.95); INSERT INTO products (id, name, category_id, base_price) VALUES (69, 'Tennis Racket Old 17', 5, 151.59); INSERT INTO products (id, name, category_id, base_price) VALUES (70, 'Sleeping Bag Finally 74', 5, 107.72); INSERT INTO products (id, name, category_id, base_price) VALUES (71, 'Fitness Tracker Themselves 53', 5, 58.32); INSERT INTO products (id, name, category_id, base_price) VALUES (72, 'Dumbbells Set Production 85', 5, 100.43); INSERT INTO products (id, name, category_id, base_price) VALUES (73, 'Resistance Bands Present 53', 5, 106.73); INSERT INTO products (id, name, category_id, base_price) VALUES (74, 'Yoga Mat Value 87', 5, 139.35); INSERT INTO products (id, name, category_id, base_price) VALUES (75, 'Dumbbells Set Training 8', 5, 95.46); INSERT INTO products (id, name, category_id, base_price) VALUES (76, 'Water Bottle High 14', 5, 68.51); INSERT INTO products (id, name, category_id, base_price) VALUES (77, 'Cycling Helmet Participant 69', 5, 103.51); INSERT INTO products (id, name, category_id, base_price) VALUES (78, 'Resistance Bands Dark 24', 5, 73.75); INSERT INTO products (id, name, category_id, base_price) VALUES (79, 'Building Blocks Set Sea 57', 6, 98.88); INSERT INTO products (id, name, category_id, base_price) VALUES (80, 'Card Game Available 13', 6, 15.56); INSERT INTO products (id, name, category_id, base_price) VALUES (81, 'Card Game Answer 2', 6, 116.59); INSERT INTO products (id, name, category_id, base_price) VALUES (82, 'Puzzle 500pc Recently 22', 6, 54.71); INSERT INTO products (id, name, category_id, base_price) VALUES (83, 'Educational Kit Drive 28', 6, 105.11); INSERT INTO products (id, name, category_id, base_price) VALUES (84, 'Board Game Spring 22', 6, 51.69); INSERT INTO products (id, name, category_id, base_price) VALUES (85, 'Remote Car Figure 34', 6, 111.92); INSERT INTO products (id, name, category_id, base_price) VALUES (86, 'Educational Kit Base 37', 6, 56.53); INSERT INTO products (id, name, category_id, base_price) VALUES (87, 'Card Game Top 85', 6, 89.02); INSERT INTO products (id, name, category_id, base_price) VALUES (88, 'Action Figure Early 25', 6, 42.64); INSERT INTO products (id, name, category_id, base_price) VALUES (89, 'Board Game Trial 75', 6, 90.93); INSERT INTO products (id, name, category_id, base_price) VALUES (90, 'Board Game Blood 96', 6, 44.5); INSERT INTO products (id, name, category_id, base_price) VALUES (91, 'Board Game Husband 75', 6, 62.45); INSERT INTO products (id, name, category_id, base_price) VALUES (92, 'Children''s Book Fall 8', 7, 77.18); INSERT INTO products (id, name, category_id, base_price) VALUES (93, 'Cookbook Long 24', 7, 12.93); INSERT INTO products (id, name, category_id, base_price) VALUES (94, 'Cookbook Prove 87', 7, 70.05); INSERT INTO products (id, name, category_id, base_price) VALUES (95, 'Comic Book They 16', 7, 75.79); INSERT INTO products (id, name, category_id, base_price) VALUES (96, 'Travel Guide His 32', 7, 49.68); INSERT INTO products (id, name, category_id, base_price) VALUES (97, 'Bestseller Novel Commercial 80', 7, 13.9); INSERT INTO products (id, name, category_id, base_price) VALUES (98, 'Travel Guide Hospital 73', 7, 45.64); INSERT INTO products (id, name, category_id, base_price) VALUES (99, 'Audiobook Hear 27', 7, 56.22); INSERT INTO products (id, name, category_id, base_price) VALUES (100, 'Reference Guide Determine 31', 7, 27.12); INSERT INTO products (id, name, category_id, base_price) VALUES (101, 'Children''s Book Religious 86', 7, 54.48); INSERT INTO products (id, name, category_id, base_price) VALUES (102, 'Journal Example 41', 7, 74.89); INSERT INTO products (id, name, category_id, base_price) VALUES (103, 'Cookbook Science 2', 7, 41.0); INSERT INTO products (id, name, category_id, base_price) VALUES (104, 'Travel Guide Write 13', 7, 13.27); INSERT INTO products (id, name, category_id, base_price) VALUES (105, 'Magazine Subscription Result 65', 7, 27.09); INSERT INTO products (id, name, category_id, base_price) VALUES (106, 'Reference Guide Raise 9', 7, 71.31); INSERT INTO products (id, name, category_id, base_price) VALUES (107, 'Reference Guide Away 37', 7, 19.36); INSERT INTO products (id, name, category_id, base_price) VALUES (108, 'Puzzle Book Politics 91', 7, 29.78); INSERT INTO products (id, name, category_id, base_price) VALUES (109, 'Puzzle Book Prove 2', 7, 56.09); INSERT INTO products (id, name, category_id, base_price) VALUES (110, 'Hand Soap Congress 85', 8, 14.84); INSERT INTO products (id, name, category_id, base_price) VALUES (111, 'Face Cream None 34', 8, 15.97); INSERT INTO products (id, name, category_id, base_price) VALUES (112, 'Shampoo & Conditioner Shoulder 96', 8, 57.56); INSERT INTO products (id, name, category_id, base_price) VALUES (113, 'Hand Soap Election 37', 8, 62.46); INSERT INTO products (id, name, category_id, base_price) VALUES (114, 'Body Lotion Common 27', 8, 70.31); INSERT INTO products (id, name, category_id, base_price) VALUES (115, 'Hand Soap Maintain 65', 8, 51.41); INSERT INTO products (id, name, category_id, base_price) VALUES (116, 'Moisturizer SPF 30 Hundred 12', 8, 65.26); INSERT INTO products (id, name, category_id, base_price) VALUES (117, 'Hand Soap Expect 6', 8, 5.34); INSERT INTO products (id, name, category_id, base_price) VALUES (118, 'Face Cream Wish 82', 8, 98.08); INSERT INTO products (id, name, category_id, base_price) VALUES (119, 'Face Cream Push 95', 8, 46.97); INSERT INTO products (id, name, category_id, base_price) VALUES (120, 'Hair Serum Rise 72', 8, 5.92); INSERT INTO products (id, name, category_id, base_price) VALUES (121, 'Shampoo & Conditioner Onto 89', 8, 90.87); INSERT INTO products (id, name, category_id, base_price) VALUES (122, 'Vitamin C Serum Discuss 5', 8, 84.29); INSERT INTO products (id, name, category_id, base_price) VALUES (123, 'Scented Candle Reveal 71', 8, 19.07); INSERT INTO products (id, name, category_id, base_price) VALUES (124, 'Face Cream Garden 6', 8, 34.28); INSERT INTO products (id, name, category_id, base_price) VALUES (125, 'Moisturizer SPF 30 Threat 46', 8, 24.96); INSERT INTO products (id, name, category_id, base_price) VALUES (126, 'Sunscreen Lotion Special 86', 8, 14.77); INSERT INTO products (id, name, category_id, base_price) VALUES (127, 'Vitamin C Serum Stand 53', 8, 97.51); INSERT INTO products (id, name, category_id, base_price) VALUES (128, 'File Folders Arrive 21', 9, 48.86); INSERT INTO products (id, name, category_id, base_price) VALUES (129, 'Notebook A4 Drop 53', 9, 3.19); INSERT INTO products (id, name, category_id, base_price) VALUES (130, 'Highlighters Term 53', 9, 40.51); INSERT INTO products (id, name, category_id, base_price) VALUES (131, 'File Folders Almost 35', 9, 9.64); INSERT INTO products (id, name, category_id, base_price) VALUES (132, 'Ballpoint Pens 12pk Support 49', 9, 43.86); INSERT INTO products (id, name, category_id, base_price) VALUES (133, 'Desk Organizer Four 29', 9, 11.58); INSERT INTO products (id, name, category_id, base_price) VALUES (134, 'Desk Organizer Institution 45', 9, 16.65); INSERT INTO products (id, name, category_id, base_price) VALUES (135, 'File Folders Executive 29', 9, 3.14); INSERT INTO products (id, name, category_id, base_price) VALUES (136, 'File Folders Attorney 52', 9, 17.76); INSERT INTO products (id, name, category_id, base_price) VALUES (137, 'Ballpoint Pens 12pk Development 99', 9, 15.4); INSERT INTO products (id, name, category_id, base_price) VALUES (138, 'Printer Paper White 52', 9, 34.62); INSERT INTO products (id, name, category_id, base_price) VALUES (139, 'Printer Paper Yes 43', 9, 47.08); INSERT INTO products (id, name, category_id, base_price) VALUES (140, 'Snow Brush Our 23', 10, 244.82); INSERT INTO products (id, name, category_id, base_price) VALUES (141, 'Snow Brush Under 5', 10, 70.11); INSERT INTO products (id, name, category_id, base_price) VALUES (142, 'Jump Starter Serious 45', 10, 299.56); INSERT INTO products (id, name, category_id, base_price) VALUES (143, 'Tire Inflator Forward 56', 10, 254.3); INSERT INTO products (id, name, category_id, base_price) VALUES (144, 'Air Freshener Difference 15', 10, 172.52); INSERT INTO products (id, name, category_id, base_price) VALUES (145, 'Floor Mats Reality 25', 10, 124.25); INSERT INTO products (id, name, category_id, base_price) VALUES (146, 'Jump Starter Money 1', 10, 222.37); INSERT INTO products (id, name, category_id, base_price) VALUES (147, 'Air Freshener Individual 88', 10, 296.19); INSERT INTO products (id, name, category_id, base_price) VALUES (148, 'Seat Cover Usually 47', 10, 189.58); INSERT INTO products (id, name, category_id, base_price) VALUES (149, 'Tire Inflator Who 80', 10, 146.15); INSERT INTO products (id, name, category_id, base_price) VALUES (150, 'Dash Cam Question 93', 10, 363.02); INSERT INTO products (id, name, category_id, base_price) VALUES (151, 'Grooming Brush Low 86', 11, 35.63); INSERT INTO products (id, name, category_id, base_price) VALUES (152, 'Bird Feeder Character 90', 11, 27.17); INSERT INTO products (id, name, category_id, base_price) VALUES (153, 'Pet Bowl Evidence 25', 11, 36.53); INSERT INTO products (id, name, category_id, base_price) VALUES (154, 'Bird Feeder Chair 87', 11, 61.11); INSERT INTO products (id, name, category_id, base_price) VALUES (155, 'Pet Bowl Employee 79', 11, 47.68); INSERT INTO products (id, name, category_id, base_price) VALUES (156, 'Bird Feeder Size 71', 11, 67.53); INSERT INTO products (id, name, category_id, base_price) VALUES (157, 'Grooming Brush Option 37', 11, 20.76); INSERT INTO products (id, name, category_id, base_price) VALUES (158, 'Treat Pouch Nothing 78', 11, 54.1); INSERT INTO products (id, name, category_id, base_price) VALUES (159, 'Flea Collar Everyone 57', 11, 38.16); INSERT INTO products (id, name, category_id, base_price) VALUES (160, 'Chew Toy Skin 66', 11, 40.49); INSERT INTO products (id, name, category_id, base_price) VALUES (161, 'Pet Bowl Pattern 85', 11, 11.36); INSERT INTO products (id, name, category_id, base_price) VALUES (162, 'Pet Bed Later 85', 11, 52.47); INSERT INTO products (id, name, category_id, base_price) VALUES (163, 'Aquarium Filter Water 12', 11, 66.38); INSERT INTO products (id, name, category_id, base_price) VALUES (164, 'Chew Toy Past 87', 11, 28.28); INSERT INTO products (id, name, category_id, base_price) VALUES (165, 'Chew Toy Inside 19', 11, 6.83); INSERT INTO products (id, name, category_id, base_price) VALUES (166, 'Chew Toy High 61', 11, 50.85); INSERT INTO products (id, name, category_id, base_price) VALUES (167, 'Cat Litter Discuss 59', 11, 36.08); INSERT INTO products (id, name, category_id, base_price) VALUES (168, 'Treat Pouch Certainly 25', 11, 58.88); INSERT INTO products (id, name, category_id, base_price) VALUES (169, 'Granola Mr 52', 12, 13.71); INSERT INTO products (id, name, category_id, base_price) VALUES (170, 'Organic Cereal Minute 97', 12, 43.3); INSERT INTO products (id, name, category_id, base_price) VALUES (171, 'Whole Grain Bread Benefit 55', 12, 12.5); INSERT INTO products (id, name, category_id, base_price) VALUES (172, 'Rice 2kg Someone 60', 12, 4.41); INSERT INTO products (id, name, category_id, base_price) VALUES (173, 'Pasta Pack Anyone 16', 12, 23.91); INSERT INTO products (id, name, category_id, base_price) VALUES (174, 'Granola Traditional 86', 12, 27.49); INSERT INTO products (id, name, category_id, base_price) VALUES (175, 'Rice 2kg Break 77', 12, 17.23); INSERT INTO products (id, name, category_id, base_price) VALUES (176, 'Granola Claim 79', 12, 41.12); INSERT INTO products (id, name, category_id, base_price) VALUES (177, 'Rice 2kg Product 55', 12, 41.87); INSERT INTO products (id, name, category_id, base_price) VALUES (178, 'Rice 2kg Collection 58', 12, 45.07); INSERT INTO products (id, name, category_id, base_price) VALUES (179, 'Granola Structure 58', 12, 14.44); INSERT INTO products (id, name, category_id, base_price) VALUES (180, 'Pasta Pack Response 82', 12, 15.31); INSERT INTO products (id, name, category_id, base_price) VALUES (181, 'Rice 2kg Knowledge 63', 12, 32.08); INSERT INTO products (id, name, category_id, base_price) VALUES (182, 'Canned Tomatoes Pick 57', 12, 5.72); INSERT INTO products (id, name, category_id, base_price) VALUES (183, 'Canned Tomatoes Attack 31', 12, 15.04); INSERT INTO products (id, name, category_id, base_price) VALUES (184, 'Honey Jar Image 70', 12, 5.87); -- Customers (~400, regional bias, growth trend over 2 years) INSERT INTO customers (id, name, email, region_id, created_at) VALUES (1, 'Zachary Rice', 'frazierdanny@example.net', 2, '2025-03-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (2, 'Patricia Peterson', 'ryan70@example.net', 5, '2024-09-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (3, 'Deborah Mason', 'williamrodriguez@example.net', 2, '2024-09-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (4, 'Mark Lynch', 'nathanielmartin@example.net', 2, '2024-09-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (5, 'Linda Burns', 'hickmannatasha@example.com', 8, '2025-07-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (6, 'David Bradley', 'millertodd@example.org', 9, '2024-10-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (7, 'Kim Martinez', 'karroyo@example.com', 11, '2025-04-28'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (8, 'Lisa Brandt', 'jenniferross@example.net', 9, '2024-11-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (9, 'Jessica Holmes', 'wrightcaleb@example.org', 7, '2025-09-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (10, 'Crystal Robinson', 'zimmermanbrian@example.org', 6, '2024-09-28'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (11, 'Shannon Jones', 'joshuawashington@example.net', 2, '2025-02-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (12, 'Timothy Duncan', 'esanchez@example.com', 8, '2025-07-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (13, 'Brent Jordan', 'ujenkins@example.org', 4, '2025-09-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (14, 'Victoria Garcia', 'zchandler@example.org', 7, '2024-02-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (15, 'Connor West', 'dwhite@example.org', 5, '2025-08-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (16, 'Angela Morton', 'williamsyvette@example.org', 2, '2024-08-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (17, 'Tammy Allison', 'richardolson@example.com', 2, '2024-08-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (18, 'Carmen Smith', 'ybaker@example.com', 9, '2025-04-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (19, 'Michael Cross', 'smoore@example.org', 9, '2025-07-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (20, 'Lauren Daniels', 'brian97@example.net', 7, '2024-11-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (21, 'Kim Brown', 'yorkcasey@example.org', 11, '2024-06-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (22, 'Cynthia Wilson', 'bethwilliams@example.org', 3, '2024-02-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (23, 'Kevin Mills', 'james53@example.com', 1, '2024-05-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (24, 'Michael Evans', 'sarah10@example.com', 1, '2024-06-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (25, 'Kristine Garcia', 'williamanderson@example.com', 5, '2024-12-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (26, 'Sherry Wood', 'samueldaniels@example.com', 3, '2024-06-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (27, 'Victoria Valdez', 'contrerasangela@example.net', 3, '2025-01-13'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (28, 'Shawn Baker', 'newtoneric@example.com', 5, '2025-05-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (29, 'Michelle Harris', 'william40@example.org', 2, '2024-04-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (30, 'Sandra Williams', 'kellie42@example.net', 2, '2024-12-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (31, 'Michael Hoffman', 'jonesnicole@example.org', 12, '2024-09-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (32, 'Sandra Aguilar', 'russellwilliams@example.com', 5, '2025-01-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (33, 'Rebecca Valencia', 'jason31@example.com', 8, '2024-03-31'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (34, 'Stacey Russell', 'sarayoung@example.org', 8, '2025-06-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (35, 'Rita Keith', 'whitesandra@example.com', 5, '2024-08-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (36, 'Sharon Cochran', 'erik16@example.org', 2, '2024-03-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (37, 'Courtney Velasquez', 'ybailey@example.org', 5, '2025-07-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (38, 'Matthew Ross', 'michelle45@example.net', 8, '2024-09-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (39, 'Meghan Anthony', 'sheila14@example.org', 2, '2025-03-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (40, 'Victoria Johnson', 'yreed@example.com', 3, '2024-11-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (41, 'William Wilson', 'jonathanfletcher@example.org', 7, '2025-06-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (42, 'Renee Mcdaniel', 'michaeljones@example.net', 6, '2024-10-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (43, 'Lisa Alvarado', 'cortezkevin@example.com', 9, '2024-07-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (44, 'Erika Terry', 'jamesortega@example.com', 1, '2024-07-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (45, 'Stephanie Gilbert', 'richard04@example.com', 6, '2024-12-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (46, 'Richard Lawson', 'steven73@example.net', 6, '2024-02-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (47, 'Steven Flynn', 'donnacampbell@example.net', 8, '2024-10-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (48, 'Frances Cardenas', 'emilywalker@example.org', 2, '2024-08-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (49, 'Angel Riggs', 'gibsonolivia@example.net', 9, '2024-12-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (50, 'Michael Snyder', 'dylanwatts@example.org', 5, '2024-03-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (51, 'Colleen Brock', 'pwilliams@example.org', 6, '2024-12-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (52, 'Robert Contreras', 'stephanie79@example.net', 2, '2025-02-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (53, 'Jessica Meadows', 'vmerritt@example.com', 5, '2024-03-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (54, 'Paul Larsen', 'katie87@example.net', 3, '2024-06-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (55, 'Jeremiah Reeves', 'josephflores@example.net', 6, '2024-10-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (56, 'Chris Reyes', 'jasminebrown@example.com', 6, '2026-01-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (57, 'John Brown', 'xprice@example.net', 6, '2025-03-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (58, 'Alicia Gilmore', 'wwoods@example.com', 2, '2024-06-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (59, 'Sarah Ashley', 'vmedina@example.net', 6, '2024-04-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (60, 'Stephanie Freeman', 'ryan06@example.com', 7, '2024-05-13'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (61, 'Rebecca Ramsey', 'ncalhoun@example.net', 2, '2024-06-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (62, 'James Elliott', 'millerroy@example.com', 7, '2025-01-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (63, 'David Murphy', 'wmurphy@example.com', 10, '2024-07-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (64, 'Trevor Fisher', 'ruizkaitlyn@example.org', 2, '2024-02-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (65, 'Mrs. Marie Harrington DDS', 'herringjames@example.org', 6, '2024-03-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (66, 'Cynthia Wells', 'elliottjeffery@example.net', 2, '2025-03-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (67, 'Jacob Obrien', 'stricklandfrank@example.com', 2, '2024-03-31'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (68, 'Alexander Collins', 'tsanders@example.org', 2, '2024-10-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (69, 'Michael Burton', 'terrykevin@example.net', 1, '2025-11-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (70, 'Barbara Riggs', 'reedross@example.com', 2, '2024-04-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (71, 'Matthew Smith', 'gshort@example.com', 2, '2024-03-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (72, 'Madison Poole', 'ryangross@example.net', 5, '2024-04-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (73, 'Robert Medina', 'umarshall@example.net', 9, '2024-03-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (74, 'Samuel Rivas', 'ramirezshannon@example.com', 3, '2025-05-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (75, 'Mary Rogers', 'lrosales@example.com', 7, '2024-06-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (76, 'Robert Peterson', 'angela83@example.org', 6, '2025-09-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (77, 'Jason Peters', 'hannahbrewer@example.com', 3, '2026-01-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (78, 'Alan Phillips', 'tholt@example.net', 3, '2024-03-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (79, 'Kara Schmidt', 'jbarajas@example.com', 4, '2025-10-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (80, 'Jesse Parker', 'davidlee@example.org', 1, '2024-06-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (81, 'Tiffany Vaughn', 'javierwashington@example.net', 1, '2024-05-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (82, 'Paige Carlson', 'wallkenneth@example.com', 1, '2024-09-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (83, 'Adrian Ferguson', 'brandon08@example.com', 6, '2024-07-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (84, 'Beth Oneill', 'agarcia@example.net', 3, '2024-07-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (85, 'John Peterson', 'kingmichelle@example.org', 8, '2025-03-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (86, 'Jennifer Jones', 'hernandezlisa@example.com', 10, '2024-09-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (87, 'David Grant', 'yobrien@example.net', 7, '2024-04-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (88, 'Joseph Hayes', 'levans@example.com', 1, '2024-03-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (89, 'Marc Lynch', 'mezajared@example.org', 2, '2025-01-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (90, 'Brad Allen', 'moorericky@example.net', 9, '2024-09-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (91, 'Doris Hall', 'jacqueline71@example.net', 6, '2025-03-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (92, 'Dennis Moody', 'ronaldstephens@example.net', 12, '2024-09-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (93, 'Derek Thomas', 'martinkyle@example.net', 6, '2025-04-13'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (94, 'Tammy Gonzales', 'sbarker@example.com', 5, '2024-03-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (95, 'Kathryn Snyder', 'georgepamela@example.net', 4, '2026-02-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (96, 'David Davis', 'keyemily@example.com', 6, '2024-12-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (97, 'Pamela Thompson', 'lmoon@example.net', 8, '2024-10-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (98, 'Robert Costa', 'vbailey@example.com', 6, '2024-05-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (99, 'Shannon Rivera', 'zroberts@example.net', 7, '2025-06-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (100, 'Brandon King', 'cordovarichard@example.net', 12, '2024-08-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (101, 'April Booth', 'mgutierrez@example.net', 3, '2024-04-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (102, 'Peter Garrett', 'harrisandrea@example.com', 2, '2025-03-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (103, 'Michael Martinez', 'jennifercollins@example.org', 2, '2025-06-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (104, 'Anna Gay', 'murraydavid@example.org', 6, '2024-03-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (105, 'Dr. Jordan Hill PhD', 'jsanchez@example.org', 1, '2025-12-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (106, 'Thomas Romero', 'michellehill@example.com', 3, '2025-06-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (107, 'Richard Adams', 'campbellkenneth@example.net', 3, '2024-10-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (108, 'Mary Grimes', 'wryan@example.com', 3, '2024-08-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (109, 'Kimberly Gibson', 'molly39@example.com', 9, '2025-05-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (110, 'Reginald Williams', 'zthornton@example.com', 3, '2024-04-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (111, 'Matthew Hoover', 'tylerjohnson@example.net', 3, '2024-10-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (112, 'Evelyn Garcia', 'dgarcia@example.org', 3, '2025-01-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (113, 'Jennifer Pena', 'charlesharrington@example.com', 1, '2024-07-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (114, 'Michael Santos', 'melissa86@example.com', 2, '2024-03-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (115, 'Stacy Freeman', 'williamsonjimmy@example.net', 4, '2024-10-13'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (116, 'Yolanda Francis', 'wgood@example.net', 1, '2024-11-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (117, 'Ashlee Jackson', 'rebecca05@example.org', 7, '2025-03-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (118, 'James Thomas', 'yknight@example.org', 2, '2025-12-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (119, 'Bob Pitts', 'tyleraguilar@example.org', 3, '2024-04-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (120, 'David Scott', 'nolansteven@example.com', 3, '2024-11-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (121, 'Brooke Alexander', 'vanessa46@example.net', 8, '2024-06-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (122, 'Ryan Gonzalez', 'gcastaneda@example.org', 9, '2024-08-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (123, 'Ian Phillips', 'andrew64@example.org', 9, '2025-06-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (124, 'Melissa Garner', 'lozanojulie@example.com', 2, '2025-07-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (125, 'Crystal Pham', 'danaoliver@example.net', 7, '2024-10-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (126, 'Patricia Becker', 'courtneyberger@example.net', 3, '2024-10-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (127, 'Richard Johnson', 'jessica14@example.com', 3, '2024-08-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (128, 'Casey Anderson', 'alyssa42@example.com', 10, '2025-12-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (129, 'Terry Coffey', 'julie51@example.com', 2, '2024-06-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (130, 'Brenda Levy', 'zcoffey@example.net', 8, '2024-07-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (131, 'Richard Smith', 'gibsonemily@example.net', 6, '2024-08-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (132, 'James Little', 'daniel37@example.org', 7, '2025-12-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (133, 'Terri Murphy', 'deborahreid@example.com', 5, '2024-04-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (134, 'Elizabeth Ortiz', 'brandonjohnson@example.com', 11, '2025-08-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (135, 'David Medina', 'qchavez@example.net', 9, '2024-03-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (136, 'Kimberly Matthews', 'nicolepena@example.com', 4, '2025-04-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (137, 'Teresa Ramirez', 'jeff73@example.com', 3, '2025-11-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (138, 'Michael Stephens', 'bruce43@example.org', 2, '2024-08-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (139, 'Samantha Davis', 'darleneharper@example.org', 7, '2024-03-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (140, 'Gavin Zhang', 'caseyhubbard@example.org', 3, '2025-07-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (141, 'Robin Hall', 'kristinacarlson@example.com', 2, '2025-01-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (142, 'Brianna Anderson', 'lauren10@example.org', 9, '2025-08-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (143, 'Richard Young', 'alfred40@example.org', 1, '2024-06-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (144, 'Kelly Reese', 'xwest@example.net', 6, '2026-01-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (145, 'Jodi Walker', 'acostaregina@example.net', 6, '2025-12-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (146, 'Judith Maynard', 'lutzmelanie@example.com', 8, '2024-10-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (147, 'Katherine Browning', 'lammarc@example.org', 5, '2024-03-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (148, 'Donald Schultz', 'oscar98@example.com', 9, '2024-08-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (149, 'Larry Garcia', 'farrelldebra@example.net', 1, '2024-11-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (150, 'Cindy Hayes', 'robertwilcox@example.com', 5, '2024-05-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (151, 'Brandon Simmons', 'nicholas27@example.org', 2, '2025-01-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (152, 'Bradley Reynolds', 'lisa80@example.net', 3, '2024-04-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (153, 'Kristina Santiago', 'qgomez@example.com', 6, '2024-10-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (154, 'Michelle Schmitt', 'michael98@example.org', 6, '2025-09-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (155, 'John Boone', 'megan51@example.com', 5, '2024-03-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (156, 'Renee Bruce', 'lynchdiane@example.net', 11, '2025-02-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (157, 'Christopher Park', 'sandra50@example.org', 2, '2024-10-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (158, 'Kylie Morales', 'joycebonilla@example.org', 2, '2025-07-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (159, 'Cindy Barnes', 'eric45@example.net', 2, '2024-12-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (160, 'Sophia Moore', 'craigjoseph@example.net', 7, '2024-07-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (161, 'Lawrence Perry', 'kariwilson@example.com', 12, '2024-06-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (162, 'Michael Watkins', 'brandon69@example.org', 7, '2025-05-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (163, 'Eric Clark', 'kathrynroberts@example.org', 12, '2025-07-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (164, 'Paul Thompson', 'opatel@example.net', 10, '2025-01-13'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (165, 'Mary Gomez', 'chensley@example.com', 3, '2024-05-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (166, 'Thomas Atkins', 'tberry@example.net', 3, '2025-05-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (167, 'Brian Smith', 'george97@example.net', 5, '2025-01-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (168, 'Anita Richard', 'ryanmorales@example.org', 4, '2024-07-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (169, 'Eric Morgan', 'kimberly18@example.net', 3, '2024-08-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (170, 'Jordan Bullock', 'michael23@example.org', 2, '2024-07-28'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (171, 'Craig Morrison', 'thompsonkendra@example.com', 1, '2024-04-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (172, 'Justin Riley', 'michelle52@example.com', 6, '2024-11-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (173, 'Jeremy Turner', 'brittany58@example.org', 10, '2024-06-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (174, 'Jesse Brown', 'chase19@example.net', 9, '2025-11-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (175, 'Julie Spencer', 'colelisa@example.net', 2, '2025-06-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (176, 'Larry Mason', 'hayeslisa@example.com', 5, '2024-04-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (177, 'Mrs. Maria Williams', 'hritter@example.net', 12, '2025-11-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (178, 'Helen Hardin', 'vortiz@example.net', 9, '2024-03-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (179, 'Rachel Holland', 'riveraangela@example.com', 2, '2024-11-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (180, 'Nathaniel Douglas', 'mathewaguilar@example.org', 7, '2025-04-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (181, 'Emily Douglas', 'tanderson@example.org', 2, '2025-06-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (182, 'James Conner', 'elizabethcalderon@example.net', 4, '2025-03-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (183, 'Susan Davis DDS', 'andrew42@example.org', 7, '2025-08-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (184, 'Ralph Lee', 'ericphillips@example.org', 7, '2024-06-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (185, 'Kimberly Rodgers', 'stanleynancy@example.net', 2, '2025-09-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (186, 'James Martin', 'jenniferwilliams@example.com', 2, '2024-04-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (187, 'Cynthia Wallace', 'karen73@example.net', 1, '2024-07-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (188, 'Vincent Mueller', 'michealvalentine@example.com', 5, '2024-06-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (189, 'Douglas Reyes', 'mburch@example.net', 6, '2024-10-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (190, 'David Davidson', 'angela18@example.org', 7, '2025-03-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (191, 'Phillip Nelson', 'mariahdavis@example.org', 7, '2025-04-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (192, 'Stacey Arias', 'gbrown@example.com', 2, '2025-02-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (193, 'Zachary Brooks', 'florescory@example.net', 9, '2025-10-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (194, 'Raven Taylor', 'samantha72@example.net', 3, '2024-08-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (195, 'Luis Bullock', 'scottmary@example.net', 1, '2025-07-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (196, 'Lisa Henderson', 'john10@example.org', 3, '2024-08-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (197, 'Riley Bryant', 'copelandvincent@example.net', 11, '2024-03-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (198, 'Jose Allen', 'kellysmith@example.com', 1, '2025-11-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (199, 'Jason Beck', 'millsmichael@example.net', 8, '2025-02-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (200, 'Rachel Romero', 'myerstheodore@example.net', 7, '2025-12-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (201, 'James Burgess', 'kristina53@example.net', 2, '2024-06-13'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (202, 'Ashley Perkins', 'dennis58@example.com', 3, '2024-05-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (203, 'Carrie Maxwell', 'epollard@example.net', 8, '2024-12-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (204, 'Chad Baldwin', 'mjohnson@example.org', 8, '2024-07-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (205, 'Stacey Stewart', 'zachary87@example.com', 3, '2024-02-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (206, 'Matthew Mitchell', 'glennmartin@example.org', 8, '2026-01-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (207, 'Jessica Ross', 'ykline@example.com', 5, '2024-04-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (208, 'Kathleen Jimenez', 'laurie61@example.com', 8, '2024-02-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (209, 'Samantha Gardner', 'curtis54@example.com', 8, '2025-01-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (210, 'Mitchell Jackson', 'cbell@example.net', 2, '2024-03-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (211, 'Heather Bolton', 'danielle01@example.net', 7, '2024-04-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (212, 'Heidi Owen', 'stephaniethomas@example.net', 2, '2025-05-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (213, 'Jessica Martinez', 'kimberlydiaz@example.com', 5, '2024-10-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (214, 'Amanda Hernandez', 'xrush@example.com', 3, '2024-03-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (215, 'Laura Moreno', 'redwards@example.org', 9, '2024-10-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (216, 'Allison Lopez', 'hmcintyre@example.com', 4, '2026-01-31'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (217, 'Michele Lewis', 'heather73@example.org', 9, '2025-03-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (218, 'Benjamin Thompson', 'zosborn@example.net', 6, '2024-03-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (219, 'Victoria Contreras', 'piercekelly@example.com', 3, '2024-04-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (220, 'Michelle Ho', 'laurahicks@example.org', 3, '2025-01-31'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (221, 'Dr. Cynthia Snyder', 'angela57@example.net', 6, '2024-08-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (222, 'Stephen Jones', 'ukey@example.com', 6, '2024-10-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (223, 'Patricia Morrow', 'martinezlogan@example.org', 5, '2025-05-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (224, 'Michael Cooper', 'katrinaanderson@example.net', 3, '2025-02-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (225, 'Amy Martinez', 'kevinmartin@example.net', 8, '2024-09-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (226, 'Travis Stone', 'meghan43@example.net', 9, '2024-08-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (227, 'Denise Weber', 'shawgary@example.net', 6, '2025-04-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (228, 'Matthew Le', 'megan90@example.org', 2, '2025-02-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (229, 'Travis Wise', 'debra96@example.net', 1, '2025-03-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (230, 'Kathleen Burton', 'dawn47@example.org', 5, '2025-07-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (231, 'Melinda Evans', 'barkereric@example.com', 1, '2025-04-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (232, 'Mr. Lawrence Edwards', 'jessica56@example.org', 1, '2024-12-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (233, 'Kayla Rodriguez', 'stevenadams@example.org', 7, '2024-12-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (234, 'Anthony Dougherty', 'kwright@example.com', 6, '2024-08-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (235, 'Michelle Lee', 'tyronerobertson@example.com', 6, '2025-08-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (236, 'Kathleen Davis', 'pwagner@example.org', 6, '2025-01-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (237, 'Amber Campbell', 'amitchell@example.org', 3, '2024-11-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (238, 'Stephen Luna', 'zdiaz@example.org', 2, '2024-06-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (239, 'Chloe Tran', 'hughesshannon@example.net', 3, '2024-08-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (240, 'William Becker', 'andersoncolin@example.com', 8, '2025-06-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (241, 'Gina Mcmillan', 'jameshicks@example.net', 8, '2025-01-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (242, 'Andrew Reeves', 'jstone@example.net', 7, '2024-06-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (243, 'Brenda Velazquez', 'francisco94@example.net', 3, '2025-05-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (244, 'Ronald Patel', 'thomas05@example.com', 11, '2024-02-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (245, 'Veronica Silva', 'carlsonjoseph@example.net', 9, '2024-03-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (246, 'Paula Lane', 'silvageorge@example.net', 5, '2024-03-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (247, 'Patricia James', 'anthonyvaughan@example.org', 6, '2024-09-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (248, 'Jeremy Barnes', 'avaughn@example.net', 2, '2024-07-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (249, 'Tami Salas', 'thorntonapril@example.net', 3, '2025-01-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (250, 'Matthew Fox', 'sue78@example.com', 8, '2024-04-28'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (251, 'Megan Dillon', 'chelsea33@example.com', 7, '2024-03-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (252, 'Courtney Dudley', 'kellie37@example.com', 2, '2024-10-28'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (253, 'Justin Michael', 'keith98@example.com', 2, '2024-05-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (254, 'Jennifer Reed', 'kellyroberts@example.net', 6, '2024-09-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (255, 'Thomas Douglas', 'ilewis@example.com', 3, '2025-01-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (256, 'Melissa Taylor', 'johnsantiago@example.net', 6, '2024-03-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (257, 'David Garcia', 'jennifer12@example.org', 3, '2024-03-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (258, 'Vanessa Moore', 'mwoods@example.com', 1, '2025-05-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (259, 'Matthew Velez', 'pearsonjesse@example.net', 9, '2024-07-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (260, 'Taylor Gentry', 'robertmonroe@example.org', 3, '2024-09-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (261, 'Jennifer Simpson DVM', 'nancy04@example.net', 3, '2025-03-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (262, 'Tanya Rogers', 'ihays@example.net', 7, '2025-06-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (263, 'Todd Rosales MD', 'lisarivera@example.net', 3, '2024-03-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (264, 'David Lopez', 'krystal93@example.org', 1, '2025-07-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (265, 'Margaret Sullivan', 'frobertson@example.com', 7, '2024-09-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (266, 'Cathy Taylor', 'shari04@example.com', 6, '2024-04-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (267, 'Paul Finley', 'brandi90@example.com', 2, '2024-05-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (268, 'Melissa Brown', 'marshallerik@example.net', 12, '2025-07-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (269, 'Stephanie Padilla', 'hannah45@example.net', 4, '2024-09-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (270, 'Tyler Mendoza', 'madkins@example.com', 2, '2025-01-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (271, 'Joshua Ruiz', 'kathleenbecker@example.net', 6, '2025-08-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (272, 'Angela Griffin', 'christian91@example.org', 5, '2024-07-31'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (273, 'Stephanie Harris', 'franklinbond@example.com', 3, '2025-01-31'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (274, 'Daniel Aguilar', 'nolansean@example.org', 5, '2025-09-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (275, 'Jose Bryant', 'hansenemily@example.com', 3, '2025-11-13'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (276, 'Jennifer Velasquez', 'bethwilliams@example.com', 5, '2024-06-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (277, 'Kimberly Brown', 'andersenthomas@example.com', 1, '2024-05-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (278, 'Randy Cannon', 'ybrooks@example.com', 3, '2024-03-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (279, 'Susan Bennett', 'desireebailey@example.org', 12, '2024-10-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (280, 'Jenna Anderson DVM', 'avilatiffany@example.com', 7, '2024-10-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (281, 'Kimberly Patel', 'johnreed@example.com', 11, '2025-07-31'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (282, 'Shaun Cannon', 'pachecorobert@example.org', 5, '2024-10-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (283, 'Austin Wheeler', 'tharper@example.org', 7, '2024-07-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (284, 'Andrew Gonzales', 'karenparsons@example.org', 1, '2024-08-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (285, 'Donna Cabrera', 'barbara53@example.com', 2, '2024-10-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (286, 'Victoria Boyd', 'dturner@example.net', 2, '2024-03-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (287, 'Sheryl Buck', 'dpeters@example.com', 8, '2025-01-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (288, 'Megan Floyd', 'heather62@example.com', 6, '2024-12-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (289, 'Paul Wells', 'kevinzimmerman@example.com', 4, '2024-10-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (290, 'Kristina Faulkner', 'paulscott@example.com', 8, '2024-07-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (291, 'Tammy Boone', 'nicholsmaria@example.org', 5, '2025-11-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (292, 'Michael Morrison', 'lopezkathleen@example.net', 6, '2025-12-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (293, 'Claire Clark', 'kevin03@example.org', 3, '2024-05-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (294, 'Autumn Key', 'srocha@example.net', 2, '2026-01-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (295, 'Jennifer Allen', 'kimberly67@example.net', 7, '2024-04-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (296, 'Elizabeth Ward', 'zowens@example.net', 2, '2024-08-31'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (297, 'Ryan Rocha', 'lawrence09@example.org', 8, '2025-05-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (298, 'Alexis Tran', 'mphillips@example.com', 5, '2024-07-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (299, 'Kelly Sanchez', 'jonathan77@example.com', 6, '2024-07-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (300, 'Robert Jackson', 'iwhite@example.net', 7, '2025-11-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (301, 'Kelly Combs', 'landryelizabeth@example.org', 5, '2024-08-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (302, 'Ryan Hall', 'albertwagner@example.com', 5, '2025-09-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (303, 'Mark Peck', 'bhopkins@example.org', 3, '2025-03-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (304, 'Jennifer Smith', 'amanda40@example.net', 3, '2025-03-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (305, 'Megan Drake', 'danieldavis@example.org', 3, '2024-08-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (306, 'Manuel King', 'joseph61@example.com', 8, '2025-02-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (307, 'Judy Sanchez', 'kevinclayton@example.org', 8, '2025-02-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (308, 'Shannon Malone', 'sullivannicholas@example.com', 2, '2024-02-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (309, 'Adam Jackson', 'pbruce@example.com', 1, '2024-08-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (310, 'Shannon Davis', 'hallrachel@example.net', 8, '2024-06-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (311, 'Karen Williams', 'cohenjuan@example.net', 1, '2024-07-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (312, 'Amanda Mcfarland', 'alexis39@example.org', 8, '2025-02-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (313, 'Michelle Sanders', 'evansanne@example.net', 8, '2025-01-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (314, 'Jasmine Mosley', 'patrick21@example.net', 1, '2025-07-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (315, 'Haley Davis', 'marypeterson@example.net', 8, '2025-04-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (316, 'Jennifer Ayala', 'walterskristen@example.com', 2, '2025-03-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (317, 'Henry Pugh MD', 'nmiller@example.com', 2, '2025-01-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (318, 'Michelle Miller', 'normanbowers@example.org', 9, '2024-06-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (319, 'Emily Rodriguez', 'hahnsean@example.com', 2, '2025-09-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (320, 'Brandon Jordan', 'fgarcia@example.com', 3, '2025-10-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (321, 'Linda Mueller', 'asmith@example.com', 12, '2025-05-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (322, 'Misty Hansen', 'ashleyjackson@example.com', 9, '2025-11-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (323, 'Derrick Adams', 'bryanhamilton@example.com', 8, '2025-08-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (324, 'Richard Ward', 'jennifersimpson@example.net', 2, '2025-08-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (325, 'Brian Torres', 'ncook@example.com', 5, '2025-03-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (326, 'Erin Cook', 'kevinmorrison@example.net', 5, '2024-07-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (327, 'Ernest Oconnell', 'kelly79@example.org', 9, '2024-10-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (328, 'Douglas Hartman', 'daniel93@example.net', 6, '2024-03-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (329, 'Catherine Saunders MD', 'nhahn@example.com', 12, '2025-08-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (330, 'Sandra Jones', 'ichambers@example.net', 12, '2024-03-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (331, 'David Moore', 'emccormick@example.com', 5, '2024-08-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (332, 'Karen Morales DDS', 'ystephens@example.com', 1, '2024-02-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (333, 'Robin Wheeler', 'rodriguezjohn@example.net', 11, '2025-05-28'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (334, 'Matthew Williams', 'vrasmussen@example.com', 2, '2025-09-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (335, 'Brett Walker', 'seanmyers@example.net', 5, '2025-05-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (336, 'Kathryn Cooper', 'webbkenneth@example.org', 7, '2024-02-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (337, 'Todd Thomas', 'matthew38@example.com', 2, '2024-05-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (338, 'Brent Bowen', 'tflores@example.org', 3, '2025-01-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (339, 'Ashley Sweeney', 'byrdfrank@example.net', 2, '2024-06-09'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (340, 'Christopher Moore', 'omullen@example.com', 1, '2024-09-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (341, 'Charlotte Sandoval', 'njohnson@example.org', 9, '2024-03-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (342, 'Jeffrey Smith', 'jamiegoodwin@example.org', 9, '2025-01-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (343, 'Rebecca Herrera', 'mark71@example.com', 3, '2024-12-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (344, 'Katherine Church', 'candice96@example.net', 6, '2024-09-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (345, 'Harold Ellis', 'lisamccarthy@example.com', 5, '2024-12-20'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (346, 'Leslie Powers', 'david41@example.org', 3, '2024-03-23'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (347, 'Charles Price', 'baileyhenderson@example.com', 4, '2025-11-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (348, 'Melissa Brewer', 'angelaburns@example.org', 7, '2024-12-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (349, 'Ryan Harvey', 'stephanie72@example.org', 2, '2024-03-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (350, 'Tracey Wagner', 'fortiz@example.com', 2, '2024-06-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (351, 'Jill Jackson', 'flynnjeffrey@example.org', 1, '2024-08-07'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (352, 'Joshua Jackson', 'xcunningham@example.com', 7, '2024-04-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (353, 'Ashley Wilson', 'amber07@example.net', 6, '2024-04-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (354, 'Jeffery Fitzgerald', 'kennethkidd@example.com', 2, '2025-06-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (355, 'Scott Miller', 'rowejoel@example.net', 3, '2024-10-15'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (356, 'Heather Page', 'imartin@example.org', 7, '2024-05-11'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (357, 'Renee Hudson', 'candice25@example.net', 3, '2025-05-16'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (358, 'Kenneth Farley', 'taylorkaren@example.com', 6, '2024-05-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (359, 'Wendy Camacho', 'jacquelineanderson@example.org', 8, '2024-07-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (360, 'Sandra Juarez', 'kburns@example.net', 2, '2026-01-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (361, 'Jason Hayes', 'powellkara@example.net', 6, '2024-02-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (362, 'Jackie Clements', 'brandi17@example.net', 6, '2024-08-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (363, 'Heather Brown', 'brobinson@example.org', 9, '2024-06-28'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (364, 'Frank Campbell MD', 'ashleewashington@example.com', 9, '2025-08-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (365, 'Pamela Williams', 'ksmith@example.com', 6, '2024-08-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (366, 'William Patterson', 'nicoleturner@example.com', 3, '2024-11-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (367, 'Isaac Miller', 'brettgarrett@example.net', 11, '2025-06-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (368, 'Cynthia Rios', 'smiththomas@example.org', 5, '2024-09-25'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (369, 'Kelly Wallace', 'dominguezlisa@example.com', 10, '2024-12-04'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (370, 'Karen Perez', 'crosscurtis@example.com', 1, '2024-07-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (371, 'Edwin Reyes', 'darlenebyrd@example.org', 2, '2025-01-10'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (372, 'Alejandra Santos', 'nbell@example.net', 3, '2024-10-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (373, 'Tamara Jensen', 'fheath@example.org', 3, '2025-08-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (374, 'Bryce Blair', 'sylvia52@example.org', 2, '2024-06-29'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (375, 'Bradley Tran', 'kimberly04@example.org', 4, '2024-03-18'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (376, 'Katrina Adkins', 'debbie37@example.com', 6, '2024-11-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (377, 'Jonathan Wheeler', 'hatfieldsarah@example.org', 5, '2025-11-06'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (378, 'Ryan Fisher', 'kathrynbest@example.org', 3, '2025-03-03'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (379, 'Austin Baker', 'livingstonstacy@example.com', 1, '2024-03-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (380, 'Lori Mason', 'zhenderson@example.org', 9, '2024-08-17'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (381, 'Kimberly Hernandez', 'collinswilliam@example.org', 4, '2025-01-12'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (382, 'Brittney Murphy', 'collinssamuel@example.org', 6, '2024-08-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (383, 'Brandon Hamilton', 'dsalazar@example.com', 8, '2024-11-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (384, 'Mary Thompson', 'zimmermanjacqueline@example.org', 3, '2024-07-01'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (385, 'Gregory Holmes PhD', 'gary24@example.net', 4, '2025-04-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (386, 'Patricia Johnson', 'enelson@example.com', 6, '2025-09-19'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (387, 'Laura Jones', 'ddixon@example.com', 2, '2025-03-22'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (388, 'Carol Moore', 'shannonemily@example.org', 3, '2024-07-05'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (389, 'Jordan Williams', 'sanchezthomas@example.com', 12, '2024-05-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (390, 'Cassidy Horne', 'tranrobin@example.net', 1, '2024-10-08'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (391, 'Courtney Wright', 'joseph19@example.com', 9, '2026-01-26'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (392, 'Michael Williams', 'lindajarvis@example.com', 9, '2025-02-24'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (393, 'John Campbell', 'mark87@example.org', 7, '2024-12-02'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (394, 'Eddie Mueller', 'stevenvargas@example.com', 8, '2025-03-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (395, 'Dr. Morgan Payne PhD', 'adamortiz@example.org', 10, '2025-05-30'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (396, 'Makayla Steele', 'tapiaaaron@example.net', 5, '2025-12-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (397, 'Oscar Parker', 'alyssaallen@example.com', 8, '2025-05-27'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (398, 'Valerie Thomas', 'christopher38@example.com', 3, '2024-12-21'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (399, 'Jacqueline Villegas', 'carpenterwilliam@example.net', 7, '2024-04-14'); INSERT INTO customers (id, name, email, region_id, created_at) VALUES (400, 'Angela Bradley', 'ibates@example.org', 8, '2024-07-18'); -- Promotions (10-15, code types, end_date > start_date) INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (1, 'SPRINGSALE', 15, '2022-09-15', '2022-11-14'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (2, 'FLASH25', 25, '2024-01-21', '2024-03-17'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (3, 'HOLIDAY2023', 20, '2024-03-27', '2024-05-08'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (4, 'SAVE20', 20, '2022-12-13', '2023-01-29'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (5, 'VIP30', 30, '2024-01-04', '2024-02-17'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (6, 'HOLIDAY2024', 20, '2022-10-15', '2022-11-02'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (7, 'SUMMER2024', 15, '2023-02-04', '2023-04-01'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (8, 'BLACKFRIDAY', 30, '2022-07-26', '2022-08-10'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (9, 'MEMBERS', 10, '2024-04-12', '2024-05-16'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (10, 'WELCOME10', 10, '2022-05-01', '2022-06-09'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (11, 'SUMMER2023', 15, '2023-11-11', '2023-11-21'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (12, 'CYBERMONDAY', 25, '2022-04-07', '2022-06-06'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (13, 'FALLSALE', 15, '2022-04-04', '2022-04-18'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (14, 'NEWYEAR', 15, '2023-02-01', '2023-03-13'); INSERT INTO promotions (id, code, discount_pct, start_date, end_date) VALUES (15, 'WELCOME', 10, '2022-10-04', '2022-10-20'); -- Sales (2000, seasonality Nov/Dec, quantity 1-3 dominant, amount = base_price * quantity, optional promo) INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1, 156, 43, 1, 103.33, '2025-12-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (2, 266, 73, 3, 320.19, '2024-08-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (3, 283, 71, 1, 58.32, '2024-09-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (4, 258, 165, 1, 6.83, '2025-12-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (5, 338, 160, 3, 121.47, '2025-04-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (6, 289, 11, 3, 1887.98, '2024-03-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (7, 329, 148, 1, 189.58, '2024-07-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (8, 317, 164, 1, 28.28, '2025-11-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (9, 329, 78, 2, 147.5, '2025-09-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (10, 153, 117, 1, 5.34, '2024-03-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (11, 248, 119, 1, 46.97, '2025-05-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (12, 368, 82, 3, 164.13, '2025-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (13, 67, 95, 2, 151.58, '2024-05-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (14, 63, 69, 2, 303.18, '2024-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (15, 197, 158, 2, 108.2, '2026-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (16, 168, 148, 3, 568.74, '2024-07-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (17, 264, 120, 2, 11.84, '2024-10-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (18, 202, 130, 2, 81.02, '2024-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (19, 25, 13, 1, 422.45, '2025-04-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (20, 345, 121, 1, 68.15, '2024-02-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (21, 69, 68, 3, 329.85, '2025-08-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (22, 206, 14, 2, 1616.8, '2024-07-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (23, 38, 99, 2, 112.44, '2025-08-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (24, 320, 175, 3, 51.69, '2024-05-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (25, 192, 87, 2, 178.04, '2024-11-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (26, 309, 131, 2, 14.46, '2024-03-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (27, 366, 86, 3, 169.59, '2025-02-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (28, 264, 36, 2, 168.32, '2025-05-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (29, 316, 77, 2, 207.02, '2025-02-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (30, 251, 182, 2, 11.44, '2025-01-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (31, 170, 173, 1, 23.91, '2024-12-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (32, 372, 177, 3, 125.61, '2025-04-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (33, 336, 149, 2, 292.3, '2025-07-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (34, 88, 135, 3, 9.42, '2025-05-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (35, 76, 175, 1, 17.23, '2025-04-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (36, 98, 5, 2, 831.0, '2024-12-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (37, 105, 106, 2, 142.62, '2025-05-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (38, 377, 16, 3, 1143.72, '2025-02-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (39, 340, 123, 2, 38.14, '2024-10-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (40, 273, 88, 2, 85.28, '2025-06-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (41, 349, 165, 3, 20.49, '2024-08-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (42, 127, 72, 2, 200.86, '2024-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (43, 153, 74, 3, 418.05, '2025-07-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (44, 246, 90, 2, 89.0, '2025-12-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (45, 148, 32, 2, 108.86, '2025-03-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (46, 203, 89, 7, 636.51, '2025-09-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (47, 148, 183, 1, 15.04, '2025-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (48, 383, 123, 1, 19.07, '2025-10-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (49, 288, 179, 1, 14.44, '2024-05-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (50, 123, 63, 1, 127.95, '2025-12-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (51, 120, 14, 1, 808.4, '2024-10-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (52, 349, 36, 1, 84.16, '2025-03-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (53, 209, 168, 6, 353.28, '2025-11-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (54, 103, 74, 2, 278.7, '2025-05-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (55, 46, 167, 2, 72.16, '2025-03-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (56, 20, 45, 2, 288.0, '2025-10-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (57, 19, 102, 3, 224.67, '2024-07-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (58, 149, 10, 1, 2053.38, '2025-04-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (59, 172, 73, 2, 213.46, '2025-05-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (60, 69, 130, 2, 81.02, '2024-07-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (61, 84, 118, 3, 294.24, '2025-07-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (62, 173, 76, 2, 137.02, '2025-08-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (63, 328, 104, 3, 39.81, '2025-02-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (64, 343, 25, 1, 763.07, '2024-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (65, 128, 2, 1, 520.94, '2024-08-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (66, 169, 78, 2, 147.5, '2025-04-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (67, 185, 178, 1, 45.07, '2025-06-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (68, 82, 104, 3, 39.81, '2025-12-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (69, 395, 80, 3, 46.68, '2025-05-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (70, 189, 158, 1, 54.1, '2026-01-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (71, 233, 156, 2, 135.06, '2025-07-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (72, 388, 138, 3, 103.86, '2025-10-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (73, 349, 153, 3, 109.59, '2024-04-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (74, 361, 93, 1, 12.93, '2025-03-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (75, 281, 130, 1, 40.51, '2025-03-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (76, 267, 114, 1, 70.31, '2024-07-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (77, 47, 131, 2, 19.28, '2024-03-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (78, 213, 117, 2, 10.68, '2025-03-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (79, 158, 6, 2, 3169.28, '2025-10-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (80, 297, 19, 1, 1720.91, '2024-10-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (81, 31, 18, 10, 6422.6, '2025-01-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (82, 93, 35, 3, 201.18, '2026-01-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (83, 216, 96, 10, 496.8, '2024-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (84, 194, 97, 1, 13.9, '2026-01-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (85, 69, 168, 3, 176.64, '2024-05-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (86, 202, 136, 1, 17.76, '2026-01-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (87, 388, 6, 9, 14261.76, '2025-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (88, 218, 137, 2, 30.8, '2024-08-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (89, 80, 71, 1, 58.32, '2025-11-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (90, 17, 170, 2, 86.6, '2025-08-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (91, 9, 62, 1, 51.46, '2024-04-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (92, 307, 173, 3, 71.73, '2024-03-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (93, 206, 113, 1, 62.46, '2024-07-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (94, 29, 36, 2, 168.32, '2024-09-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (95, 375, 148, 2, 379.16, '2025-04-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (96, 165, 61, 2, 326.88, '2024-05-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (97, 114, 106, 2, 142.62, '2024-03-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (98, 377, 45, 3, 432.0, '2024-12-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (99, 177, 165, 3, 20.49, '2025-09-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (100, 214, 105, 1, 27.09, '2024-11-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (101, 243, 62, 3, 192.96, '2024-09-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (102, 238, 15, 2, 2513.36, '2026-01-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (103, 69, 100, 1, 27.12, '2024-07-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (104, 231, 95, 1, 75.79, '2025-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (105, 138, 97, 3, 41.7, '2025-04-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (106, 97, 151, 3, 106.89, '2025-03-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (107, 171, 78, 7, 516.25, '2024-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (108, 380, 31, 3, 5122.53, '2025-08-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (109, 357, 155, 3, 143.04, '2024-12-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (110, 165, 73, 2, 213.46, '2025-03-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (111, 134, 93, 2, 25.86, '2025-02-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (112, 370, 121, 3, 272.61, '2024-10-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (113, 161, 106, 1, 71.31, '2025-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (114, 9, 67, 2, 229.96, '2025-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (115, 152, 40, 1, 52.68, '2024-08-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (116, 126, 128, 2, 97.72, '2025-12-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (117, 391, 126, 8, 118.16, '2025-05-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (118, 87, 91, 1, 62.45, '2025-07-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (119, 278, 165, 8, 54.64, '2025-02-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (120, 39, 172, 1, 3.31, '2024-02-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (121, 323, 60, 1, 66.43, '2024-06-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (122, 234, 96, 1, 49.68, '2025-05-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (123, 248, 169, 2, 27.42, '2024-02-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (124, 7, 5, 2, 831.0, '2024-09-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (125, 9, 129, 3, 9.57, '2025-06-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (126, 92, 28, 5, 10450.75, '2025-02-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (127, 318, 135, 1, 3.14, '2024-11-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (128, 41, 96, 8, 397.44, '2025-01-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (129, 357, 58, 1, 174.12, '2025-10-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (130, 333, 9, 1, 2061.69, '2024-11-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (131, 29, 164, 1, 28.28, '2024-06-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (132, 223, 166, 3, 152.55, '2025-03-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (133, 49, 136, 5, 88.8, '2024-08-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (134, 355, 146, 2, 333.56, '2024-03-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (135, 144, 140, 2, 489.64, '2024-03-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (136, 162, 5, 8, 3324.0, '2025-04-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (137, 365, 102, 6, 449.34, '2024-09-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (138, 291, 100, 3, 81.36, '2025-03-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (139, 379, 36, 3, 252.48, '2025-07-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (140, 382, 89, 1, 90.93, '2024-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (141, 175, 155, 3, 143.04, '2026-01-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (142, 397, 84, 1, 51.69, '2024-09-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (143, 252, 59, 2, 270.88, '2025-12-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (144, 349, 150, 3, 1089.06, '2024-04-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (145, 127, 183, 1, 15.04, '2024-09-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (146, 325, 40, 3, 158.04, '2024-10-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (147, 3, 79, 2, 197.76, '2025-08-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (148, 45, 48, 2, 95.64, '2025-03-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (149, 53, 7, 1, 1846.85, '2025-03-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (150, 167, 99, 1, 56.22, '2024-12-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (151, 372, 144, 4, 690.08, '2026-01-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (152, 87, 176, 2, 82.24, '2024-05-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (153, 253, 38, 1, 74.88, '2024-12-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (154, 248, 20, 2, 4334.46, '2025-12-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (155, 254, 153, 3, 109.59, '2025-01-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (156, 4, 102, 2, 149.78, '2025-05-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (157, 169, 113, 2, 124.92, '2025-10-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (158, 305, 35, 2, 134.12, '2025-04-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (159, 246, 81, 1, 116.59, '2024-12-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (160, 377, 178, 3, 135.21, '2026-01-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (161, 167, 97, 1, 13.9, '2025-09-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (162, 289, 52, 2, 109.02, '2025-03-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (163, 282, 7, 7, 12927.95, '2025-01-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (164, 225, 75, 3, 286.38, '2024-04-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (165, 210, 173, 2, 47.82, '2025-05-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (166, 338, 40, 3, 158.04, '2025-09-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (167, 307, 123, 2, 38.14, '2025-03-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (168, 355, 108, 2, 59.56, '2025-09-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (169, 275, 153, 3, 109.59, '2024-04-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (170, 337, 171, 2, 25.0, '2025-06-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (171, 331, 174, 3, 82.47, '2026-01-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (172, 221, 28, 1, 2090.15, '2024-08-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (173, 266, 143, 2, 508.6, '2025-04-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (174, 201, 119, 3, 140.91, '2025-04-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (175, 177, 7, 2, 3693.7, '2024-09-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (176, 44, 30, 3, 6646.95, '2025-08-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (177, 176, 117, 3, 16.02, '2025-02-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (178, 50, 113, 3, 187.38, '2025-01-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (179, 23, 182, 1, 5.72, '2025-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (180, 347, 43, 6, 619.98, '2025-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (181, 283, 41, 2, 216.88, '2024-12-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (182, 208, 162, 1, 52.47, '2025-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (183, 15, 158, 3, 162.3, '2025-01-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (184, 3, 181, 1, 32.08, '2024-09-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (185, 33, 148, 1, 189.58, '2025-11-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (186, 167, 51, 2, 66.92, '2024-08-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (187, 271, 164, 2, 56.56, '2024-11-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (188, 59, 90, 2, 89.0, '2025-01-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (189, 345, 181, 3, 96.24, '2025-12-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (190, 345, 35, 2, 134.12, '2024-08-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (191, 192, 178, 1, 45.07, '2024-11-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (192, 295, 99, 2, 112.44, '2025-01-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (193, 331, 45, 2, 288.0, '2025-02-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (194, 162, 116, 3, 195.78, '2025-11-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (195, 249, 35, 1, 67.06, '2024-11-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (196, 335, 127, 2, 195.02, '2025-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (197, 228, 126, 1, 14.77, '2025-03-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (198, 113, 75, 1, 95.46, '2024-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (199, 400, 118, 2, 196.16, '2025-09-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (200, 262, 29, 2, 1631.6, '2024-09-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (201, 188, 139, 3, 141.24, '2024-03-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (202, 280, 56, 10, 1238.6, '2024-04-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (203, 385, 64, 1, 63.54, '2026-02-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (204, 179, 23, 2, 1628.1, '2026-02-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (205, 122, 54, 3, 285.57, '2025-04-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (206, 364, 157, 3, 62.28, '2024-06-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (207, 106, 53, 3, 513.75, '2025-04-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (208, 306, 138, 1, 34.62, '2026-01-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (209, 294, 69, 7, 1061.13, '2025-02-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (210, 49, 35, 8, 536.48, '2025-09-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (211, 142, 168, 1, 58.88, '2025-11-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (212, 365, 83, 3, 315.33, '2025-08-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (213, 251, 37, 2, 79.74, '2024-09-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (214, 232, 20, 3, 6501.69, '2025-11-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (215, 264, 72, 3, 301.29, '2025-11-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (216, 250, 84, 2, 103.38, '2025-11-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (217, 48, 118, 3, 294.24, '2025-07-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (218, 274, 102, 1, 74.89, '2024-12-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (219, 138, 83, 3, 315.33, '2024-10-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (220, 290, 125, 3, 74.88, '2025-11-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (221, 24, 26, 3, 2462.64, '2025-10-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (222, 81, 113, 2, 124.92, '2026-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (223, 353, 34, 3, 288.0, '2024-09-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (224, 141, 24, 3, 4981.35, '2024-08-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (225, 333, 43, 1, 103.33, '2025-05-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (226, 387, 60, 2, 106.29, '2024-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (227, 110, 123, 1, 19.07, '2025-04-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (228, 228, 3, 1, 1903.54, '2024-10-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (229, 217, 178, 1, 45.07, '2024-04-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (230, 375, 27, 1, 1774.61, '2024-11-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (231, 196, 35, 3, 201.18, '2025-06-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (232, 289, 3, 3, 5710.62, '2024-06-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (233, 110, 161, 3, 34.08, '2025-12-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (234, 227, 56, 1, 123.86, '2024-04-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (235, 302, 99, 2, 112.44, '2024-12-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (236, 127, 71, 3, 174.96, '2024-08-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (237, 370, 156, 1, 67.53, '2025-12-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (238, 338, 78, 1, 73.75, '2025-05-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (239, 201, 76, 3, 205.53, '2025-09-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (240, 123, 127, 2, 195.02, '2024-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (241, 37, 136, 3, 53.28, '2024-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (242, 163, 34, 2, 192.0, '2025-10-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (243, 280, 175, 1, 17.23, '2025-01-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (244, 38, 5, 2, 831.0, '2024-02-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (245, 31, 102, 2, 149.78, '2025-05-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (246, 213, 109, 3, 168.27, '2024-04-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (247, 316, 40, 1, 52.68, '2024-10-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (248, 105, 40, 2, 105.36, '2024-11-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (249, 333, 175, 3, 51.69, '2024-10-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (250, 123, 15, 1, 1256.68, '2025-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (251, 314, 156, 1, 67.53, '2025-06-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (252, 90, 31, 1, 1707.51, '2024-05-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (253, 255, 89, 2, 181.86, '2025-09-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (254, 86, 96, 1, 49.68, '2025-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (255, 61, 8, 2, 1414.02, '2024-12-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (256, 135, 183, 9, 135.36, '2025-05-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (257, 262, 93, 1, 12.93, '2025-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (258, 81, 66, 3, 550.35, '2025-11-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (259, 60, 59, 3, 406.32, '2024-02-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (260, 7, 63, 1, 127.95, '2024-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (261, 92, 10, 2, 4106.76, '2025-12-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (262, 215, 58, 2, 348.24, '2024-12-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (263, 139, 20, 2, 4334.46, '2024-05-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (264, 27, 46, 1, 119.06, '2025-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (265, 206, 18, 3, 1926.78, '2025-11-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (266, 160, 84, 1, 51.69, '2025-01-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (267, 150, 145, 3, 372.75, '2025-08-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (268, 189, 152, 9, 244.53, '2026-02-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (269, 376, 140, 3, 734.46, '2024-08-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (270, 210, 7, 1, 1846.85, '2024-11-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (271, 5, 86, 1, 56.53, '2025-06-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (272, 373, 79, 1, 98.88, '2025-03-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (273, 252, 16, 9, 3431.16, '2024-05-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (274, 23, 60, 3, 199.29, '2025-02-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (275, 191, 118, 9, 706.18, '2024-04-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (276, 69, 164, 3, 84.84, '2024-04-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (277, 223, 170, 8, 346.4, '2024-08-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (278, 162, 101, 3, 163.44, '2025-08-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (279, 140, 60, 1, 66.43, '2024-07-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (280, 300, 28, 1, 2090.15, '2024-06-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (281, 209, 31, 2, 3415.02, '2026-01-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (282, 158, 119, 1, 46.97, '2024-05-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (283, 352, 78, 3, 221.25, '2025-07-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (284, 168, 38, 1, 74.88, '2024-08-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (285, 263, 13, 3, 1267.35, '2024-08-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (286, 16, 104, 3, 39.81, '2025-03-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (287, 49, 119, 1, 46.97, '2025-09-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (288, 32, 57, 1, 58.73, '2025-10-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (289, 323, 166, 1, 50.85, '2025-04-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (290, 39, 6, 10, 15846.4, '2024-07-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (291, 66, 24, 4, 6641.8, '2025-10-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (292, 22, 119, 1, 46.97, '2025-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (293, 371, 102, 2, 149.78, '2024-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (294, 182, 55, 4, 411.6, '2024-09-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (295, 77, 9, 3, 6185.07, '2025-05-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (296, 256, 106, 3, 213.93, '2025-01-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (297, 197, 36, 2, 168.32, '2025-05-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (298, 128, 162, 10, 524.7, '2025-03-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (299, 196, 183, 2, 30.08, '2025-03-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (300, 290, 129, 2, 6.38, '2024-09-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (301, 306, 57, 1, 58.73, '2025-10-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (302, 242, 136, 2, 35.52, '2025-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (303, 82, 26, 1, 820.88, '2024-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (304, 378, 15, 3, 3770.04, '2025-12-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (305, 199, 91, 6, 374.7, '2026-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (306, 122, 152, 2, 54.34, '2025-08-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (307, 303, 8, 3, 2121.03, '2024-11-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (308, 73, 145, 7, 869.75, '2025-10-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (309, 253, 139, 2, 94.16, '2025-02-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (310, 120, 155, 1, 47.68, '2025-03-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (311, 315, 52, 3, 163.53, '2024-10-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (312, 166, 16, 1, 381.24, '2025-04-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (313, 397, 29, 3, 2447.4, '2025-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (314, 192, 181, 6, 192.48, '2024-11-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (315, 155, 83, 1, 105.11, '2024-06-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (316, 328, 125, 3, 74.88, '2024-06-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (317, 356, 158, 3, 162.3, '2024-07-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (318, 90, 97, 2, 27.8, '2025-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (319, 374, 1, 7, 13338.99, '2025-12-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (320, 395, 146, 1, 222.37, '2025-04-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (321, 314, 57, 3, 176.19, '2024-04-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (322, 170, 20, 1, 2167.23, '2026-01-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (323, 46, 182, 3, 17.16, '2025-08-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (324, 6, 68, 1, 109.95, '2025-07-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (325, 56, 1, 1, 1905.57, '2024-12-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (326, 86, 106, 2, 142.62, '2024-11-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (327, 52, 123, 3, 57.21, '2025-04-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (328, 116, 42, 2, 270.04, '2025-09-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (329, 11, 82, 1, 54.71, '2024-04-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (330, 193, 42, 3, 405.06, '2025-03-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (331, 48, 87, 2, 178.04, '2025-05-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (332, 16, 111, 6, 95.82, '2024-06-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (333, 81, 14, 1, 808.4, '2024-07-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (334, 357, 142, 3, 898.68, '2025-08-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (335, 145, 77, 1, 103.51, '2024-03-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (336, 252, 40, 1, 39.51, '2024-02-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (337, 339, 161, 3, 34.08, '2024-07-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (338, 88, 164, 1, 28.28, '2024-04-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (339, 158, 102, 2, 149.78, '2025-11-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (340, 329, 140, 2, 489.64, '2024-11-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (341, 96, 115, 1, 51.41, '2024-12-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (342, 138, 145, 1, 124.25, '2025-08-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (343, 44, 172, 2, 8.82, '2025-03-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (344, 302, 59, 2, 270.88, '2025-10-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (345, 215, 138, 3, 103.86, '2025-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (346, 121, 122, 1, 84.29, '2024-11-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (347, 18, 129, 2, 6.38, '2025-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (348, 318, 38, 1, 74.88, '2025-08-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (349, 86, 55, 3, 308.7, '2024-05-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (350, 350, 112, 1, 57.56, '2025-10-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (351, 305, 67, 2, 229.96, '2025-08-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (352, 45, 100, 2, 54.24, '2025-03-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (353, 267, 118, 5, 490.4, '2024-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (354, 301, 134, 3, 39.96, '2024-05-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (355, 291, 151, 2, 71.26, '2026-01-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (356, 55, 145, 3, 372.75, '2025-09-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (357, 177, 106, 1, 71.31, '2025-06-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (358, 243, 10, 1, 2053.38, '2024-12-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (359, 349, 178, 2, 90.14, '2024-11-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (360, 354, 61, 1, 163.44, '2025-01-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (361, 191, 6, 2, 3169.28, '2025-09-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (362, 252, 179, 3, 43.32, '2026-01-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (363, 154, 114, 3, 210.93, '2024-10-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (364, 310, 166, 1, 50.85, '2024-12-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (365, 209, 125, 3, 74.88, '2025-11-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (366, 264, 41, 1, 108.44, '2025-07-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (367, 400, 135, 3, 9.42, '2024-03-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (368, 103, 15, 1, 1256.68, '2025-01-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (369, 361, 51, 1, 33.46, '2025-10-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (370, 326, 32, 3, 163.29, '2024-08-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (371, 229, 46, 8, 952.48, '2025-01-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (372, 177, 42, 3, 405.06, '2024-08-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (373, 47, 73, 1, 106.73, '2024-03-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (374, 400, 55, 3, 308.7, '2025-06-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (375, 138, 167, 2, 72.16, '2024-02-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (376, 393, 175, 1, 17.23, '2025-12-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (377, 308, 3, 1, 1903.54, '2025-05-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (378, 365, 182, 3, 17.16, '2024-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (379, 179, 118, 1, 98.08, '2025-01-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (380, 320, 102, 2, 149.78, '2024-02-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (381, 192, 144, 3, 517.56, '2025-05-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (382, 56, 124, 1, 34.28, '2026-01-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (383, 142, 67, 3, 344.94, '2026-01-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (384, 97, 39, 2, 139.22, '2024-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (385, 308, 104, 3, 39.81, '2025-06-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (386, 336, 128, 10, 488.6, '2024-08-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (387, 199, 10, 2, 4106.76, '2026-02-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (388, 176, 183, 1, 15.04, '2025-03-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (389, 344, 92, 2, 154.36, '2025-10-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (390, 286, 47, 1, 133.17, '2025-01-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (391, 372, 144, 3, 517.56, '2024-06-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (392, 172, 168, 1, 58.88, '2024-11-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (393, 158, 108, 3, 89.34, '2024-10-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (394, 151, 119, 3, 140.91, '2025-01-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (395, 299, 149, 7, 1023.05, '2024-04-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (396, 257, 31, 3, 5122.53, '2024-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (397, 28, 39, 1, 69.61, '2024-07-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (398, 292, 118, 1, 98.08, '2025-11-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (399, 42, 125, 2, 49.92, '2026-01-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (400, 30, 2, 2, 1041.88, '2024-07-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (401, 296, 41, 2, 216.88, '2025-08-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (402, 315, 112, 3, 172.68, '2024-12-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (403, 197, 2, 1, 520.94, '2024-07-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (404, 8, 83, 3, 315.33, '2025-03-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (405, 3, 161, 3, 34.08, '2024-08-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (406, 160, 34, 1, 96.0, '2025-02-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (407, 34, 12, 1, 974.17, '2024-09-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (408, 306, 135, 2, 6.28, '2025-11-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (409, 176, 126, 2, 29.54, '2024-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (410, 207, 5, 1, 415.5, '2025-08-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (411, 376, 6, 2, 3169.28, '2024-06-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (412, 334, 10, 2, 4106.76, '2025-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (413, 320, 13, 2, 633.67, '2024-03-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (414, 11, 13, 3, 1267.35, '2024-12-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (415, 281, 65, 2, 270.88, '2024-06-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (416, 323, 3, 2, 3807.08, '2025-06-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (417, 139, 160, 3, 121.47, '2024-05-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (418, 54, 131, 3, 26.03, '2024-05-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (419, 55, 128, 1, 48.86, '2024-07-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (420, 268, 52, 2, 109.02, '2024-12-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (421, 281, 128, 4, 195.44, '2025-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (422, 121, 1, 1, 1524.46, '2024-04-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (423, 294, 172, 2, 8.82, '2026-01-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (424, 39, 26, 4, 3283.52, '2025-05-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (425, 152, 68, 2, 219.9, '2024-04-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (426, 21, 75, 2, 190.92, '2025-06-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (427, 60, 25, 3, 2289.21, '2025-11-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (428, 71, 170, 3, 129.9, '2024-10-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (429, 319, 69, 3, 454.77, '2024-04-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (430, 94, 30, 2, 4431.3, '2026-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (431, 198, 177, 3, 125.61, '2025-09-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (432, 86, 29, 1, 815.8, '2025-08-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (433, 82, 27, 2, 3549.22, '2025-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (434, 348, 113, 1, 62.46, '2024-11-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (435, 15, 176, 3, 123.36, '2025-08-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (436, 248, 125, 1, 24.96, '2024-12-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (437, 134, 168, 2, 117.76, '2025-07-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (438, 393, 148, 3, 568.74, '2024-07-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (439, 174, 133, 2, 23.16, '2025-07-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (440, 339, 64, 2, 127.08, '2025-06-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (441, 77, 143, 3, 762.9, '2025-05-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (442, 81, 130, 3, 121.53, '2025-11-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (443, 39, 126, 2, 29.54, '2024-10-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (444, 260, 58, 2, 348.24, '2024-11-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (445, 41, 118, 2, 196.16, '2025-04-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (446, 256, 115, 2, 102.82, '2026-01-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (447, 10, 27, 2, 3549.22, '2024-03-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (448, 47, 155, 8, 381.44, '2025-05-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (449, 288, 53, 3, 513.75, '2025-01-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (450, 28, 58, 3, 522.36, '2024-10-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (451, 308, 122, 3, 252.87, '2024-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (452, 50, 169, 1, 13.71, '2024-10-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (453, 150, 141, 2, 140.22, '2025-07-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (454, 85, 127, 1, 97.51, '2025-07-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (455, 55, 66, 3, 550.35, '2024-07-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (456, 202, 56, 2, 247.72, '2025-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (457, 56, 107, 1, 19.36, '2025-05-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (458, 64, 116, 2, 130.52, '2025-04-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (459, 256, 2, 2, 1041.88, '2024-03-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (460, 300, 124, 5, 171.4, '2025-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (461, 355, 149, 1, 146.15, '2025-10-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (462, 337, 154, 3, 183.33, '2024-10-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (463, 215, 156, 5, 337.65, '2025-08-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (464, 176, 76, 2, 137.02, '2024-05-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (465, 359, 132, 1, 43.86, '2025-07-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (466, 365, 142, 3, 898.68, '2024-07-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (467, 149, 176, 2, 82.24, '2025-06-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (468, 333, 46, 2, 238.12, '2025-07-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (469, 60, 91, 2, 124.9, '2025-04-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (470, 364, 107, 3, 58.08, '2025-11-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (471, 217, 4, 2, 2337.2, '2024-02-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (472, 344, 15, 1, 1256.68, '2025-08-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (473, 147, 175, 1, 17.23, '2025-10-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (474, 152, 53, 3, 513.75, '2024-03-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (475, 53, 158, 3, 162.3, '2025-08-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (476, 381, 166, 2, 101.7, '2024-08-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (477, 357, 74, 3, 418.05, '2024-03-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (478, 214, 176, 2, 82.24, '2025-03-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (479, 129, 52, 3, 163.53, '2025-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (480, 116, 163, 3, 199.14, '2025-06-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (481, 280, 155, 1, 47.68, '2025-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (482, 230, 46, 9, 1071.54, '2024-04-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (483, 377, 132, 1, 43.86, '2024-03-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (484, 136, 34, 1, 96.0, '2025-11-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (485, 239, 182, 6, 34.32, '2024-03-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (486, 306, 14, 3, 2425.2, '2025-05-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (487, 155, 126, 3, 44.31, '2025-03-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (488, 363, 82, 2, 109.42, '2026-01-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (489, 259, 41, 2, 216.88, '2025-03-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (490, 114, 55, 3, 308.7, '2024-10-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (491, 386, 159, 2, 76.32, '2026-02-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (492, 333, 3, 1, 1903.54, '2024-11-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (493, 329, 158, 5, 270.5, '2024-08-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (494, 165, 98, 5, 228.2, '2025-12-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (495, 277, 73, 1, 106.73, '2025-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (496, 264, 131, 2, 19.28, '2024-03-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (497, 99, 83, 2, 210.22, '2025-12-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (498, 396, 138, 2, 69.24, '2025-05-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (499, 323, 55, 3, 308.7, '2024-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (500, 276, 180, 3, 45.93, '2025-08-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (501, 37, 176, 1, 41.12, '2025-01-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (502, 45, 19, 1, 1720.91, '2025-09-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (503, 295, 59, 4, 541.76, '2024-12-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (504, 208, 111, 2, 31.94, '2024-11-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (505, 4, 165, 3, 20.49, '2024-03-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (506, 24, 180, 3, 45.93, '2024-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (507, 149, 176, 2, 82.24, '2024-04-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (508, 225, 98, 2, 91.28, '2025-06-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (509, 274, 57, 1, 58.73, '2024-11-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (510, 280, 76, 8, 548.08, '2024-05-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (511, 374, 166, 2, 101.7, '2026-01-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (512, 285, 37, 1, 39.87, '2024-02-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (513, 276, 141, 7, 490.77, '2024-09-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (514, 372, 89, 1, 90.93, '2025-12-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (515, 73, 42, 1, 135.02, '2025-05-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (516, 59, 47, 3, 399.51, '2025-04-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (517, 385, 141, 2, 140.22, '2025-03-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (518, 35, 65, 1, 135.44, '2025-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (519, 170, 92, 1, 77.18, '2025-06-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (520, 318, 18, 4, 2569.04, '2024-10-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (521, 316, 169, 2, 27.42, '2025-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (522, 187, 81, 8, 932.72, '2024-06-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (523, 114, 183, 3, 45.12, '2024-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (524, 69, 174, 3, 82.47, '2025-11-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (525, 184, 79, 2, 197.76, '2024-05-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (526, 42, 72, 3, 301.29, '2024-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (527, 135, 161, 1, 9.09, '2024-04-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (528, 260, 162, 1, 52.47, '2025-04-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (529, 303, 55, 4, 411.6, '2025-03-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (530, 277, 121, 3, 272.61, '2024-06-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (531, 396, 151, 3, 106.89, '2024-09-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (532, 262, 24, 2, 3320.9, '2025-02-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (533, 315, 176, 1, 41.12, '2025-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (534, 92, 145, 7, 869.75, '2025-06-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (535, 377, 124, 6, 205.68, '2024-03-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (536, 119, 17, 1, 1622.6, '2024-08-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (537, 266, 93, 2, 25.86, '2025-12-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (538, 21, 167, 2, 72.16, '2025-07-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (539, 141, 68, 2, 219.9, '2025-04-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (540, 194, 94, 2, 140.1, '2025-12-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (541, 129, 97, 9, 125.1, '2024-07-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (542, 177, 125, 3, 74.88, '2025-11-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (543, 72, 113, 1, 62.46, '2024-04-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (544, 109, 39, 1, 69.61, '2024-11-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (545, 61, 170, 1, 43.3, '2025-10-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (546, 247, 173, 2, 47.82, '2024-07-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (547, 211, 6, 1, 1584.64, '2024-05-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (548, 69, 162, 2, 104.94, '2025-11-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (549, 86, 67, 5, 574.9, '2025-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (550, 289, 164, 1, 28.28, '2025-07-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (551, 146, 22, 1, 1051.42, '2025-05-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (552, 247, 44, 1, 76.52, '2024-12-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (553, 299, 47, 3, 399.51, '2025-02-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (554, 352, 88, 5, 213.2, '2025-04-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (555, 194, 99, 1, 56.22, '2024-02-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (556, 259, 176, 2, 82.24, '2024-06-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (557, 244, 158, 2, 108.2, '2025-11-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (558, 386, 31, 1, 1707.51, '2025-06-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (559, 277, 1, 3, 5716.71, '2025-09-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (560, 268, 108, 2, 59.56, '2024-03-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (561, 118, 124, 3, 102.84, '2024-11-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (562, 380, 179, 2, 28.88, '2024-12-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (563, 393, 60, 4, 265.72, '2024-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (564, 279, 105, 1, 27.09, '2024-02-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (565, 4, 148, 2, 379.16, '2025-02-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (566, 106, 177, 3, 125.61, '2024-12-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (567, 219, 167, 2, 72.16, '2024-08-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (568, 290, 94, 3, 210.15, '2026-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (569, 105, 106, 2, 142.62, '2025-03-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (570, 287, 143, 2, 508.6, '2026-01-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (571, 397, 181, 2, 64.16, '2024-05-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (572, 61, 59, 2, 270.88, '2025-07-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (573, 110, 131, 2, 19.28, '2024-10-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (574, 357, 176, 3, 123.36, '2024-06-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (575, 3, 24, 3, 4981.35, '2025-01-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (576, 46, 17, 1, 1622.6, '2024-11-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (577, 371, 99, 6, 337.32, '2024-12-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (578, 147, 183, 8, 120.32, '2024-03-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (579, 90, 164, 2, 56.56, '2024-02-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (580, 266, 74, 1, 139.35, '2025-09-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (581, 358, 60, 3, 199.29, '2025-06-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (582, 336, 1, 9, 17150.13, '2024-04-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (583, 205, 91, 3, 187.35, '2024-12-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (584, 8, 181, 1, 32.08, '2024-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (585, 287, 150, 2, 726.04, '2026-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (586, 311, 50, 2, 227.66, '2024-12-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (587, 90, 105, 2, 54.18, '2025-03-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (588, 175, 30, 3, 6646.95, '2026-01-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (589, 295, 65, 3, 406.32, '2026-01-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (590, 395, 63, 3, 383.85, '2026-01-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (591, 236, 151, 3, 106.89, '2025-01-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (592, 196, 163, 3, 199.14, '2024-07-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (593, 162, 106, 7, 499.17, '2025-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (594, 135, 64, 1, 63.54, '2024-12-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (595, 176, 20, 2, 4334.46, '2024-06-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (596, 112, 147, 1, 296.19, '2025-12-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (597, 98, 128, 3, 146.58, '2024-08-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (598, 136, 53, 1, 171.25, '2025-10-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (599, 183, 40, 3, 142.24, '2024-05-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (600, 340, 127, 3, 292.53, '2025-08-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (601, 22, 124, 2, 68.56, '2024-10-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (602, 295, 71, 2, 116.64, '2026-01-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (603, 144, 102, 1, 74.89, '2025-04-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (604, 217, 123, 6, 114.42, '2024-03-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (605, 352, 45, 2, 288.0, '2024-05-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (606, 162, 177, 1, 41.87, '2025-06-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (607, 52, 84, 2, 103.38, '2025-11-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (608, 135, 61, 1, 163.44, '2026-01-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (609, 95, 128, 2, 97.72, '2024-12-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (610, 187, 103, 1, 41.0, '2024-06-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (611, 295, 176, 1, 41.12, '2024-04-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (612, 121, 143, 2, 508.6, '2024-11-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (613, 379, 39, 2, 139.22, '2024-02-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (614, 69, 162, 2, 104.94, '2025-07-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (615, 154, 65, 2, 270.88, '2025-04-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (616, 354, 42, 1, 135.02, '2025-10-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (617, 323, 25, 2, 1526.14, '2024-10-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (618, 287, 143, 6, 1525.8, '2024-08-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (619, 63, 90, 3, 133.5, '2026-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (620, 295, 167, 3, 108.24, '2024-06-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (621, 182, 84, 3, 155.07, '2025-01-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (622, 41, 98, 3, 136.92, '2025-01-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (623, 86, 164, 3, 84.84, '2024-10-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (624, 293, 104, 3, 39.81, '2024-04-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (625, 117, 81, 2, 233.18, '2024-09-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (626, 331, 102, 1, 74.89, '2024-12-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (627, 186, 151, 2, 71.26, '2025-01-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (628, 12, 33, 3, 278.94, '2025-06-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (629, 359, 21, 1, 1242.84, '2024-12-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (630, 243, 141, 1, 70.11, '2025-09-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (631, 43, 27, 1, 1774.61, '2024-06-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (632, 200, 80, 1, 15.56, '2025-08-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (633, 65, 34, 2, 192.0, '2024-06-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (634, 183, 84, 3, 155.07, '2025-01-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (635, 140, 141, 2, 140.22, '2026-01-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (636, 91, 152, 2, 54.34, '2025-05-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (637, 289, 112, 2, 115.12, '2025-05-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (638, 178, 124, 2, 68.56, '2025-09-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (639, 188, 106, 1, 71.31, '2024-09-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (640, 389, 35, 2, 134.12, '2025-01-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (641, 252, 123, 1, 19.07, '2025-08-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (642, 306, 60, 3, 199.29, '2025-03-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (643, 288, 112, 2, 115.12, '2024-06-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (644, 200, 97, 1, 13.9, '2024-04-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (645, 265, 157, 3, 62.28, '2025-06-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (646, 381, 137, 3, 46.2, '2024-12-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (647, 94, 35, 1, 67.06, '2025-05-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (648, 140, 180, 3, 45.93, '2024-07-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (649, 26, 137, 1, 15.4, '2026-01-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (650, 65, 184, 2, 8.8, '2024-02-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (651, 8, 127, 1, 97.51, '2024-12-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (652, 256, 96, 2, 99.36, '2025-09-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (653, 385, 38, 1, 74.88, '2025-09-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (654, 241, 47, 1, 133.17, '2025-10-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (655, 7, 32, 9, 489.87, '2025-07-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (656, 227, 64, 3, 190.62, '2024-03-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (657, 395, 25, 2, 1526.14, '2026-01-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (658, 349, 80, 6, 93.36, '2024-06-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (659, 382, 141, 2, 140.22, '2024-08-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (660, 102, 93, 3, 38.79, '2025-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (661, 58, 61, 3, 490.32, '2024-10-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (662, 142, 150, 1, 363.02, '2025-09-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (663, 22, 149, 3, 438.45, '2025-01-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (664, 191, 23, 1, 814.05, '2025-02-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (665, 174, 161, 1, 11.36, '2024-11-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (666, 275, 28, 1, 2090.15, '2024-08-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (667, 331, 89, 3, 272.79, '2024-12-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (668, 353, 97, 2, 27.8, '2024-05-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (669, 249, 181, 2, 64.16, '2024-09-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (670, 98, 146, 1, 222.37, '2024-11-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (671, 141, 154, 5, 305.55, '2025-03-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (672, 80, 116, 1, 65.26, '2024-08-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (673, 1, 164, 2, 56.56, '2025-08-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (674, 318, 94, 3, 210.15, '2024-08-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (675, 338, 138, 3, 103.86, '2024-07-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (676, 393, 142, 1, 299.56, '2024-09-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (677, 165, 29, 1, 815.8, '2025-06-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (678, 67, 46, 3, 357.18, '2024-07-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (679, 51, 9, 2, 4123.38, '2025-10-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (680, 270, 160, 3, 121.47, '2024-08-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (681, 311, 184, 1, 5.87, '2025-12-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (682, 252, 21, 2, 2485.68, '2025-05-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (683, 381, 107, 3, 58.08, '2025-09-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (684, 316, 69, 2, 303.18, '2025-08-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (685, 40, 56, 8, 990.88, '2024-04-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (686, 273, 99, 1, 56.22, '2025-03-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (687, 321, 46, 2, 238.12, '2025-03-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (688, 393, 164, 2, 56.56, '2025-06-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (689, 219, 27, 1, 1774.61, '2024-06-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (690, 173, 169, 1, 13.71, '2026-02-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (691, 181, 81, 2, 233.18, '2026-02-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (692, 212, 163, 2, 132.76, '2025-08-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (693, 289, 140, 1, 244.82, '2025-08-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (694, 131, 93, 8, 103.44, '2024-12-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (695, 372, 9, 9, 18555.21, '2025-04-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (696, 155, 2, 2, 1041.88, '2024-07-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (697, 12, 177, 3, 125.61, '2025-12-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (698, 293, 147, 1, 296.19, '2024-03-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (699, 71, 68, 2, 219.9, '2025-04-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (700, 154, 24, 2, 3320.9, '2025-04-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (701, 40, 84, 3, 155.07, '2024-06-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (702, 354, 180, 2, 30.62, '2025-12-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (703, 154, 10, 3, 6160.14, '2025-04-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (704, 29, 86, 2, 113.06, '2025-10-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (705, 62, 59, 3, 406.32, '2025-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (706, 325, 162, 2, 104.94, '2024-09-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (707, 277, 145, 1, 124.25, '2025-02-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (708, 26, 173, 3, 71.73, '2024-11-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (709, 305, 148, 2, 379.16, '2024-07-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (710, 202, 38, 1, 74.88, '2024-04-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (711, 26, 141, 2, 140.22, '2024-04-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (712, 397, 179, 1, 14.44, '2024-05-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (713, 250, 102, 3, 224.67, '2024-07-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (714, 377, 135, 1, 3.14, '2024-04-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (715, 166, 176, 5, 205.6, '2024-04-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (716, 217, 94, 2, 140.1, '2024-10-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (717, 13, 79, 1, 98.88, '2024-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (718, 227, 160, 1, 40.49, '2024-03-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (719, 103, 176, 2, 82.24, '2025-08-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (720, 58, 14, 1, 808.4, '2025-05-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (721, 148, 4, 2, 3116.26, '2025-09-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (722, 242, 6, 2, 3169.28, '2025-08-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (723, 280, 134, 3, 49.95, '2025-03-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (724, 73, 178, 3, 135.21, '2024-02-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (725, 340, 135, 1, 3.14, '2024-06-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (726, 357, 159, 1, 38.16, '2025-01-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (727, 35, 100, 3, 81.36, '2025-06-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (728, 185, 28, 1, 2090.15, '2025-11-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (729, 119, 98, 2, 91.28, '2025-07-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (730, 249, 153, 2, 73.06, '2024-07-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (731, 235, 144, 5, 862.6, '2024-02-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (732, 272, 79, 2, 197.76, '2024-11-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (733, 178, 176, 2, 82.24, '2025-05-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (734, 257, 71, 3, 174.96, '2025-05-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (735, 16, 143, 7, 1780.1, '2024-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (736, 202, 169, 1, 13.71, '2025-08-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (737, 348, 157, 3, 62.28, '2025-07-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (738, 294, 40, 2, 105.36, '2024-10-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (739, 230, 139, 1, 47.08, '2025-06-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (740, 351, 52, 3, 163.53, '2024-10-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (741, 269, 35, 2, 134.12, '2025-12-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (742, 336, 145, 5, 621.25, '2024-10-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (743, 369, 31, 1, 1707.51, '2025-10-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (744, 16, 82, 3, 164.13, '2024-12-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (745, 227, 164, 6, 169.68, '2024-09-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (746, 55, 34, 1, 96.0, '2025-08-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (747, 137, 156, 2, 135.06, '2024-08-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (748, 352, 7, 2, 3693.7, '2025-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (749, 258, 155, 2, 95.36, '2025-06-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (750, 199, 126, 2, 29.54, '2024-06-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (751, 210, 4, 5, 7790.65, '2026-01-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (752, 344, 52, 3, 163.53, '2024-03-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (753, 225, 158, 2, 108.2, '2024-10-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (754, 127, 110, 2, 29.68, '2024-03-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (755, 195, 81, 2, 233.18, '2025-12-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (756, 275, 135, 3, 9.42, '2025-07-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (757, 56, 116, 2, 130.52, '2025-11-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (758, 126, 133, 2, 23.16, '2026-01-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (759, 199, 133, 3, 34.74, '2026-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (760, 226, 102, 3, 224.67, '2025-09-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (761, 86, 109, 1, 56.09, '2025-12-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (762, 73, 119, 3, 140.91, '2025-01-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (763, 58, 47, 3, 399.51, '2025-12-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (764, 70, 101, 2, 108.96, '2025-01-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (765, 303, 183, 3, 45.12, '2025-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (766, 166, 178, 3, 135.21, '2025-07-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (767, 376, 32, 1, 54.43, '2025-07-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (768, 44, 135, 3, 9.42, '2025-08-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (769, 314, 41, 2, 216.88, '2024-11-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (770, 172, 145, 3, 372.75, '2025-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (771, 75, 46, 3, 357.18, '2024-03-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (772, 374, 115, 1, 51.41, '2024-06-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (773, 104, 1, 3, 5716.71, '2024-08-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (774, 256, 140, 3, 734.46, '2025-05-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (775, 112, 151, 3, 106.89, '2025-01-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (776, 308, 154, 1, 61.11, '2025-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (777, 322, 143, 3, 762.9, '2024-07-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (778, 29, 168, 2, 117.76, '2024-05-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (779, 296, 155, 1, 47.68, '2025-12-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (780, 214, 46, 1, 119.06, '2024-09-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (781, 359, 153, 2, 73.06, '2025-03-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (782, 384, 149, 2, 292.3, '2024-03-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (783, 166, 95, 3, 227.37, '2025-10-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (784, 282, 17, 1, 1622.6, '2024-05-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (785, 141, 85, 2, 223.84, '2025-02-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (786, 314, 15, 1, 1256.68, '2025-08-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (787, 45, 124, 3, 102.84, '2025-04-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (788, 362, 74, 2, 278.7, '2025-11-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (789, 295, 160, 2, 80.98, '2024-05-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (790, 267, 162, 2, 104.94, '2025-10-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (791, 120, 182, 1, 5.72, '2024-07-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (792, 239, 161, 3, 34.08, '2025-08-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (793, 316, 107, 2, 38.72, '2024-10-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (794, 327, 55, 1, 102.9, '2024-07-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (795, 35, 79, 2, 197.76, '2025-03-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (796, 59, 176, 2, 82.24, '2024-11-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (797, 15, 45, 1, 144.0, '2025-10-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (798, 246, 122, 3, 252.87, '2025-05-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (799, 322, 118, 3, 294.24, '2025-03-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (800, 212, 15, 3, 3770.04, '2024-09-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (801, 162, 143, 2, 508.6, '2024-07-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (802, 182, 17, 8, 12980.8, '2024-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (803, 193, 161, 2, 22.72, '2024-06-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (804, 96, 153, 1, 36.53, '2025-09-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (805, 162, 182, 1, 5.72, '2024-12-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (806, 122, 96, 2, 99.36, '2026-01-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (807, 155, 45, 1, 144.0, '2025-09-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (808, 48, 114, 2, 140.62, '2025-09-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (809, 79, 49, 2, 83.32, '2025-01-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (810, 159, 84, 1, 51.69, '2025-11-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (811, 265, 174, 10, 274.9, '2024-07-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (812, 199, 183, 3, 45.12, '2024-05-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (813, 23, 176, 3, 123.36, '2025-11-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (814, 24, 27, 2, 3549.22, '2025-06-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (815, 296, 80, 3, 46.68, '2024-07-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (816, 147, 71, 2, 116.64, '2025-09-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (817, 140, 39, 1, 69.61, '2024-05-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (818, 287, 132, 1, 43.86, '2025-03-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (819, 139, 37, 7, 279.09, '2025-09-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (820, 88, 19, 2, 3441.82, '2025-11-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (821, 26, 34, 1, 96.0, '2025-12-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (822, 197, 14, 1, 808.4, '2024-11-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (823, 304, 162, 3, 157.41, '2025-07-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (824, 160, 86, 3, 169.59, '2025-07-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (825, 274, 21, 9, 11185.56, '2025-08-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (826, 68, 24, 3, 4981.35, '2025-12-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (827, 234, 80, 3, 46.68, '2025-07-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (828, 119, 58, 1, 174.12, '2025-11-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (829, 187, 101, 1, 54.48, '2025-12-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (830, 167, 117, 2, 8.54, '2024-03-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (831, 246, 119, 3, 140.91, '2024-09-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (832, 295, 33, 2, 185.96, '2024-12-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (833, 55, 84, 2, 103.38, '2024-04-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (834, 237, 103, 2, 82.0, '2024-08-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (835, 82, 124, 2, 68.56, '2024-10-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (836, 303, 111, 3, 47.91, '2024-12-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (837, 279, 178, 1, 45.07, '2025-06-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (838, 365, 147, 3, 888.57, '2024-05-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (839, 167, 143, 1, 254.3, '2024-12-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (840, 208, 18, 2, 1284.52, '2025-07-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (841, 195, 84, 2, 103.38, '2025-06-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (842, 72, 149, 4, 584.6, '2025-05-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (843, 76, 170, 1, 43.3, '2025-03-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (844, 296, 115, 1, 51.41, '2025-06-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (845, 292, 174, 2, 54.98, '2025-12-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (846, 177, 23, 2, 1628.1, '2025-05-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (847, 66, 76, 1, 68.51, '2025-12-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (848, 1, 181, 2, 64.16, '2026-01-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (849, 145, 8, 1, 707.01, '2025-07-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (850, 163, 183, 2, 30.08, '2024-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (851, 340, 45, 2, 288.0, '2024-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (852, 185, 107, 1, 19.36, '2026-02-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (853, 69, 3, 1, 1903.54, '2024-02-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (854, 250, 169, 2, 27.42, '2026-02-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (855, 329, 107, 3, 58.08, '2025-11-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (856, 218, 160, 1, 40.49, '2025-02-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (857, 231, 99, 2, 112.44, '2024-07-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (858, 296, 128, 3, 146.58, '2024-08-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (859, 211, 140, 2, 367.23, '2024-03-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (860, 248, 181, 2, 64.16, '2025-04-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (861, 41, 37, 3, 119.61, '2025-03-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (862, 385, 72, 2, 200.86, '2024-04-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (863, 46, 63, 2, 255.9, '2025-08-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (864, 40, 176, 3, 123.36, '2025-09-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (865, 28, 88, 2, 85.28, '2024-02-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (866, 241, 147, 3, 888.57, '2024-12-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (867, 151, 75, 1, 95.46, '2025-07-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (868, 156, 145, 1, 124.25, '2025-05-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (869, 294, 14, 3, 2425.2, '2024-09-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (870, 14, 74, 2, 278.7, '2024-05-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (871, 143, 65, 1, 135.44, '2024-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (872, 8, 29, 3, 2447.4, '2025-12-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (873, 338, 115, 2, 102.82, '2024-06-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (874, 121, 125, 1, 24.96, '2025-03-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (875, 44, 38, 2, 149.76, '2025-10-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (876, 386, 106, 3, 213.93, '2024-08-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (877, 327, 43, 1, 103.33, '2025-08-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (878, 329, 68, 3, 329.85, '2024-05-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (879, 205, 122, 2, 168.58, '2025-08-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (880, 273, 60, 2, 132.86, '2025-07-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (881, 75, 136, 3, 53.28, '2024-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (882, 230, 98, 3, 136.92, '2026-01-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (883, 22, 25, 5, 3815.35, '2025-05-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (884, 222, 157, 5, 103.8, '2025-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (885, 137, 26, 1, 820.88, '2025-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (886, 346, 62, 3, 192.96, '2025-04-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (887, 173, 174, 3, 82.47, '2024-06-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (888, 345, 3, 3, 4282.97, '2024-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (889, 54, 176, 2, 82.24, '2024-07-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (890, 99, 9, 1, 2061.69, '2024-04-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (891, 337, 56, 7, 867.02, '2025-05-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (892, 62, 23, 3, 2442.15, '2024-05-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (893, 332, 145, 3, 372.75, '2024-06-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (894, 95, 65, 1, 135.44, '2025-06-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (895, 233, 71, 3, 174.96, '2025-07-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (896, 395, 83, 1, 105.11, '2025-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (897, 32, 98, 2, 91.28, '2026-02-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (898, 136, 46, 2, 238.12, '2025-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (899, 313, 101, 1, 54.48, '2025-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (900, 394, 111, 1, 15.97, '2025-05-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (901, 367, 67, 1, 114.98, '2024-04-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (902, 129, 115, 1, 51.41, '2025-02-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (903, 1, 10, 3, 6160.14, '2024-09-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (904, 201, 148, 1, 189.58, '2025-07-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (905, 245, 112, 2, 115.12, '2025-08-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (906, 36, 139, 1, 47.08, '2024-11-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (907, 400, 124, 1, 34.28, '2025-03-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (908, 171, 175, 2, 34.46, '2024-03-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (909, 332, 24, 2, 3320.9, '2025-11-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (910, 236, 75, 3, 286.38, '2024-06-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (911, 197, 170, 1, 43.3, '2025-07-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (912, 323, 177, 2, 83.74, '2024-04-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (913, 377, 49, 1, 41.66, '2024-07-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (914, 304, 62, 2, 128.64, '2024-03-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (915, 158, 128, 2, 97.72, '2025-10-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (916, 9, 10, 2, 4106.76, '2024-10-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (917, 208, 31, 1, 1707.51, '2025-06-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (918, 348, 138, 1, 34.62, '2025-04-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (919, 19, 37, 2, 79.74, '2024-02-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (920, 317, 12, 1, 974.17, '2025-06-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (921, 324, 13, 4, 1689.8, '2025-10-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (922, 313, 44, 3, 229.56, '2024-03-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (923, 59, 128, 2, 97.72, '2025-05-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (924, 104, 110, 2, 29.68, '2025-10-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (925, 206, 84, 1, 51.69, '2025-06-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (926, 165, 55, 3, 308.7, '2025-04-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (927, 62, 71, 1, 58.32, '2024-12-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (928, 284, 43, 2, 206.66, '2025-12-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (929, 52, 162, 3, 157.41, '2025-09-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (930, 250, 21, 1, 1242.84, '2024-06-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (931, 334, 152, 3, 81.51, '2024-12-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (932, 396, 122, 3, 252.87, '2024-07-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (933, 268, 116, 2, 130.52, '2025-12-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (934, 20, 153, 1, 36.53, '2025-02-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (935, 322, 78, 2, 147.5, '2024-02-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (936, 61, 136, 9, 159.84, '2025-05-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (937, 277, 130, 1, 40.51, '2025-09-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (938, 142, 14, 1, 808.4, '2025-09-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (939, 243, 128, 1, 48.86, '2025-06-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (940, 331, 94, 1, 70.05, '2024-12-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (941, 389, 117, 1, 5.34, '2025-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (942, 91, 41, 3, 325.32, '2025-01-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (943, 121, 114, 2, 140.62, '2024-10-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (944, 347, 84, 1, 51.69, '2024-05-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (945, 122, 106, 3, 213.93, '2024-11-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (946, 242, 150, 2, 726.04, '2025-11-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (947, 313, 117, 1, 5.34, '2024-11-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (948, 100, 162, 2, 104.94, '2024-09-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (949, 17, 178, 2, 90.14, '2024-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (950, 239, 118, 2, 196.16, '2025-08-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (951, 152, 155, 1, 47.68, '2025-09-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (952, 88, 148, 8, 1516.64, '2025-11-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (953, 268, 126, 3, 44.31, '2024-07-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (954, 237, 72, 1, 100.43, '2024-12-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (955, 127, 84, 2, 103.38, '2024-07-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (956, 77, 147, 3, 888.57, '2024-12-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (957, 241, 130, 1, 40.51, '2025-03-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (958, 357, 26, 2, 1641.76, '2024-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (959, 7, 178, 3, 135.21, '2026-01-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (960, 152, 62, 3, 192.96, '2024-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (961, 157, 42, 3, 405.06, '2025-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (962, 13, 117, 2, 10.68, '2024-05-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (963, 95, 95, 3, 227.37, '2025-07-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (964, 322, 19, 2, 3441.82, '2025-07-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (965, 152, 110, 3, 44.52, '2025-07-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (966, 295, 54, 3, 285.57, '2024-04-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (967, 377, 15, 2, 2513.36, '2025-12-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (968, 27, 29, 2, 1631.6, '2025-01-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (969, 188, 45, 3, 432.0, '2025-07-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (970, 397, 53, 1, 171.25, '2024-10-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (971, 333, 123, 3, 57.21, '2025-08-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (972, 360, 54, 3, 285.57, '2025-08-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (973, 137, 129, 3, 9.57, '2024-09-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (974, 177, 116, 2, 130.52, '2025-03-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (975, 364, 137, 3, 46.2, '2025-03-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (976, 318, 95, 3, 227.37, '2025-12-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (977, 34, 49, 3, 124.98, '2025-01-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (978, 92, 74, 8, 1114.8, '2024-04-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (979, 58, 179, 1, 14.44, '2024-06-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (980, 322, 6, 1, 1584.64, '2026-01-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (981, 68, 122, 2, 168.58, '2024-12-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (982, 150, 49, 1, 41.66, '2025-11-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (983, 267, 166, 2, 101.7, '2025-04-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (984, 168, 125, 2, 49.92, '2025-07-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (985, 228, 118, 2, 196.16, '2024-05-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (986, 88, 67, 1, 114.98, '2024-11-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (987, 25, 38, 2, 149.76, '2025-01-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (988, 83, 183, 2, 30.08, '2024-06-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (989, 363, 178, 4, 180.28, '2025-09-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (990, 60, 11, 10, 8391.0, '2025-04-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (991, 190, 48, 1, 47.82, '2025-07-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (992, 177, 38, 2, 149.76, '2025-03-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (993, 155, 32, 5, 272.15, '2024-12-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (994, 75, 118, 5, 490.4, '2024-06-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (995, 280, 130, 2, 81.02, '2025-07-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (996, 149, 147, 3, 888.57, '2025-09-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (997, 227, 87, 3, 267.06, '2025-08-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (998, 72, 174, 2, 54.98, '2024-10-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (999, 113, 115, 2, 102.82, '2024-10-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1000, 100, 150, 2, 726.04, '2025-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1001, 101, 6, 1, 1584.64, '2025-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1002, 45, 132, 2, 87.72, '2025-02-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1003, 262, 15, 4, 5026.72, '2024-11-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1004, 219, 95, 2, 151.58, '2024-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1005, 158, 115, 3, 154.23, '2024-04-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1006, 228, 107, 3, 58.08, '2024-09-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1007, 218, 107, 1, 19.36, '2025-04-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1008, 107, 78, 2, 147.5, '2025-11-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1009, 34, 152, 3, 81.51, '2024-04-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1010, 140, 107, 1, 19.36, '2025-01-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1011, 71, 52, 1, 54.51, '2024-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1012, 22, 78, 3, 221.25, '2024-09-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1013, 238, 58, 1, 174.12, '2024-02-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1014, 328, 163, 2, 132.76, '2025-06-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1015, 214, 46, 2, 238.12, '2025-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1016, 62, 71, 2, 116.64, '2026-01-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1017, 186, 149, 2, 292.3, '2024-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1018, 352, 122, 9, 758.61, '2025-10-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1019, 376, 148, 1, 189.58, '2024-08-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1020, 75, 82, 2, 109.42, '2025-07-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1021, 28, 70, 2, 215.44, '2025-05-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1022, 25, 75, 1, 95.46, '2025-05-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1023, 100, 161, 1, 11.36, '2024-04-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1024, 279, 83, 3, 315.33, '2025-10-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1025, 155, 70, 3, 323.16, '2025-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1026, 297, 91, 3, 187.35, '2024-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1027, 191, 125, 2, 49.92, '2025-12-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1028, 112, 40, 2, 105.36, '2025-10-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1029, 287, 158, 3, 162.3, '2026-01-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1030, 365, 142, 3, 898.68, '2025-09-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1031, 40, 30, 3, 6646.95, '2025-12-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1032, 160, 177, 2, 83.74, '2025-10-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1033, 306, 134, 3, 49.95, '2024-10-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1034, 15, 31, 1, 1707.51, '2025-11-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1035, 117, 79, 1, 98.88, '2024-05-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1036, 354, 29, 1, 815.8, '2025-09-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1037, 22, 51, 1, 33.46, '2025-09-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1038, 31, 121, 1, 90.87, '2024-08-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1039, 342, 3, 3, 5710.62, '2025-09-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1040, 106, 151, 4, 142.52, '2024-06-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1041, 47, 38, 3, 224.64, '2025-12-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1042, 179, 91, 1, 62.45, '2025-02-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1043, 124, 130, 2, 81.02, '2024-04-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1044, 8, 136, 1, 17.76, '2024-07-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1045, 387, 138, 1, 34.62, '2025-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1046, 259, 182, 2, 11.44, '2025-07-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1047, 345, 28, 1, 2090.15, '2024-11-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1048, 110, 132, 1, 43.86, '2024-05-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1049, 64, 120, 1, 5.92, '2024-05-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1050, 361, 74, 2, 278.7, '2024-03-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1051, 60, 99, 1, 56.22, '2025-04-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1052, 228, 58, 2, 348.24, '2024-09-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1053, 97, 18, 3, 1926.78, '2025-09-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1054, 189, 46, 1, 119.06, '2025-06-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1055, 203, 113, 2, 124.92, '2025-06-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1056, 203, 103, 3, 123.0, '2026-01-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1057, 87, 17, 2, 3245.2, '2024-07-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1058, 207, 32, 1, 54.43, '2024-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1059, 392, 183, 3, 45.12, '2025-04-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1060, 330, 103, 2, 82.0, '2025-06-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1061, 249, 131, 1, 9.64, '2025-09-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1062, 129, 126, 2, 29.54, '2025-05-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1063, 51, 14, 3, 2425.2, '2025-02-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1064, 92, 98, 3, 136.92, '2024-10-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1065, 320, 25, 3, 2289.21, '2025-06-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1066, 253, 120, 1, 5.92, '2025-06-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1067, 134, 139, 2, 94.16, '2025-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1068, 392, 9, 10, 20616.9, '2025-11-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1069, 231, 81, 3, 349.77, '2024-12-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1070, 91, 143, 3, 762.9, '2025-09-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1071, 85, 126, 2, 29.54, '2024-10-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1072, 392, 29, 2, 1631.6, '2025-02-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1073, 277, 147, 2, 592.38, '2025-03-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1074, 29, 101, 1, 54.48, '2025-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1075, 347, 91, 3, 187.35, '2024-09-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1076, 303, 12, 1, 974.17, '2024-11-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1077, 299, 7, 3, 5540.55, '2025-05-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1078, 220, 89, 10, 909.3, '2024-12-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1079, 126, 64, 1, 63.54, '2024-10-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1080, 353, 17, 3, 4867.8, '2024-05-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1081, 276, 84, 1, 51.69, '2025-06-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1082, 264, 108, 1, 29.78, '2025-07-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1083, 163, 97, 2, 27.8, '2024-10-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1084, 251, 26, 3, 2462.64, '2024-07-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1085, 392, 171, 2, 25.0, '2025-05-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1086, 224, 52, 2, 109.02, '2025-11-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1087, 275, 55, 1, 102.9, '2024-03-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1088, 206, 58, 3, 522.36, '2026-01-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1089, 297, 25, 2, 1526.14, '2024-09-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1090, 272, 122, 2, 168.58, '2024-11-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1091, 155, 130, 3, 121.53, '2024-12-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1092, 103, 107, 2, 38.72, '2025-05-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1093, 391, 141, 1, 70.11, '2024-02-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1094, 96, 148, 2, 379.16, '2025-06-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1095, 240, 69, 6, 909.54, '2025-03-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1096, 394, 112, 6, 345.36, '2025-08-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1097, 103, 94, 2, 140.1, '2024-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1098, 392, 77, 3, 310.53, '2024-12-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1099, 33, 163, 1, 66.38, '2024-12-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1100, 331, 42, 1, 135.02, '2025-04-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1101, 59, 39, 1, 69.61, '2024-08-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1102, 238, 125, 2, 49.92, '2024-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1103, 19, 52, 1, 54.51, '2024-05-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1104, 143, 169, 2, 27.42, '2025-05-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1105, 370, 125, 3, 74.88, '2024-03-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1106, 161, 155, 1, 47.68, '2024-03-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1107, 187, 172, 3, 13.23, '2024-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1108, 371, 36, 1, 84.16, '2025-04-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1109, 62, 134, 3, 49.95, '2025-04-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1110, 269, 65, 2, 270.88, '2024-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1111, 396, 81, 2, 233.18, '2025-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1112, 384, 61, 6, 980.64, '2024-07-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1113, 110, 71, 2, 116.64, '2024-08-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1114, 252, 137, 2, 30.8, '2025-12-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1115, 217, 122, 3, 252.87, '2026-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1116, 75, 93, 2, 25.86, '2024-11-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1117, 331, 156, 1, 67.53, '2025-08-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1118, 28, 177, 5, 209.35, '2025-06-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1119, 197, 80, 3, 46.68, '2025-07-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1120, 351, 32, 2, 108.86, '2024-08-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1121, 5, 101, 5, 272.4, '2025-12-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1122, 388, 61, 1, 163.44, '2025-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1123, 225, 162, 2, 104.94, '2025-10-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1124, 18, 71, 3, 174.96, '2025-10-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1125, 242, 106, 5, 356.55, '2024-10-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1126, 52, 42, 3, 405.06, '2025-02-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1127, 309, 141, 3, 210.33, '2025-01-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1128, 27, 165, 3, 20.49, '2025-05-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1129, 70, 1, 2, 3811.14, '2025-05-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1130, 43, 29, 1, 815.8, '2025-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1131, 333, 34, 3, 288.0, '2025-07-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1132, 164, 116, 2, 130.52, '2025-08-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1133, 352, 152, 3, 81.51, '2025-09-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1134, 213, 95, 1, 75.79, '2025-11-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1135, 293, 58, 1, 174.12, '2024-02-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1136, 314, 161, 1, 11.36, '2024-04-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1137, 135, 180, 3, 45.93, '2024-03-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1138, 308, 67, 1, 114.98, '2026-01-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1139, 291, 31, 1, 1707.51, '2025-02-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1140, 233, 173, 2, 47.82, '2024-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1141, 137, 74, 3, 418.05, '2024-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1142, 106, 154, 1, 61.11, '2025-10-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1143, 97, 108, 1, 29.78, '2025-09-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1144, 135, 61, 3, 490.32, '2025-12-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1145, 351, 166, 2, 76.28, '2024-02-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1146, 166, 178, 2, 90.14, '2024-07-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1147, 217, 153, 1, 29.22, '2024-04-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1148, 171, 61, 2, 326.88, '2024-11-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1149, 344, 154, 3, 183.33, '2025-10-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1150, 259, 159, 2, 76.32, '2026-01-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1151, 68, 144, 1, 172.52, '2024-06-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1152, 253, 87, 3, 267.06, '2024-05-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1153, 272, 111, 1, 14.37, '2024-05-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1154, 66, 128, 3, 146.58, '2025-10-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1155, 221, 73, 4, 426.92, '2024-08-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1156, 136, 133, 2, 23.16, '2025-11-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1157, 252, 39, 2, 139.22, '2025-12-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1158, 226, 14, 1, 808.4, '2024-03-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1159, 241, 67, 1, 114.98, '2025-01-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1160, 254, 11, 2, 1678.2, '2026-01-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1161, 235, 127, 1, 97.51, '2025-07-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1162, 179, 24, 1, 1660.45, '2024-09-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1163, 384, 131, 3, 28.92, '2025-03-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1164, 109, 150, 10, 3630.2, '2024-02-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1165, 93, 107, 5, 96.8, '2024-08-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1166, 49, 85, 1, 111.92, '2025-06-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1167, 202, 96, 2, 99.36, '2026-01-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1168, 79, 8, 1, 707.01, '2025-10-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1169, 233, 161, 7, 79.52, '2025-04-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1170, 23, 168, 3, 176.64, '2025-01-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1171, 376, 146, 1, 222.37, '2025-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1172, 145, 83, 3, 315.33, '2025-08-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1173, 309, 98, 1, 45.64, '2024-08-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1174, 395, 103, 1, 41.0, '2025-11-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1175, 400, 104, 1, 13.27, '2025-08-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1176, 62, 77, 2, 207.02, '2024-12-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1177, 159, 176, 3, 123.36, '2024-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1178, 189, 132, 1, 43.86, '2024-12-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1179, 138, 145, 3, 372.75, '2024-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1180, 189, 158, 1, 54.1, '2025-05-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1181, 263, 88, 9, 383.76, '2025-06-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1182, 366, 40, 6, 316.08, '2025-03-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1183, 43, 75, 2, 190.92, '2024-04-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1184, 154, 39, 9, 626.49, '2025-06-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1185, 128, 134, 2, 33.3, '2025-04-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1186, 24, 132, 1, 43.86, '2024-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1187, 339, 146, 3, 667.11, '2024-11-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1188, 394, 129, 1, 3.19, '2025-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1189, 94, 101, 1, 54.48, '2024-12-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1190, 161, 151, 3, 106.89, '2025-08-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1191, 136, 88, 8, 341.12, '2025-11-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1192, 95, 21, 3, 3728.52, '2025-04-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1193, 55, 112, 2, 86.34, '2024-02-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1194, 88, 168, 2, 117.76, '2025-07-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1195, 382, 155, 3, 143.04, '2024-09-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1196, 316, 93, 3, 38.79, '2026-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1197, 155, 23, 1, 610.54, '2024-02-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1198, 9, 179, 8, 115.52, '2025-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1199, 333, 38, 3, 224.64, '2024-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1200, 276, 49, 1, 41.66, '2025-09-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1201, 217, 6, 1, 1584.64, '2025-12-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1202, 228, 125, 2, 49.92, '2025-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1203, 104, 76, 2, 137.02, '2025-10-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1204, 5, 27, 3, 5323.83, '2025-07-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1205, 254, 149, 2, 292.3, '2025-03-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1206, 250, 103, 2, 82.0, '2025-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1207, 348, 125, 1, 19.97, '2024-03-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1208, 296, 81, 2, 233.18, '2024-09-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1209, 243, 30, 2, 4431.3, '2025-12-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1210, 358, 112, 1, 57.56, '2024-09-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1211, 177, 113, 1, 62.46, '2024-07-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1212, 174, 155, 3, 143.04, '2025-07-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1213, 151, 183, 2, 30.08, '2024-12-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1214, 335, 93, 3, 38.79, '2025-09-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1215, 319, 54, 1, 95.19, '2025-08-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1216, 67, 45, 1, 144.0, '2025-05-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1217, 213, 127, 2, 195.02, '2024-07-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1218, 10, 92, 3, 231.54, '2024-11-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1219, 258, 9, 3, 6185.07, '2024-10-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1220, 117, 31, 2, 3415.02, '2025-01-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1221, 182, 12, 3, 2922.51, '2025-03-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1222, 354, 132, 3, 105.26, '2024-04-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1223, 225, 118, 8, 784.64, '2025-08-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1224, 313, 157, 3, 62.28, '2025-12-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1225, 22, 130, 1, 40.51, '2025-05-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1226, 186, 41, 3, 325.32, '2025-07-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1227, 256, 26, 1, 820.88, '2024-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1228, 63, 52, 2, 109.02, '2024-12-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1229, 126, 122, 2, 168.58, '2025-02-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1230, 191, 184, 3, 17.61, '2024-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1231, 78, 136, 2, 35.52, '2024-08-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1232, 212, 105, 3, 81.27, '2026-01-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1233, 350, 93, 7, 90.51, '2024-12-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1234, 368, 133, 7, 81.06, '2024-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1235, 396, 43, 2, 206.66, '2024-11-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1236, 329, 39, 4, 278.44, '2024-03-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1237, 366, 170, 3, 129.9, '2026-01-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1238, 349, 180, 2, 30.62, '2024-09-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1239, 177, 3, 3, 5710.62, '2025-12-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1240, 76, 180, 2, 30.62, '2025-05-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1241, 320, 159, 3, 114.48, '2025-07-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1242, 333, 104, 3, 39.81, '2025-11-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1243, 276, 86, 2, 113.06, '2025-07-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1244, 267, 139, 1, 47.08, '2024-04-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1245, 267, 88, 3, 127.92, '2024-06-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1246, 277, 152, 1, 27.17, '2025-10-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1247, 217, 130, 1, 40.51, '2024-03-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1248, 322, 130, 2, 81.02, '2024-03-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1249, 64, 115, 1, 51.41, '2025-08-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1250, 121, 149, 2, 292.3, '2025-11-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1251, 274, 153, 1, 36.53, '2024-09-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1252, 367, 147, 3, 888.57, '2025-07-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1253, 127, 27, 2, 3549.22, '2025-04-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1254, 185, 117, 1, 5.34, '2025-07-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1255, 42, 24, 1, 1660.45, '2025-11-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1256, 229, 20, 2, 4334.46, '2025-03-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1257, 266, 102, 3, 224.67, '2025-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1258, 226, 177, 6, 251.22, '2025-01-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1259, 84, 37, 2, 79.74, '2025-01-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1260, 361, 132, 3, 131.58, '2024-05-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1261, 243, 9, 3, 6185.07, '2025-12-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1262, 61, 155, 3, 143.04, '2024-05-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1263, 149, 11, 2, 1678.2, '2024-05-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1264, 192, 78, 1, 55.31, '2024-03-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1265, 302, 108, 1, 29.78, '2025-11-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1266, 111, 47, 3, 399.51, '2025-01-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1267, 179, 18, 3, 1926.78, '2024-12-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1268, 290, 116, 4, 261.04, '2025-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1269, 369, 156, 1, 67.53, '2024-05-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1270, 390, 116, 3, 195.78, '2024-06-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1271, 46, 160, 3, 121.47, '2024-12-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1272, 203, 87, 2, 178.04, '2026-01-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1273, 377, 72, 3, 301.29, '2025-11-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1274, 293, 162, 3, 157.41, '2025-07-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1275, 64, 165, 2, 13.66, '2024-07-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1276, 296, 14, 8, 6467.2, '2025-02-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1277, 258, 5, 1, 415.5, '2025-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1278, 10, 71, 3, 174.96, '2024-08-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1279, 297, 114, 1, 70.31, '2025-03-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1280, 302, 12, 2, 1948.34, '2025-12-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1281, 93, 107, 1, 19.36, '2025-03-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1282, 47, 30, 9, 19940.85, '2025-03-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1283, 94, 66, 3, 550.35, '2024-06-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1284, 348, 44, 1, 76.52, '2026-01-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1285, 366, 15, 1, 1005.34, '2024-04-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1286, 166, 67, 2, 229.96, '2025-10-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1287, 104, 62, 3, 192.96, '2025-04-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1288, 386, 130, 2, 64.82, '2024-05-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1289, 238, 142, 2, 599.12, '2025-01-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1290, 120, 5, 1, 415.5, '2026-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1291, 127, 143, 3, 762.9, '2024-05-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1292, 229, 22, 3, 3154.26, '2025-02-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1293, 73, 96, 2, 99.36, '2024-06-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1294, 217, 143, 2, 508.6, '2024-02-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1295, 318, 75, 3, 286.38, '2024-06-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1296, 247, 70, 2, 215.44, '2025-10-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1297, 180, 162, 1, 52.47, '2025-10-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1298, 83, 137, 2, 30.8, '2024-09-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1299, 63, 36, 3, 252.48, '2026-02-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1300, 108, 157, 2, 41.52, '2025-09-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1301, 176, 163, 1, 66.38, '2025-08-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1302, 126, 170, 9, 389.7, '2024-10-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1303, 307, 85, 1, 111.92, '2025-07-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1304, 2, 156, 2, 135.06, '2025-12-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1305, 212, 143, 3, 762.9, '2025-07-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1306, 276, 21, 3, 3728.52, '2025-06-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1307, 16, 172, 2, 8.82, '2024-05-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1308, 193, 154, 2, 122.22, '2024-06-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1309, 357, 3, 1, 1903.54, '2024-11-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1310, 5, 57, 3, 176.19, '2025-08-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1311, 364, 92, 1, 77.18, '2025-10-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1312, 368, 57, 1, 58.73, '2025-02-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1313, 144, 127, 4, 390.04, '2025-07-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1314, 101, 164, 2, 56.56, '2025-11-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1315, 253, 44, 2, 153.04, '2025-06-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1316, 350, 155, 2, 76.29, '2024-03-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1317, 34, 33, 1, 92.98, '2025-04-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1318, 268, 71, 1, 58.32, '2025-06-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1319, 355, 174, 2, 54.98, '2024-08-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1320, 233, 1, 6, 11433.42, '2025-05-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1321, 27, 83, 2, 210.22, '2026-02-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1322, 349, 133, 2, 23.16, '2024-11-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1323, 370, 58, 1, 174.12, '2025-12-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1324, 162, 2, 2, 1041.88, '2024-10-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1325, 13, 58, 9, 1567.08, '2024-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1326, 128, 51, 1, 33.46, '2024-10-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1327, 50, 8, 2, 1414.02, '2025-10-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1328, 321, 86, 3, 169.59, '2024-08-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1329, 175, 14, 3, 2425.2, '2025-02-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1330, 38, 154, 3, 183.33, '2025-08-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1331, 297, 32, 1, 43.54, '2024-03-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1332, 161, 178, 1, 45.07, '2024-05-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1333, 227, 15, 2, 2513.36, '2025-05-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1334, 347, 15, 2, 2513.36, '2024-09-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1335, 50, 159, 3, 114.48, '2024-08-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1336, 338, 160, 1, 40.49, '2024-11-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1337, 318, 159, 1, 38.16, '2025-06-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1338, 14, 117, 2, 10.68, '2025-04-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1339, 7, 153, 3, 109.59, '2025-04-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1340, 294, 33, 3, 278.94, '2024-08-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1341, 372, 159, 2, 76.32, '2024-08-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1342, 31, 33, 2, 185.96, '2024-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1343, 387, 92, 2, 154.36, '2025-11-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1344, 76, 121, 2, 181.74, '2024-10-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1345, 5, 133, 2, 23.16, '2025-06-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1346, 260, 144, 3, 517.56, '2024-12-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1347, 103, 164, 4, 113.12, '2025-09-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1348, 342, 122, 3, 252.87, '2026-01-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1349, 170, 149, 2, 292.3, '2024-10-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1350, 169, 42, 1, 135.02, '2025-11-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1351, 254, 57, 5, 293.65, '2025-05-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1352, 239, 160, 1, 40.49, '2025-01-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1353, 170, 97, 1, 13.9, '2024-06-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1354, 186, 3, 1, 1427.65, '2024-03-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1355, 149, 113, 1, 62.46, '2025-04-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1356, 23, 8, 1, 707.01, '2024-09-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1357, 135, 45, 2, 288.0, '2025-03-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1358, 12, 46, 3, 357.18, '2025-12-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1359, 347, 36, 2, 168.32, '2025-09-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1360, 108, 79, 2, 197.76, '2024-11-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1361, 88, 135, 9, 28.26, '2026-02-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1362, 365, 17, 1, 1622.6, '2025-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1363, 98, 50, 2, 227.66, '2025-07-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1364, 220, 163, 1, 66.38, '2024-03-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1365, 97, 138, 1, 34.62, '2024-06-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1366, 323, 72, 3, 301.29, '2025-11-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1367, 251, 54, 3, 285.57, '2025-09-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1368, 315, 17, 1, 1622.6, '2024-11-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1369, 385, 131, 2, 19.28, '2025-02-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1370, 365, 96, 2, 99.36, '2025-01-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1371, 243, 69, 2, 303.18, '2025-05-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1372, 333, 10, 1, 2053.38, '2025-11-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1373, 121, 102, 1, 74.89, '2024-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1374, 81, 96, 1, 49.68, '2024-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1375, 152, 114, 2, 140.62, '2024-08-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1376, 263, 160, 2, 80.98, '2025-01-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1377, 189, 128, 2, 97.72, '2024-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1378, 120, 68, 3, 329.85, '2024-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1379, 257, 132, 2, 87.72, '2024-04-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1380, 117, 26, 1, 820.88, '2024-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1381, 171, 51, 3, 100.38, '2024-08-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1382, 394, 175, 3, 51.69, '2024-07-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1383, 71, 184, 3, 17.61, '2025-12-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1384, 154, 73, 3, 320.19, '2025-09-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1385, 208, 149, 3, 438.45, '2024-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1386, 390, 39, 3, 208.83, '2024-08-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1387, 108, 122, 1, 84.29, '2025-04-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1388, 240, 119, 2, 93.94, '2024-04-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1389, 220, 179, 2, 28.88, '2024-12-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1390, 16, 96, 1, 49.68, '2025-11-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1391, 378, 3, 2, 3807.08, '2025-06-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1392, 116, 108, 2, 59.56, '2025-08-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1393, 354, 138, 1, 34.62, '2025-04-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1394, 17, 36, 1, 84.16, '2026-01-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1395, 323, 155, 4, 190.72, '2025-04-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1396, 196, 53, 7, 1198.75, '2024-03-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1397, 244, 28, 2, 4180.3, '2026-01-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1398, 156, 24, 1, 1660.45, '2025-06-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1399, 353, 155, 2, 95.36, '2024-07-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1400, 198, 73, 1, 106.73, '2024-09-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1401, 233, 15, 2, 2513.36, '2024-02-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1402, 211, 101, 1, 54.48, '2024-05-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1403, 245, 18, 2, 1284.52, '2025-12-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1404, 106, 80, 2, 31.12, '2025-07-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1405, 310, 148, 6, 1137.48, '2025-04-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1406, 351, 118, 1, 73.56, '2024-02-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1407, 33, 103, 3, 123.0, '2024-08-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1408, 292, 126, 2, 29.54, '2025-04-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1409, 148, 166, 3, 152.55, '2025-01-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1410, 365, 77, 2, 207.02, '2025-10-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1411, 213, 64, 1, 63.54, '2025-05-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1412, 197, 169, 1, 13.71, '2025-04-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1413, 23, 62, 3, 192.96, '2024-06-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1414, 276, 75, 3, 286.38, '2024-04-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1415, 112, 127, 2, 195.02, '2025-08-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1416, 189, 20, 3, 6501.69, '2025-02-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1417, 210, 116, 1, 65.26, '2024-07-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1418, 14, 19, 3, 5162.73, '2025-06-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1419, 176, 103, 3, 123.0, '2024-12-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1420, 59, 182, 5, 28.6, '2024-10-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1421, 249, 119, 1, 46.97, '2025-03-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1422, 225, 36, 2, 168.32, '2024-09-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1423, 10, 156, 1, 67.53, '2024-09-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1424, 201, 44, 1, 76.52, '2025-08-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1425, 79, 113, 2, 124.92, '2024-07-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1426, 346, 137, 1, 15.4, '2025-07-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1427, 268, 165, 3, 20.49, '2025-06-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1428, 354, 79, 2, 197.76, '2025-04-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1429, 194, 52, 6, 327.06, '2024-11-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1430, 47, 5, 2, 831.0, '2026-01-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1431, 99, 175, 3, 51.69, '2024-07-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1432, 341, 43, 3, 309.99, '2024-03-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1433, 168, 83, 2, 210.22, '2024-07-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1434, 278, 102, 6, 449.34, '2024-05-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1435, 183, 83, 1, 105.11, '2024-12-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1436, 200, 55, 2, 205.8, '2024-03-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1437, 333, 160, 2, 80.98, '2024-04-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1438, 155, 154, 2, 122.22, '2026-02-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1439, 292, 44, 1, 76.52, '2024-04-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1440, 324, 179, 2, 28.88, '2025-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1441, 69, 86, 1, 56.53, '2025-08-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1442, 342, 124, 1, 34.28, '2024-02-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1443, 230, 98, 2, 91.28, '2025-08-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1444, 361, 4, 1, 1558.13, '2025-05-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1445, 159, 61, 3, 490.32, '2025-08-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1446, 31, 36, 2, 168.32, '2024-09-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1447, 105, 165, 1, 6.83, '2025-12-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1448, 228, 85, 1, 111.92, '2024-10-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1449, 21, 134, 3, 49.95, '2024-12-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1450, 385, 7, 1, 1846.85, '2025-08-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1451, 106, 139, 1, 47.08, '2025-12-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1452, 352, 179, 3, 43.32, '2025-05-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1453, 165, 47, 2, 266.34, '2024-02-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1454, 36, 50, 1, 113.83, '2026-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1455, 65, 24, 1, 1660.45, '2025-03-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1456, 105, 61, 2, 326.88, '2024-12-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1457, 85, 51, 1, 33.46, '2024-06-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1458, 147, 148, 2, 379.16, '2025-05-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1459, 247, 21, 7, 8699.88, '2024-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1460, 242, 113, 2, 124.92, '2025-05-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1461, 80, 124, 1, 34.28, '2024-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1462, 389, 77, 2, 207.02, '2024-06-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1463, 132, 98, 2, 91.28, '2025-01-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1464, 311, 124, 1, 34.28, '2024-05-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1465, 80, 49, 1, 41.66, '2025-11-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1466, 192, 126, 2, 29.54, '2024-12-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1467, 381, 96, 2, 99.36, '2024-10-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1468, 37, 105, 3, 81.27, '2026-02-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1469, 290, 42, 1, 135.02, '2024-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1470, 385, 90, 2, 89.0, '2025-01-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1471, 357, 15, 3, 3770.04, '2025-12-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1472, 125, 123, 1, 19.07, '2025-10-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1473, 347, 8, 3, 2121.03, '2025-05-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1474, 234, 175, 1, 17.23, '2024-08-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1475, 340, 42, 1, 135.02, '2025-09-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1476, 197, 102, 3, 224.67, '2026-01-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1477, 97, 109, 1, 56.09, '2024-12-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1478, 257, 137, 3, 46.2, '2024-11-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1479, 211, 23, 1, 814.05, '2025-04-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1480, 74, 69, 3, 454.77, '2025-12-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1481, 158, 2, 10, 5209.4, '2025-10-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1482, 36, 179, 2, 28.88, '2024-12-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1483, 221, 44, 1, 76.52, '2024-07-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1484, 250, 47, 2, 266.34, '2024-05-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1485, 109, 48, 1, 47.82, '2025-08-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1486, 99, 67, 9, 1034.82, '2025-11-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1487, 320, 28, 3, 6270.45, '2024-06-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1488, 194, 32, 1, 54.43, '2024-10-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1489, 245, 125, 3, 59.9, '2024-04-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1490, 385, 2, 3, 1562.82, '2025-09-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1491, 109, 134, 3, 49.95, '2024-11-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1492, 390, 69, 6, 909.54, '2025-01-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1493, 220, 87, 2, 178.04, '2025-11-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1494, 123, 93, 3, 38.79, '2024-11-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1495, 183, 85, 3, 335.76, '2024-02-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1496, 206, 36, 1, 84.16, '2024-05-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1497, 359, 64, 2, 127.08, '2025-05-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1498, 244, 132, 2, 87.72, '2024-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1499, 165, 5, 3, 1246.5, '2025-11-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1500, 377, 84, 3, 155.07, '2024-08-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1501, 379, 157, 3, 62.28, '2024-11-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1502, 244, 169, 3, 41.13, '2025-12-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1503, 151, 156, 1, 67.53, '2024-05-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1504, 293, 184, 2, 11.74, '2024-05-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1505, 155, 173, 10, 239.1, '2026-01-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1506, 229, 30, 2, 4431.3, '2025-03-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1507, 88, 169, 3, 41.13, '2024-04-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1508, 15, 42, 6, 810.12, '2024-10-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1509, 144, 57, 3, 176.19, '2025-06-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1510, 344, 32, 3, 163.29, '2025-12-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1511, 252, 24, 3, 4981.35, '2024-10-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1512, 295, 154, 1, 61.11, '2024-10-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1513, 381, 98, 3, 136.92, '2025-09-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1514, 224, 60, 1, 53.14, '2024-05-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1515, 46, 88, 3, 127.92, '2025-12-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1516, 60, 147, 2, 592.38, '2025-11-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1517, 296, 1, 2, 3811.14, '2025-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1518, 199, 109, 2, 112.18, '2024-11-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1519, 65, 134, 3, 49.95, '2025-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1520, 5, 138, 3, 103.86, '2024-10-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1521, 152, 57, 2, 117.46, '2025-01-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1522, 75, 171, 3, 37.5, '2025-10-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1523, 164, 80, 2, 31.12, '2025-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1524, 362, 147, 2, 592.38, '2025-10-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1525, 361, 97, 1, 13.9, '2025-10-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1526, 367, 54, 3, 285.57, '2025-12-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1527, 377, 14, 5, 4042.0, '2025-09-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1528, 373, 101, 1, 54.48, '2025-10-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1529, 82, 6, 2, 3169.28, '2024-10-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1530, 179, 101, 2, 108.96, '2025-03-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1531, 357, 50, 3, 341.49, '2025-03-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1532, 166, 149, 3, 438.45, '2024-03-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1533, 156, 118, 3, 294.24, '2025-04-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1534, 248, 75, 3, 286.38, '2024-07-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1535, 101, 167, 1, 36.08, '2025-08-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1536, 348, 38, 2, 149.76, '2026-01-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1537, 87, 15, 1, 1256.68, '2026-01-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1538, 27, 31, 9, 15367.59, '2025-06-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1539, 77, 161, 3, 34.08, '2024-08-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1540, 204, 126, 2, 29.54, '2025-04-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1541, 382, 97, 3, 41.7, '2026-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1542, 46, 119, 3, 140.91, '2025-06-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1543, 335, 114, 2, 126.56, '2024-05-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1544, 251, 165, 3, 20.49, '2025-02-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1545, 294, 147, 2, 592.38, '2025-07-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1546, 304, 47, 2, 266.34, '2026-02-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1547, 153, 147, 1, 296.19, '2024-10-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1548, 276, 48, 2, 95.64, '2025-07-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1549, 275, 136, 2, 35.52, '2025-02-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1550, 366, 167, 1, 36.08, '2025-08-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1551, 61, 47, 3, 399.51, '2025-07-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1552, 229, 81, 1, 116.59, '2024-05-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1553, 83, 23, 2, 1628.1, '2025-11-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1554, 64, 130, 1, 40.51, '2026-01-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1555, 337, 1, 1, 1905.57, '2024-03-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1556, 151, 169, 2, 27.42, '2024-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1557, 161, 134, 4, 66.6, '2026-02-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1558, 262, 54, 3, 285.57, '2025-06-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1559, 19, 49, 1, 41.66, '2025-11-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1560, 69, 155, 2, 95.36, '2025-04-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1561, 374, 160, 2, 80.98, '2025-03-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1562, 333, 42, 2, 270.04, '2024-04-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1563, 218, 178, 1, 45.07, '2024-07-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1564, 138, 163, 3, 199.14, '2024-07-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1565, 337, 166, 3, 152.55, '2025-04-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1566, 79, 81, 10, 1165.9, '2024-12-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1567, 310, 64, 1, 57.19, '2024-05-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1568, 281, 105, 1, 27.09, '2025-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1569, 171, 70, 1, 107.72, '2025-09-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1570, 51, 97, 9, 125.1, '2024-07-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1571, 64, 45, 2, 288.0, '2025-11-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1572, 251, 25, 2, 1526.14, '2025-07-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1573, 283, 70, 3, 323.16, '2025-12-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1574, 385, 100, 1, 27.12, '2025-10-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1575, 273, 142, 2, 599.12, '2025-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1576, 66, 67, 1, 114.98, '2025-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1577, 65, 37, 2, 79.74, '2025-08-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1578, 372, 164, 9, 254.52, '2025-07-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1579, 312, 108, 3, 89.34, '2024-06-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1580, 240, 129, 1, 3.19, '2026-01-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1581, 368, 59, 2, 270.88, '2025-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1582, 209, 81, 3, 349.77, '2025-05-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1583, 123, 24, 1, 1660.45, '2024-03-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1584, 284, 127, 3, 292.53, '2024-02-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1585, 347, 131, 6, 57.84, '2024-05-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1586, 351, 174, 3, 82.47, '2025-07-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1587, 316, 49, 4, 166.64, '2025-08-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1588, 360, 137, 3, 46.2, '2024-08-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1589, 271, 176, 3, 123.36, '2025-05-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1590, 346, 135, 4, 12.56, '2024-06-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1591, 69, 132, 2, 87.72, '2024-03-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1592, 88, 96, 8, 397.44, '2024-10-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1593, 277, 31, 1, 1707.51, '2025-01-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1594, 2, 162, 2, 104.94, '2024-07-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1595, 330, 132, 3, 131.58, '2024-03-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1596, 317, 125, 1, 24.96, '2024-02-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1597, 153, 91, 1, 62.45, '2024-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1598, 206, 91, 1, 62.45, '2024-12-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1599, 271, 132, 3, 131.58, '2024-12-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1600, 4, 40, 3, 158.04, '2024-08-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1601, 192, 77, 2, 207.02, '2025-11-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1602, 138, 28, 10, 20901.5, '2025-06-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1603, 72, 91, 3, 187.35, '2024-02-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1604, 364, 51, 1, 33.46, '2024-09-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1605, 216, 85, 4, 447.68, '2024-06-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1606, 246, 171, 9, 112.5, '2024-05-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1607, 254, 175, 3, 51.69, '2024-10-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1608, 205, 129, 3, 9.57, '2025-08-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1609, 68, 29, 8, 6526.4, '2025-09-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1610, 177, 129, 1, 3.19, '2025-06-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1611, 176, 110, 9, 133.56, '2025-08-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1612, 149, 73, 2, 213.46, '2025-08-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1613, 79, 131, 1, 9.64, '2024-09-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1614, 135, 180, 1, 15.31, '2025-10-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1615, 362, 27, 3, 5323.83, '2025-02-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1616, 303, 162, 3, 157.41, '2024-08-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1617, 20, 71, 10, 583.2, '2025-12-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1618, 316, 52, 1, 54.51, '2024-03-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1619, 157, 180, 3, 45.93, '2024-08-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1620, 246, 16, 2, 762.48, '2025-05-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1621, 138, 94, 1, 70.05, '2024-11-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1622, 164, 13, 1, 422.45, '2024-02-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1623, 165, 55, 1, 102.9, '2024-09-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1624, 221, 48, 1, 47.82, '2025-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1625, 58, 25, 3, 2289.21, '2025-06-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1626, 67, 85, 2, 223.84, '2025-10-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1627, 302, 136, 3, 53.28, '2024-08-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1628, 300, 99, 1, 56.22, '2024-05-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1629, 309, 31, 1, 1707.51, '2026-01-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1630, 98, 50, 3, 341.49, '2025-12-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1631, 280, 159, 2, 76.32, '2025-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1632, 104, 137, 3, 46.2, '2024-03-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1633, 282, 183, 1, 15.04, '2025-11-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1634, 287, 89, 3, 272.79, '2024-12-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1635, 224, 18, 2, 1284.52, '2025-02-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1636, 12, 43, 2, 206.66, '2025-07-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1637, 24, 145, 1, 124.25, '2026-01-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1638, 204, 127, 3, 292.53, '2025-11-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1639, 85, 113, 3, 187.38, '2024-11-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1640, 206, 156, 1, 67.53, '2024-06-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1641, 112, 152, 3, 81.51, '2025-11-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1642, 234, 129, 3, 9.57, '2025-02-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1643, 113, 76, 3, 205.53, '2025-03-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1644, 24, 137, 1, 11.55, '2024-03-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1645, 143, 35, 1, 67.06, '2025-09-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1646, 128, 54, 2, 190.38, '2024-02-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1647, 310, 95, 2, 151.58, '2025-12-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1648, 136, 35, 2, 134.12, '2025-05-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1649, 30, 161, 3, 34.08, '2025-10-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1650, 144, 46, 1, 119.06, '2024-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1651, 399, 150, 1, 363.02, '2025-08-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1652, 335, 66, 3, 550.35, '2025-05-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1653, 227, 57, 2, 117.46, '2024-07-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1654, 386, 102, 1, 74.89, '2024-08-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1655, 189, 38, 4, 299.52, '2024-04-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1656, 95, 46, 1, 119.06, '2025-02-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1657, 332, 73, 1, 106.73, '2024-06-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1658, 202, 176, 3, 98.69, '2024-04-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1659, 126, 117, 4, 21.36, '2026-01-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1660, 270, 36, 3, 252.48, '2025-10-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1661, 194, 99, 1, 56.22, '2025-10-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1662, 330, 12, 1, 974.17, '2025-09-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1663, 322, 154, 1, 61.11, '2026-01-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1664, 55, 139, 3, 141.24, '2024-10-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1665, 104, 36, 2, 168.32, '2025-03-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1666, 84, 79, 2, 197.76, '2024-06-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1667, 355, 69, 3, 454.77, '2024-05-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1668, 53, 140, 1, 244.82, '2025-02-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1669, 73, 1, 4, 7622.28, '2024-02-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1670, 76, 91, 3, 187.35, '2024-08-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1671, 197, 176, 3, 123.36, '2025-10-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1672, 87, 29, 1, 815.8, '2026-01-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1673, 40, 158, 2, 108.2, '2024-11-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1674, 44, 12, 3, 2922.51, '2024-06-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1675, 308, 47, 3, 399.51, '2024-06-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1676, 155, 160, 3, 121.47, '2024-11-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1677, 256, 170, 2, 86.6, '2024-08-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1678, 40, 1, 3, 5716.71, '2026-01-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1679, 76, 82, 1, 54.71, '2024-12-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1680, 245, 18, 1, 642.26, '2024-12-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1681, 75, 24, 2, 3320.9, '2024-05-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1682, 181, 82, 2, 109.42, '2025-01-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1683, 309, 163, 2, 132.76, '2025-09-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1684, 126, 99, 2, 112.44, '2025-02-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1685, 273, 138, 3, 103.86, '2024-11-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1686, 216, 135, 2, 6.28, '2025-07-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1687, 360, 23, 1, 814.05, '2024-02-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1688, 9, 93, 2, 25.86, '2026-01-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1689, 31, 90, 2, 89.0, '2025-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1690, 72, 76, 2, 137.02, '2025-10-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1691, 216, 63, 1, 127.95, '2024-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1692, 61, 179, 3, 43.32, '2024-11-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1693, 218, 96, 1, 49.68, '2024-05-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1694, 245, 153, 3, 109.59, '2024-03-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1695, 41, 63, 1, 127.95, '2025-04-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1696, 77, 47, 2, 266.34, '2024-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1697, 154, 121, 2, 181.74, '2024-10-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1698, 356, 4, 1, 1558.13, '2024-06-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1699, 17, 155, 3, 143.04, '2025-02-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1700, 217, 175, 7, 120.61, '2025-01-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1701, 133, 147, 2, 592.38, '2025-07-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1702, 81, 70, 9, 969.48, '2025-02-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1703, 65, 55, 2, 205.8, '2024-03-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1704, 382, 144, 3, 517.56, '2024-04-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1705, 245, 81, 3, 349.77, '2024-12-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1706, 28, 96, 3, 149.04, '2024-07-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1707, 40, 93, 3, 38.79, '2025-11-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1708, 145, 42, 2, 270.04, '2024-03-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1709, 388, 80, 1, 15.56, '2024-07-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1710, 124, 69, 1, 151.59, '2025-04-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1711, 248, 12, 1, 974.17, '2024-04-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1712, 183, 73, 8, 853.84, '2025-02-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1713, 201, 92, 9, 694.62, '2025-07-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1714, 209, 129, 1, 3.19, '2025-10-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1715, 301, 98, 2, 91.28, '2025-11-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1716, 83, 39, 3, 208.83, '2024-04-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1717, 368, 60, 3, 199.29, '2025-10-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1718, 394, 184, 1, 5.87, '2026-01-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1719, 374, 156, 3, 202.59, '2025-12-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1720, 68, 87, 1, 89.02, '2025-05-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1721, 21, 183, 3, 45.12, '2024-11-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1722, 313, 156, 1, 67.53, '2024-06-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1723, 255, 25, 3, 2289.21, '2024-05-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1724, 281, 23, 2, 1628.1, '2025-01-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1725, 152, 42, 1, 135.02, '2025-04-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1726, 37, 46, 3, 357.18, '2025-01-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1727, 132, 114, 3, 210.93, '2024-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1728, 292, 125, 1, 24.96, '2025-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1729, 318, 175, 1, 17.23, '2024-11-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1730, 161, 96, 1, 49.68, '2024-12-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1731, 350, 11, 3, 2517.3, '2025-05-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1732, 126, 180, 3, 45.93, '2024-02-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1733, 149, 97, 1, 13.9, '2024-12-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1734, 199, 119, 3, 140.91, '2024-11-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1735, 274, 120, 1, 5.92, '2024-06-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1736, 204, 111, 1, 15.97, '2024-10-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1737, 310, 125, 1, 24.96, '2025-08-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1738, 233, 10, 2, 4106.76, '2025-12-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1739, 110, 82, 2, 109.42, '2026-01-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1740, 32, 93, 3, 38.79, '2026-01-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1741, 109, 6, 7, 11092.48, '2025-06-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1742, 326, 46, 1, 119.06, '2024-04-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1743, 153, 183, 2, 30.08, '2024-12-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1744, 133, 48, 3, 143.46, '2024-04-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1745, 176, 77, 1, 103.51, '2024-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1746, 244, 138, 3, 103.86, '2024-06-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1747, 182, 178, 2, 90.14, '2025-10-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1748, 306, 51, 1, 33.46, '2025-06-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1749, 166, 171, 10, 125.0, '2025-12-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1750, 378, 82, 1, 54.71, '2025-11-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1751, 256, 82, 1, 54.71, '2026-01-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1752, 267, 1, 10, 19055.7, '2025-12-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1753, 325, 116, 3, 195.78, '2025-04-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1754, 382, 49, 2, 83.32, '2025-03-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1755, 194, 56, 2, 247.72, '2026-01-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1756, 296, 4, 2, 3116.26, '2024-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1757, 158, 129, 3, 9.57, '2024-05-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1758, 234, 106, 2, 142.62, '2024-11-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1759, 268, 86, 1, 56.53, '2024-06-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1760, 91, 142, 2, 599.12, '2025-03-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1761, 338, 177, 3, 125.61, '2025-05-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1762, 51, 23, 3, 2442.15, '2024-04-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1763, 316, 106, 1, 71.31, '2025-08-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1764, 279, 26, 3, 2462.64, '2025-02-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1765, 342, 75, 3, 286.38, '2024-07-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1766, 283, 98, 1, 45.64, '2025-11-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1767, 180, 119, 2, 93.94, '2025-10-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1768, 380, 102, 1, 74.89, '2024-11-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1769, 146, 69, 3, 454.77, '2024-08-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1770, 213, 173, 1, 23.91, '2025-12-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1771, 8, 7, 1, 1846.85, '2024-11-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1772, 380, 154, 2, 122.22, '2024-06-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1773, 221, 62, 2, 128.64, '2024-11-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1774, 202, 14, 3, 2425.2, '2025-04-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1775, 326, 100, 9, 244.08, '2024-06-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1776, 265, 41, 2, 216.88, '2024-04-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1777, 259, 31, 3, 5122.53, '2025-09-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1778, 322, 67, 3, 344.94, '2024-06-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1779, 48, 24, 1, 1660.45, '2024-02-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1780, 79, 8, 3, 2121.03, '2025-03-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1781, 293, 98, 1, 45.64, '2025-08-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1782, 325, 162, 3, 157.41, '2024-07-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1783, 114, 77, 1, 103.51, '2025-10-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1784, 194, 67, 3, 344.94, '2024-09-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1785, 322, 6, 3, 4753.92, '2025-04-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1786, 236, 153, 1, 36.53, '2024-05-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1787, 93, 24, 1, 1660.45, '2025-10-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1788, 107, 101, 1, 54.48, '2025-09-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1789, 250, 161, 1, 11.36, '2025-07-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1790, 161, 163, 4, 265.52, '2025-10-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1791, 6, 46, 3, 357.18, '2025-05-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1792, 61, 88, 10, 426.4, '2025-01-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1793, 280, 2, 1, 520.94, '2025-08-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1794, 99, 156, 1, 67.53, '2024-02-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1795, 79, 56, 3, 371.58, '2024-05-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1796, 168, 36, 1, 84.16, '2025-08-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1797, 138, 71, 2, 116.64, '2026-01-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1798, 283, 167, 1, 36.08, '2025-08-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1799, 263, 103, 5, 205.0, '2024-08-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1800, 368, 72, 8, 803.44, '2024-04-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1801, 301, 80, 1, 15.56, '2024-07-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1802, 222, 115, 2, 102.82, '2025-08-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1803, 319, 28, 3, 6270.45, '2024-12-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1804, 192, 162, 3, 157.41, '2025-01-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1805, 262, 65, 2, 270.88, '2024-09-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1806, 331, 136, 2, 35.52, '2024-03-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1807, 166, 110, 3, 44.52, '2024-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1808, 337, 96, 2, 99.36, '2025-09-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1809, 164, 177, 1, 41.87, '2024-10-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1810, 165, 60, 2, 132.86, '2024-11-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1811, 270, 56, 1, 123.86, '2024-09-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1812, 344, 20, 2, 4334.46, '2025-06-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1813, 223, 82, 3, 164.13, '2024-07-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1814, 253, 128, 1, 48.86, '2024-09-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1815, 232, 44, 3, 229.56, '2025-04-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1816, 11, 73, 1, 106.73, '2025-09-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1817, 3, 119, 1, 46.97, '2025-10-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1818, 274, 136, 1, 17.76, '2025-05-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1819, 49, 107, 3, 58.08, '2024-09-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1820, 205, 21, 2, 2485.68, '2024-10-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1821, 202, 77, 3, 310.53, '2025-01-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1822, 63, 96, 6, 298.08, '2024-04-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1823, 6, 36, 1, 84.16, '2024-10-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1824, 224, 58, 1, 174.12, '2024-07-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1825, 189, 138, 10, 346.2, '2025-12-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1826, 133, 12, 1, 974.17, '2025-12-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1827, 169, 177, 3, 125.61, '2025-10-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1828, 88, 36, 2, 168.32, '2024-05-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1829, 76, 150, 3, 1089.06, '2026-01-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1830, 229, 172, 1, 4.41, '2025-03-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1831, 339, 126, 9, 132.93, '2024-10-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1832, 116, 24, 1, 1660.45, '2024-09-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1833, 286, 63, 3, 383.85, '2025-08-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1834, 40, 20, 9, 15604.06, '2024-03-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1835, 111, 120, 3, 17.76, '2024-07-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1836, 107, 152, 3, 81.51, '2025-02-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1837, 160, 182, 2, 11.44, '2024-06-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1838, 67, 57, 5, 293.65, '2024-11-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1839, 318, 132, 1, 43.86, '2024-12-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1840, 217, 43, 3, 309.99, '2026-01-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1841, 53, 38, 2, 119.81, '2024-05-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1842, 9, 118, 1, 98.08, '2024-03-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1843, 232, 91, 1, 62.45, '2025-12-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1844, 221, 55, 1, 102.9, '2025-02-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1845, 28, 113, 1, 62.46, '2024-04-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1846, 375, 109, 1, 56.09, '2024-07-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1847, 142, 136, 3, 53.28, '2025-02-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1848, 26, 166, 1, 40.68, '2024-05-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1849, 19, 148, 1, 151.66, '2024-03-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1850, 116, 159, 3, 114.48, '2024-12-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1851, 113, 178, 1, 45.07, '2024-07-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1852, 178, 164, 1, 28.28, '2025-04-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1853, 49, 48, 2, 95.64, '2025-07-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1854, 157, 177, 1, 41.87, '2024-10-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1855, 96, 86, 3, 169.59, '2024-05-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1856, 243, 110, 2, 29.68, '2024-06-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1857, 40, 44, 3, 229.56, '2025-11-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1858, 243, 150, 1, 363.02, '2025-11-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1859, 24, 5, 2, 831.0, '2026-02-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1860, 269, 129, 1, 3.19, '2024-06-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1861, 156, 86, 2, 113.06, '2025-08-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1862, 132, 170, 2, 86.6, '2024-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1863, 181, 78, 3, 221.25, '2025-11-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1864, 306, 124, 1, 34.28, '2025-07-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1865, 11, 38, 9, 673.92, '2025-11-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1866, 73, 92, 2, 154.36, '2024-08-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1867, 221, 93, 1, 12.93, '2024-04-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1868, 194, 164, 1, 28.28, '2024-09-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1869, 279, 116, 10, 652.6, '2025-11-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1870, 348, 90, 3, 133.5, '2024-11-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1871, 142, 80, 1, 15.56, '2025-04-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1872, 314, 32, 2, 108.86, '2025-01-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1873, 178, 74, 1, 139.35, '2024-02-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1874, 76, 120, 3, 17.76, '2025-02-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1875, 286, 171, 1, 12.5, '2025-01-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1876, 151, 4, 2, 3116.26, '2024-07-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1877, 64, 14, 2, 1616.8, '2024-02-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1878, 1, 13, 1, 422.45, '2024-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1879, 258, 171, 8, 100.0, '2025-03-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1880, 366, 70, 1, 107.72, '2025-08-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1881, 42, 75, 1, 95.46, '2025-01-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1882, 348, 164, 2, 56.56, '2024-12-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1883, 134, 78, 2, 147.5, '2024-06-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1884, 166, 149, 1, 146.15, '2025-09-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1885, 214, 142, 1, 299.56, '2024-09-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1886, 322, 119, 2, 93.94, '2024-11-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1887, 224, 25, 1, 763.07, '2024-12-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1888, 351, 183, 2, 30.08, '2024-11-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1889, 211, 119, 1, 46.97, '2025-03-26'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1890, 216, 23, 3, 2442.15, '2025-05-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1891, 125, 149, 2, 292.3, '2024-05-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1892, 290, 76, 1, 68.51, '2025-10-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1893, 344, 2, 2, 1041.88, '2025-08-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1894, 28, 22, 1, 1051.42, '2025-10-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1895, 171, 153, 1, 36.53, '2024-09-19'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1896, 170, 16, 1, 381.24, '2025-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1897, 368, 14, 3, 2425.2, '2025-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1898, 254, 35, 1, 67.06, '2025-06-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1899, 155, 161, 2, 22.72, '2026-01-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1900, 249, 160, 3, 97.18, '2024-05-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1901, 310, 31, 2, 3415.02, '2024-08-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1902, 13, 130, 2, 81.02, '2024-03-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1903, 208, 124, 9, 308.52, '2025-10-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1904, 280, 67, 3, 344.94, '2025-06-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1905, 316, 32, 2, 108.86, '2025-05-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1906, 382, 169, 1, 13.71, '2025-02-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1907, 103, 122, 2, 168.58, '2024-09-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1908, 302, 127, 2, 195.02, '2024-09-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1909, 55, 119, 2, 93.94, '2024-12-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1910, 235, 31, 2, 3415.02, '2024-02-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1911, 331, 167, 3, 108.24, '2025-05-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1912, 182, 36, 2, 168.32, '2025-07-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1913, 82, 92, 2, 154.36, '2025-11-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1914, 362, 135, 2, 6.28, '2024-03-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1915, 181, 168, 3, 176.64, '2024-10-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1916, 72, 72, 3, 301.29, '2025-06-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1917, 35, 166, 2, 101.7, '2026-01-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1918, 93, 148, 3, 568.74, '2025-02-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1919, 133, 34, 3, 288.0, '2025-04-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1920, 300, 159, 3, 91.58, '2024-04-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1921, 376, 41, 1, 108.44, '2025-06-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1922, 348, 122, 2, 168.58, '2024-08-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1923, 376, 61, 1, 163.44, '2025-11-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1924, 197, 108, 5, 148.9, '2024-03-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1925, 20, 19, 2, 3441.82, '2024-11-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1926, 16, 45, 2, 288.0, '2025-07-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1927, 327, 147, 2, 592.38, '2024-07-09'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1928, 348, 74, 1, 139.35, '2025-08-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1929, 271, 50, 1, 113.83, '2024-02-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1930, 50, 53, 1, 171.25, '2024-05-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1931, 397, 105, 2, 54.18, '2025-11-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1932, 350, 165, 2, 13.66, '2024-07-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1933, 243, 129, 2, 6.38, '2025-05-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1934, 71, 18, 2, 1284.52, '2025-05-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1935, 292, 21, 1, 1242.84, '2025-02-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1936, 256, 60, 1, 66.43, '2025-03-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1937, 149, 65, 2, 270.88, '2024-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1938, 81, 74, 1, 139.35, '2025-04-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1939, 313, 129, 2, 6.38, '2025-05-10'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1940, 57, 150, 2, 726.04, '2025-12-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1941, 16, 9, 2, 4123.38, '2024-08-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1942, 392, 16, 1, 381.24, '2025-03-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1943, 388, 170, 4, 173.2, '2024-03-28'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1944, 289, 157, 3, 62.28, '2025-08-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1945, 37, 107, 2, 38.72, '2025-05-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1946, 283, 123, 7, 133.49, '2024-09-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1947, 19, 128, 2, 97.72, '2025-06-04'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1948, 156, 59, 1, 135.44, '2024-03-23'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1949, 101, 137, 3, 46.2, '2024-11-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1950, 10, 142, 2, 599.12, '2024-11-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1951, 65, 111, 3, 47.91, '2025-03-18'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1952, 61, 158, 9, 486.9, '2024-11-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1953, 224, 15, 1, 1005.34, '2024-04-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1954, 212, 138, 2, 69.24, '2026-02-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1955, 369, 64, 3, 152.5, '2024-04-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1956, 93, 73, 1, 106.73, '2024-11-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1957, 126, 75, 1, 95.46, '2024-12-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1958, 337, 20, 1, 2167.23, '2025-12-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1959, 362, 92, 3, 231.54, '2025-11-08'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1960, 155, 94, 3, 210.15, '2024-09-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1961, 270, 69, 2, 303.18, '2025-03-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1962, 178, 106, 3, 213.93, '2025-05-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1963, 105, 36, 3, 252.48, '2025-02-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1964, 284, 54, 1, 95.19, '2025-07-31'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1965, 19, 61, 3, 490.32, '2025-06-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1966, 59, 6, 2, 3169.28, '2024-03-06'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1967, 197, 77, 3, 310.53, '2024-04-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1968, 313, 99, 2, 112.44, '2025-11-11'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1969, 23, 58, 1, 174.12, '2024-06-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1970, 27, 170, 2, 86.6, '2025-03-12'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1971, 14, 156, 3, 202.59, '2024-10-24'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1972, 135, 152, 1, 27.17, '2024-03-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1973, 319, 112, 3, 172.68, '2025-09-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1974, 386, 15, 3, 3770.04, '2025-03-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1975, 348, 74, 3, 418.05, '2025-12-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1976, 294, 146, 3, 667.11, '2024-08-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1977, 240, 61, 1, 163.44, '2024-02-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1978, 141, 22, 10, 10514.2, '2025-09-05'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1979, 293, 102, 1, 74.89, '2024-09-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1980, 129, 168, 3, 176.64, '2025-05-02'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1981, 292, 170, 2, 86.6, '2024-08-30'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1982, 237, 5, 2, 831.0, '2025-01-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1983, 246, 164, 3, 84.84, '2024-07-25'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1984, 41, 71, 3, 174.96, '2025-03-20'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1985, 226, 47, 1, 133.17, '2025-09-16'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1986, 254, 33, 1, 92.98, '2024-06-22'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1987, 336, 13, 1, 422.45, '2025-06-07'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1988, 260, 113, 2, 124.92, '2024-03-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1989, 32, 183, 10, 150.4, '2026-01-21'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1990, 181, 139, 3, 141.24, '2025-04-27'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1991, 40, 130, 2, 81.02, '2025-02-17'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1992, 167, 147, 2, 592.38, '2025-10-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1993, 329, 110, 3, 44.52, '2024-05-29'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1994, 185, 86, 9, 508.77, '2025-12-01'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1995, 151, 160, 1, 40.49, '2024-11-14'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1996, 77, 152, 1, 27.17, '2025-05-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1997, 262, 184, 3, 17.61, '2025-02-15'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1998, 177, 56, 2, 247.72, '2025-04-13'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (1999, 77, 98, 3, 136.92, '2025-06-03'); INSERT INTO sales (id, customer_id, product_id, quantity, amount, sale_date) VALUES (2000, 115, 145, 2, 248.5, '2025-04-07'); -- Returns (5-8% of sales, return_date 3-30 days after sale, amount = sale amount) INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (1, 1104, 27.42, 'Changed mind', '2025-06-28'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (2, 1502, 41.13, 'Not as described', '2025-12-27'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (3, 249, 51.69, 'Defective', '2024-10-26'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (4, 1736, 15.97, 'Defective', '2024-11-13'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (5, 1800, 803.44, 'Changed mind', '2024-05-03'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (6, 1081, 51.69, 'Size fit issue', '2025-06-26'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (7, 1635, 1284.52, 'Size fit issue', '2025-03-22'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (8, 106, 106.89, 'Size fit issue', '2025-04-21'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (9, 1244, 47.08, 'Size fit issue', '2024-05-03'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (10, 968, 1631.6, 'Wrong item', '2025-02-07'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (11, 1351, 293.65, 'Wrong item', '2025-06-21'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (12, 1075, 187.35, 'Not as described', '2024-10-11'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (13, 1066, 5.92, 'Not as described', '2025-07-12'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (14, 904, 189.58, 'Wrong item', '2025-07-23'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (15, 650, 8.8, 'Not as described', '2024-02-19'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (16, 552, 76.52, 'Changed mind', '2024-12-30'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (17, 400, 1041.88, 'Size fit issue', '2024-08-12'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (18, 1713, 694.62, 'Changed mind', '2025-07-29'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (19, 1179, 372.75, 'Wrong item', '2024-05-06'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (20, 601, 68.56, 'Not as described', '2024-10-27'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (21, 1866, 154.36, 'Defective', '2024-08-26'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (22, 500, 45.93, 'Changed mind', '2025-08-23'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (23, 674, 210.15, 'Changed mind', '2024-08-29'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (24, 498, 69.24, 'Not as described', '2025-05-21'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (25, 1637, 124.25, 'Not as described', '2026-02-06'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (26, 1573, 323.16, 'Not as described', '2025-12-22'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (27, 742, 621.25, 'Size fit issue', '2024-11-09'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (28, 473, 17.23, 'Changed mind', '2025-11-08'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (29, 934, 36.53, 'Changed mind', '2025-02-23'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (30, 645, 62.28, 'Wrong item', '2025-07-27'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (31, 1533, 294.24, 'Defective', '2025-04-16'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (32, 1992, 592.38, 'Wrong item', '2025-11-12'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (33, 237, 67.53, 'Not as described', '2026-01-12'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (34, 1420, 28.6, 'Not as described', '2024-10-28'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (35, 494, 228.2, 'Changed mind', '2026-01-20'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (36, 912, 83.74, 'Changed mind', '2024-04-21'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (37, 1501, 62.28, 'Wrong item', '2024-11-14'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (38, 1962, 213.93, 'Changed mind', '2025-05-19'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (39, 1803, 6270.45, 'Size fit issue', '2024-12-31'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (40, 840, 1284.52, 'Wrong item', '2025-07-18'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (41, 164, 286.38, 'Changed mind', '2024-04-11'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (42, 721, 3116.26, 'Not as described', '2025-10-11'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (43, 1148, 326.88, 'Defective', '2024-12-03'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (44, 1036, 815.8, 'Changed mind', '2025-09-17'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (45, 157, 124.92, 'Defective', '2025-10-15'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (46, 1874, 17.76, 'Not as described', '2025-03-07'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (47, 1339, 109.59, 'Not as described', '2025-05-20'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (48, 992, 149.76, 'Wrong item', '2025-04-07'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (49, 1240, 30.62, 'Not as described', '2025-06-02'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (50, 472, 1256.68, 'Not as described', '2025-08-23'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (51, 920, 974.17, 'Wrong item', '2025-06-23'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (52, 1611, 133.56, 'Size fit issue', '2025-08-13'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (53, 858, 146.58, 'Defective', '2024-09-07'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (54, 471, 2337.2, 'Wrong item', '2024-03-14'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (55, 1167, 99.36, 'Not as described', '2026-01-14'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (56, 1696, 266.34, 'Size fit issue', '2024-06-12'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (57, 1694, 109.59, 'Wrong item', '2024-03-23'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (58, 257, 12.93, 'Size fit issue', '2025-12-08'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (59, 1896, 381.24, 'Defective', '2025-04-26'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (60, 1102, 49.92, 'Defective', '2025-01-18'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (61, 502, 1720.91, 'Size fit issue', '2025-10-09'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (62, 1591, 87.72, 'Changed mind', '2024-04-07'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (63, 1863, 221.25, 'Wrong item', '2025-12-02'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (64, 835, 68.56, 'Defective', '2024-11-08'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (65, 1381, 100.38, 'Defective', '2024-09-02'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (66, 1198, 115.52, 'Wrong item', '2025-12-04'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (67, 1364, 66.38, 'Defective', '2024-04-11'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (68, 283, 221.25, 'Wrong item', '2025-07-22'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (69, 1241, 114.48, 'Changed mind', '2025-07-29'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (70, 534, 869.75, 'Size fit issue', '2025-06-22'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (71, 1630, 341.49, 'Not as described', '2026-01-10'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (72, 588, 6646.95, 'Defective', '2026-01-30'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (73, 700, 3320.9, 'Changed mind', '2025-04-27'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (74, 643, 115.12, 'Size fit issue', '2024-06-18'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (75, 242, 192.0, 'Not as described', '2025-11-01'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (76, 167, 38.14, 'Wrong item', '2025-03-20'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (77, 837, 45.07, 'Not as described', '2025-07-12'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (78, 863, 255.9, 'Defective', '2025-09-06'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (79, 1035, 98.88, 'Defective', '2024-06-11'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (80, 304, 3770.04, 'Wrong item', '2026-01-10'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (81, 1180, 54.1, 'Size fit issue', '2025-06-10'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (82, 1013, 174.12, 'Wrong item', '2024-03-12'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (83, 1296, 215.44, 'Wrong item', '2025-11-20'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (84, 1806, 35.52, 'Size fit issue', '2024-03-14'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (85, 1583, 1660.45, 'Size fit issue', '2024-04-01'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (86, 406, 96.0, 'Wrong item', '2025-03-12'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (87, 1843, 62.45, 'Size fit issue', '2026-01-13'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (88, 369, 33.46, 'Wrong item', '2025-10-26'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (89, 1795, 371.58, 'Defective', '2024-05-16'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (90, 930, 1242.84, 'Wrong item', '2024-07-15'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (91, 32, 125.61, 'Size fit issue', '2025-04-27'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (92, 342, 124.25, 'Size fit issue', '2025-08-26'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (93, 248, 105.36, 'Not as described', '2024-12-17'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (94, 540, 140.1, 'Wrong item', '2025-12-10'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (95, 1568, 27.09, 'Size fit issue', '2025-05-31'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (96, 1136, 11.36, 'Changed mind', '2024-05-13'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (97, 1457, 33.46, 'Size fit issue', '2024-07-16'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (98, 1905, 108.86, 'Not as described', '2025-06-16'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (99, 963, 227.37, 'Changed mind', '2025-07-25'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (100, 1522, 37.5, 'Not as described', '2025-11-05'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (101, 207, 513.75, 'Wrong item', '2025-04-27'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (102, 259, 406.32, 'Wrong item', '2024-02-23'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (103, 1781, 45.64, 'Size fit issue', '2025-08-19'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (104, 70, 54.1, 'Size fit issue', '2026-01-25'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (105, 1708, 270.04, 'Changed mind', '2024-04-22'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (106, 884, 103.8, 'Size fit issue', '2025-11-28'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (107, 50, 127.95, 'Defective', '2025-12-18'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (108, 1414, 286.38, 'Defective', '2024-04-11'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (109, 150, 56.22, 'Changed mind', '2025-01-07'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (110, 272, 98.88, 'Size fit issue', '2025-03-19'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (111, 1055, 124.92, 'Wrong item', '2025-07-07'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (112, 1776, 216.88, 'Size fit issue', '2024-05-20'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (113, 1085, 25.0, 'Wrong item', '2025-05-14'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (114, 1882, 56.56, 'Changed mind', '2024-12-19'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (115, 795, 197.76, 'Defective', '2025-04-12'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (116, 1852, 28.28, 'Size fit issue', '2025-05-07'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (117, 865, 85.28, 'Wrong item', '2024-03-14'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (118, 726, 38.16, 'Size fit issue', '2025-02-09'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (119, 262, 348.24, 'Size fit issue', '2025-01-10'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (120, 824, 169.59, 'Size fit issue', '2025-08-13'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (121, 1428, 197.76, 'Wrong item', '2025-05-19'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (122, 1141, 418.05, 'Changed mind', '2024-11-25'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (123, 495, 106.73, 'Not as described', '2025-03-04'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (124, 1459, 8699.88, 'Size fit issue', '2024-11-18'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (125, 244, 831.0, 'Not as described', '2024-02-24'); INSERT INTO returns (id, sale_id, amount, reason, return_date) VALUES (126, 690, 13.71, 'Changed mind', '2026-03-06'); -- Reset sequences after explicit IDs SELECT setval(pg_get_serial_sequence('products', 'id'), COALESCE((SELECT MAX(id) FROM products), 1)); SELECT setval(pg_get_serial_sequence('customers', 'id'), COALESCE((SELECT MAX(id) FROM customers), 1)); SELECT setval(pg_get_serial_sequence('sales', 'id'), COALESCE((SELECT MAX(id) FROM sales), 1)); SELECT setval(pg_get_serial_sequence('returns', 'id'), COALESCE((SELECT MAX(id) FROM returns), 1)); SELECT setval(pg_get_serial_sequence('promotions', 'id'), COALESCE((SELECT MAX(id) FROM promotions), 1));