-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheCommerceData.sql
More file actions
5067 lines (4992 loc) · 314 KB
/
Copy patheCommerceData.sql
File metadata and controls
5067 lines (4992 loc) · 314 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CREATE DATABASE IF NOT EXISTS Ecommerce;
USE Ecommerce;
CREATE TABLE IF NOT EXISTS users
(user_id VARCHAR(30) PRIMARY KEY,
username VARCHAR(25),
email VARCHAR(50),
pwd VARCHAR(8),
user_role VARCHAR(10));
CREATE TABLE IF NOT EXISTS user_address
(add_id VARCHAR(30) PRIMARY KEY,
user_id VARCHAR(30),
road VARCHAR(100),
city VARCHAR(50),
state VARCHAR(50),
pincode VARCHAR(10),
FOREIGN KEY (user_id) REFERENCES users(user_id));
CREATE TABLE IF NOT EXISTS user_session
(session_id VARCHAR(40) PRIMARY KEY,
user_id VARCHAR(30),
token VARCHAR(64),
login_time DATETIME,
logout_time DATETIME,
FOREIGN KEY (user_id) REFERENCES users(user_id));
CREATE TABLE categories
(category_id INT PRIMARY KEY,
name VARCHAR(30) NOT NULL,
description VARCHAR(100),
parent_id INT DEFAULT NULL,
FOREIGN KEY (parent_id) REFERENCES categories(category_id));
CREATE TABLE product
(product_id INT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
price DECIMAL(10,2) NOT NULL,
category_id INT,
stock INT DEFAULT 0,
FOREIGN KEY (category_id) REFERENCES categories(category_id));
CREATE TABLE product_variants
(varaintid INT PRIMARY KEY,
product_id INT,
color VARCHAR(50),
size VARCHAR(30),
price DECIMAL(10,2),
stock INT DEFAULT 0,
FOREIGN KEY (product_id) REFERENCES product(product_id));
CREATE TABLE product_discounts
(discount_id INT PRIMARY KEY,
product_id INT,
discount_percent DECIMAL(5,2),
start_date DATE ,
end_date DATE,
FOREIGN KEY (product_id) REFERENCES product(product_id));
CREATE TABLE suppliers
(supplier_id INT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
contact_name VARCHAR(100),
phone VARCHAR(30),
email VARCHAR(30),
address VARCHAR(200));
CREATE TABLE product_images
(image_id INT PRIMARY KEY,
product_id INT,
image_url VARCHAR(150),
FOREIGN KEY (product_id) REFERENCES product(product_id));
CREATE TABLE warehouse
(warehouse_id INT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
location VARCHAR(200),
capacity INT,
product_id INT,
stock INT, FOREIGN KEY (product_id) REFERENCES product(product_id));
CREATE TABLE cart (
cart_id INT PRIMARY KEY AUTO_INCREMENT,
user_id VARCHAR(30),
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
CREATE TABLE cart_items (
cart_item_id INT PRIMARY KEY AUTO_INCREMENT,
cart_id INT,
product_id INT,
quantity INT DEFAULT 1 CHECK (quantity > 0),
FOREIGN KEY (cart_id) REFERENCES cart(cart_id) ON DELETE CASCADE,
FOREIGN KEY (product_id) REFERENCES product(product_id)
);
CREATE TABLE wishlist (
wishlist_id INT PRIMARY KEY AUTO_INCREMENT,
user_id VARCHAR(30),
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
CREATE TABLE wishlist_items (
wishlist_item_id INT PRIMARY KEY AUTO_INCREMENT,
wishlist_id INT,
product_id INT,
FOREIGN KEY (wishlist_id) REFERENCES wishlist(wishlist_id) ON DELETE CASCADE,
FOREIGN KEY (product_id) REFERENCES product(product_id)
);
CREATE TABLE orders
(
order_id INT PRIMARY KEY,
user_id VARCHAR(30),
product_id INT, order_date DATE, quantity INT,
total_amount DECIMAL(10,2), status VARCHAR(20),
FOREIGN KEY (product_id) REFERENCES product(product_id),
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
CREATE TABLE payment (
payment_id INT PRIMARY KEY,
order_id INT, payment_date DATE,
amount DECIMAL(10,2), payment_mode VARCHAR(30),
payment_status VARCHAR(20), transaction_id VARCHAR(50),
FOREIGN KEY (order_id) REFERENCES orders(order_id)
);
CREATE TABLE shipping (
shipping_id INT PRIMARY KEY,
order_id INT,
shipping_date DATE,
delivery_date DATE,
shipping_status VARCHAR(20),
courier_name VARCHAR(50),
tracking_number VARCHAR(50),
FOREIGN KEY (order_id) REFERENCES orders(order_id)
);
CREATE TABLE reviews (
review_id INT PRIMARY KEY,
order_id INT,
user_id VARCHAR(30),
product_id INT,
rating INT CHECK (rating BETWEEN 1 AND 5),
review_text VARCHAR(255),
review_date DATE,
FOREIGN KEY (order_id) REFERENCES orders(order_id),
FOREIGN KEY (product_id) REFERENCES product(product_id),
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
CREATE TABLE refunds (
refund_id INT PRIMARY KEY,
order_id INT NOT NULL,
payment_id INT NOT NULL,
refund_date DATE,
refund_amount DECIMAL(10,2),
refund_reason VARCHAR(100),
refund_status VARCHAR(20),
FOREIGN KEY (order_id) REFERENCES orders(order_id)
ON UPDATE CASCADE
ON DELETE CASCADE,
FOREIGN KEY (payment_id) REFERENCES payment(payment_id)
ON UPDATE CASCADE
ON DELETE CASCADE
);
CREATE TABLE customer_support (
ticket_id INT PRIMARY KEY,
order_id INT NOT NULL,
user_id VARCHAR(30) NOT NULL,
issue_type VARCHAR(50),
issue_description VARCHAR(255),
ticket_status VARCHAR(20),
created_date DATE,
resolved_date DATE,
FOREIGN KEY (order_id) REFERENCES orders(order_id) ON UPDATE CASCADE,
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
DELIMITER $$
CREATE PROCEDURE populate_users()
BEGIN
DECLARE i INT DEFAULT 1;
WHILE i <= 500 DO
INSERT INTO Users (user_id, username, email, pwd, user_role)
VALUES (
CONCAT('U', LPAD(i, 4, '0')),
CONCAT('user', i),
CONCAT('user', i, '@example.com'),
LPAD(FLOOR(RAND() * 99999999), 8, '0'),
ELT(FLOOR(1 + RAND() * 3), 'admin', 'seller', 'buyer')
);
SET i = i + 1;
END WHILE;
END$$
SELECT * FROM users;
DELIMITER ;
CALL populate_users();
DELIMITER $$
CREATE PROCEDURE populate_user_sessions()
BEGIN
DECLARE i INT DEFAULT 1;
DECLARE login_time_val DATETIME;
DECLARE logout_time_val DATETIME;
WHILE i <= 500 DO
SET login_time_val = TIMESTAMPADD(
SECOND,
FLOOR(RAND() * 86400),
DATE_SUB(NOW(), INTERVAL FLOOR(RAND() * 30) DAY)
);
SET logout_time_val = TIMESTAMPADD(
MINUTE,
FLOOR(RAND() * 180),
login_time_val
);
INSERT INTO user_session (session_id, user_id, token, login_time, logout_time)
VALUES (
CONCAT('S', LPAD(i, 5, '0')), -- e.g. S00001, S00002, ...
CONCAT('U', LPAD(FLOOR(1 + RAND() * 500), 4, '0')), -- random user
SHA2(CONCAT('token', i, RAND()), 256), -- random 64-char token
login_time_val,
logout_time_val
);
SET i = i + 1;
END WHILE;
END$$
DELIMITER ;
CALL populate_user_sessions();
DELIMITER $$
CREATE PROCEDURE populate_user_address()
BEGIN
DECLARE i INT DEFAULT 1;
DECLARE cities JSON;
DECLARE states JSON;
DECLARE random_city VARCHAR(50);
DECLARE random_state VARCHAR(50);
DECLARE random_pincode VARCHAR(10);
SET cities = JSON_ARRAY('Mumbai','Delhi','Bengaluru','Chennai','Kolkata',
'Hyderabad','Ahmedabad','Pune','Jaipur','Lucknow',
'Surat','Bhopal','Indore','Nagpur','Patna',
'Vadodara','Chandigarh','Coimbatore','Thiruvananthapuram','Ranchi');
SET states = JSON_ARRAY('Maharashtra','Delhi','Karnataka','Tamil Nadu','West Bengal',
'Telangana','Gujarat','Rajasthan','Uttar Pradesh','Madhya Pradesh',
'Bihar','Punjab','Kerala','Haryana','Odisha');
WHILE i <= 500 DO
SET random_city = JSON_UNQUOTE(JSON_EXTRACT(cities, CONCAT('$[', FLOOR(RAND() * JSON_LENGTH(cities)), ']')));
SET random_state = JSON_UNQUOTE(JSON_EXTRACT(states, CONCAT('$[', FLOOR(RAND() * JSON_LENGTH(states)), ']')));
SET random_pincode = LPAD(FLOOR(100000 + RAND() * 899999), 6, '0');
INSERT INTO User_Address (add_id, user_id, road, city, state, pincode)
VALUES (
CONCAT('A', LPAD(i, 4, '0')), -- e.g. A0001, A0002, ...
CONCAT('U', LPAD(i, 4, '0')), -- matches user IDs from Users table
CONCAT(FLOOR(1 + RAND() * 200), ' ',
ELT(FLOOR(1 + RAND() * 5), 'MG Road', 'Park Street', 'Ring Road', 'Main Street', 'Station Road')),
random_city,
random_state,
random_pincode
);
SET i = i + 1;
END WHILE;
END$$
DELIMITER ;
CALL populate_user_address();
INSERT INTO categories
(category_id,name,description,parent_id)
VALUES
(1,'Electronics','Electronic devices and accessories',NULL),
(2,'Computers & Laptops','Desktops, laptops, components & accessories',1),
(3,'Smartphones & Tablets','Mobile phones, tablets and accessories',1),
(4,'TV & Home Cinema','Televisions, home theatre systems & accessories',1),
(5,'Cameras & Photography','Digital cameras, lenses, photo gear',1),
(6,'Audio Equipment','Speakers, headphones, sound systems',1),
(7,'Wearable Technology','Smartwatches, fitness trackers, VR headsets',1),
(8,'Home & Kitchen','Home appliances and kitchenware',NULL),
(9,'Large Appliances','Refrigerators, washing machines, ovens',8),
(10,'Small Kitchen Appliances','Blenders, mixers, coffee machines, toasters',8),
(11,'Furniture','Indoor and outdoor furniture',8),
(12,'Home Decor','Decorative items, lighting, rugs & wall art',8),
(13,'Books','Printed & digital books of all genres',NULL),
(14,'Fiction','Fictional books: novels, short stories',13),
(15,'Non-Fiction','Non-fiction books: biography, history, self-help',13),
(16,'Children’s Books','Books for children and young readers',13),
(17,'Clothing & Accessories','Men’s, women’s & kids clothing and accessories',NULL),
(18,'Men’s Clothing','Apparel for men',17),
(19,'Women’s Clothing','Apparel for women',17),
(20,'Kids’ Clothing','Apparel for children',17),
(21,'Shoes & Footwear','Shoes, sandals, boots for all',17),
(22,'Jewellery & Watches','Jewellery, watches and accessories',NULL),
(23,'Beauty & Personal Care','Cosmetics, skincare, haircare and grooming',NULL),
(24,'Health & Wellness','Health products, wellness items and vitamins',23),
(25,'Sports & Outdoors','Sports gear, outdoor recreation equipment',NULL),
(26,'Fitness Equipment','Gym gear, exercise machines, fitness accessories',25),
(27,'Outdoor Recreation','Camping, hiking, biking gear',25),
(28,'Toys & Games','Toys for children and games for all ages',NULL),
(29,'Board Games & Puzzles','Board games, jigsaw puzzles, strategy games',28),
(30,'Video Games & Consoles','Gaming consoles and video games',28),
(31,'Pet Supplies','Products for pets (dogs, cats, fish, birds)',NULL),
(32,'Dog Supplies','Dog food, toys, accessories',31),
(33,'Cat Supplies','Cat food, toys, accessories',31),
(34,'Fish & Aquatic Pets','Aquariums, fish food, accessories',31),
(35,'Automotive','Car and motorcycle parts, accessories',NULL),
(36,'Car Electronics','Car audio, navigation, accessories',35),
(37,'Motorcycle Gear','Helmets, jackets, accessories for bikes',35),
(38,'Office Products','Office supplies, furniture & stationery',NULL),
(39,'Stationery & Paper','Notebooks, paper, writing instruments',38),
(40,'Printers & Ink','Printers, cartridges, supplies',38),
(41,'Garden & Outdoor Living','Garden furniture, tools and outdoor décor',NULL),
(42,'Gardening Tools','Hand tools, power tools for gardening',41),
(43,'Outdoor Furniture','Patio sets, loungers, umbrellas',41),
(44,'Food & Beverages','Packaged foods and drink items',NULL),
(45,'Fresh Foods','Perishables: produce, meats, dairy',44),
(46,'Packaged & Snack Foods','Chips, cookies, snack packs',44),
(47,'Beverages','Non-alcoholic drinks, water, juices',44),
(48,'Arts & Crafts','Supplies for crafting, painting, sculpting',NULL),
(49,'Musical Instruments','Guitars, keyboards, drums and accessories',NULL),
(50,'Travel & Luggage','Suitcases, travel bags, accessories',NULL),
(51,'Baby & Toddler','Products for babies and toddlers',NULL),
(52,'Baby Clothing','Clothing for infants and toddlers',51),
(53,'Baby Gear','Strollers, car seats, high chairs',51),
(54,'Gift & Party Supplies','Gifts, party décor, greeting cards',NULL),
(55,'Watches & Accessories','Wristwatches, straps, accessories',22),
(56,'Craft Beverages','Tea, coffee, specialty drinks',44),
(57,'Smart Home','Smart thermostats, lighting, security—IoT devices',1),
(58,'Sustainable Products','Eco-friendly and green products',NULL),
(59,'Luxury Goods','High-end apparel, accessories & lifestyle items',NULL),
(60,'Collectibles & Memorabilia','Collector items, rare goods, signed memorabilia',NULL),
(61,'Medical Supplies','Medical equipment and supplies',NULL),
(62,'Safety & Security','Home safety gear, security systems',NULL),
(63,'Industrial & Scientific','Industrial equipment, lab supplies',NULL),
(64,'Software & Services','Digital software, subscriptions and services',NULL),
(65,'DIY & Tools','Power tools, hand tools, hardware items',NULL),
(66,'Building Materials','Construction materials, plumbing, electrical',NULL),
(67,'Cleaning & Janitorial','Cleaning products and janitorial supplies',NULL),
(68,'Kitchen & Dining','Cookware, tableware, utensils',8),
(69,'Bedding & Bath','Bed linen, towels, bath accessories',8),
(70,'Lighting & Lamps','Ceiling lights, lamps, outdoor lighting',8),
(71,'Personal Care Appliances','Hairdryers, shavers, electric toothbrushes',23),
(72,'Hobby & Model Building','Radio control toys, model kits, craft supplies',28),
(73,'Event & Party Planning','Event supplies, decorations, balloons',NULL),
(74,'Seasonal Décor','Holiday decorations & seasonal items',NULL),
(75,'Maritime & Boating','Boats, watercraft, accessories',NULL),
(76,'RV & Camping','Recreational vehicles, camping gear',41),
(77,'Ethnic & Regional Goods','Products specific to certain cultures/regions',NULL),
(78,'Vintage & Retro','Retro items, vintage-style merchandise',NULL),
(79,'Photobooks & Calendars','Custom photo gifts, calendars',NULL),
(80,'Loading & Storage','Storage solutions, shelving, boxes',NULL),
(81,'Smartphone Accessories','Cases, chargers, screen protectors',3),
(82,'Gaming Accessories','Controllers, headsets, gaming chairs',30),
(83,'DIY Home Improvement','Paints, blinds, decorating supplies',65),
(84,'Meal Kits & Subscriptions','Subscription meal services, kit deliveries',44),
(85,'Digital Media & Downloads','eBooks, music, software downloads',64),
(86,'Home Safety & Automation','Smoke alarms, smart locks, home automation',62),
(87,'Eco Textiles & Apparel','Sustainable fabrics and clothing',58),
(88,'Ethical Beauty','Beauty products with ethical sourcing',23),
(89,'Luxury Home Decor','High-end design furniture & accessories',11),
(90,'Streetwear & Urban Fashion','Urban style clothing & accessories',17),
(91,'Outdoor Cooking & BBQ','Grills, smokers, outdoor kitchen gear',41),
(92,'Mobile Photography','Phone lenses, mounts, ring lights',3),
(93,'Smart Fitness','Connected fitness equipment, wearable gym tech',25),
(94,'Language Learning','Books and digital courses for language learning',13),
(95,'Fine Art & Prints','Original art, art prints & posters',NULL),
(96,'Board & Card Games','Card games, board games, accessories',28),
(97,'Collectible Cards & Games','Trading card games, sports cards',60),
(98,'Musician Equipment & Gear','Pro musical instruments and studio gear',49),
(99,'Home Brewing & Wineries','Home brewing kits, craft beer equipment',NULL),
(100,'Smart Kitchen & IoT','Connected kitchen appliances, IoT enabled devices',1);
INSERT INTO Product (product_id, name, price, category_id, stock) VALUES
(1, 'Car Cover', 6064.01, 10, 270),
(2, 'Coloring Kit', 7026.49, 7, 240),
(3, 'Cotton Kurta', 3911.54, 2, 96),
(4, 'Sports Cap', 9441.32, 2, 15),
(5, 'Pressure Cooker 5L', 3540.81, 3, 204),
(6, 'Car Tyre', 7675.49, 10, 251),
(7, 'Shoe Rack', 5149.12, 9, 172),
(8, 'Denim Jacket', 2493.85, 2, 199),
(9, 'Play Tent', 3458.7, 7, 166),
(10, 'Running Shorts', 309.16, 6, 263),
(11, 'Microwave Oven', 6607.15, 3, 274),
(12, 'Denim Jacket', 3238.16, 2, 42),
(13, 'Puzzle Board', 8211.38, 7, 139),
(14, 'Yoga Mat', 7300.87, 6, 22),
(15, 'Leather Wallet', 1121.16, 2, 124),
(16, 'Puzzle Board', 5512.77, 7, 204),
(17, 'Breakfast Cereal 1kg', 4106.59, 8, 46),
(18, 'Sofa Set 3-Seater', 5032.0, 9, 123),
(19, 'Electric Kettle', 4314.61, 3, 287),
(20, 'Dry Fruits Mix 500g', 9784.36, 8, 160),
(21, 'Dinner Plate Set', 2130.35, 3, 181),
(22, 'The Alchemist', 3821.13, 4, 69),
(23, 'Woolen Scarf', 7600.15, 2, 29),
(24, 'Instant Coffee Jar', 4524.33, 8, 226),
(25, 'Sports Cap', 2899.29, 2, 187),
(26, 'Spices Combo', 7025.05, 8, 14),
(27, 'Microwave Oven', 6676.05, 3, 43),
(28, 'Smart Watch', 9057.47, 1, 237),
(29, 'Coloring Kit', 7805.94, 7, 263),
(30, 'Breakfast Cereal 1kg', 7452.81, 8, 198),
(31, 'Spices Combo', 4145.21, 8, 159),
(32, 'Wall Clock', 2004.12, 3, 249),
(33, 'Play Tent', 856.28, 7, 262),
(34, 'Face Wash 150ml', 6152.37, 5, 94),
(35, 'Badminton Racket', 300.14, 6, 80),
(36, 'Yoga Mat', 6455.51, 6, 127),
(37, 'Leather Wallet', 8040.63, 2, 234),
(38, 'Think Like a Monk', 7479.63, 4, 80),
(39, 'Electric Kettle', 1885.16, 3, 227),
(40, 'The Alchemist', 5181.29, 4, 38),
(41, 'The Power of Now', 6009.32, 4, 249),
(42, 'Car Tyre', 9010.05, 10, 43),
(43, 'Sugar 1kg', 4465.57, 8, 83),
(44, 'USB Flash Drive 64GB', 2431.98, 1, 143),
(45, 'The Psychology of Money', 1641.25, 4, 62),
(46, 'Formal Shirt', 5451.26, 2, 34),
(47, 'Microwave Oven', 1707.24, 3, 168),
(48, 'Stuffed Teddy Bear', 4719.38, 7, 112),
(49, 'Think Like a Monk', 3435.2, 4, 69),
(50, 'Slim Fit Jeans', 3636.96, 2, 89),
(51, 'Car Vacuum Cleaner', 1453.94, 10, 251),
(52, 'Wireless Bluetooth Earphones', 4524.07, 1, 168),
(53, 'Car Cover', 8325.95, 10, 94),
(54, 'Microwave Oven', 4257.85, 3, 176),
(55, 'Formal Shirt', 5954.76, 2, 252),
(56, 'Shoe Rack', 686.68, 9, 79),
(57, 'Badminton Racket', 6952.55, 6, 55),
(58, 'Cotton Kurta', 524.64, 2, 240),
(59, 'Yoga Mat', 1451.73, 6, 114),
(60, 'Leather Wallet', 923.04, 2, 113),
(61, 'Sugar 1kg', 4601.33, 8, 126),
(62, 'Body Lotion', 608.14, 5, 208),
(63, 'Portable Hard Drive', 7376.56, 1, 216),
(64, 'Badminton Racket', 2345.57, 6, 153),
(65, 'Laptop 15 inch', 1816.24, 1, 55),
(66, 'Slim Fit Jeans', 7388.96, 2, 137),
(67, 'The Power of Now', 6773.8, 4, 119),
(68, 'Puzzle Board', 8851.72, 7, 89),
(69, 'Wall Clock', 8672.25, 3, 134),
(70, 'The Psychology of Money', 5113.28, 4, 204),
(71, 'Bike Lock', 794.06, 10, 168),
(72, 'Smartphone 6.5 inch', 8159.5, 1, 264),
(73, 'Bike Lock', 843.94, 10, 186),
(74, 'Portable Hard Drive', 2349.69, 1, 133),
(75, 'Microwave Oven', 9323.31, 3, 262),
(76, 'Think Like a Monk', 7661.89, 4, 191),
(77, 'Spices Combo', 8976.33, 8, 89),
(78, 'Office Chair', 4202.63, 9, 146),
(79, 'LED Bulb 12W', 1529.01, 3, 124),
(80, 'Tool Kit Set', 2951.67, 10, 114),
(81, 'Formal Shirt', 9643.29, 2, 119),
(82, 'Air Freshener', 7344.73, 10, 26),
(83, 'The Power of Now', 8646.17, 4, 26),
(84, 'Yoga Mat', 3769.24, 6, 89),
(85, 'Ceramic Tea Set', 5797.39, 3, 54),
(86, 'Face Wash 150ml', 2989.65, 5, 194),
(87, 'Casual Sneakers', 5196.93, 2, 240),
(88, 'Sofa Set 3-Seater', 5984.9, 9, 226),
(89, 'Portable Hard Drive', 5997.37, 1, 199),
(90, 'Sofa Set 3-Seater', 1921.55, 9, 282),
(91, 'Non-stick Frying Pan', 9319.46, 3, 264),
(92, 'Think Like a Monk', 6924.42, 4, 80),
(93, 'Nail Polish Set', 9199.39, 5, 275),
(94, 'Plastic Action Figure', 6429.03, 7, 120),
(95, 'Stuffed Teddy Bear', 4635.12, 7, 145),
(96, 'Wireless Bluetooth Earphones', 6654.21, 1, 206),
(97, 'USB Flash Drive 64GB', 8750.9, 1, 183),
(98, 'Wired Keyboard', 233.84, 1, 247),
(99, 'Denim Jacket', 7518.7, 2, 160),
(100, 'Coffee Table', 2034.61, 9, 292),
(101, 'Sports Bag', 2464.73, 6, 248),
(102, 'Tennis Ball Pack', 3955.48, 6, 121),
(103, 'Bike Lock', 9008.55, 10, 275),
(104, 'Face Moisturizer', 1360.93, 5, 276),
(105, 'Gym Gloves', 8213.41, 6, 202),
(106, 'Aloe Vera Gel', 7329.81, 5, 253),
(107, 'Dinner Plate Set', 4143.33, 3, 97),
(108, 'Perfume Spray 100ml', 865.34, 5, 198),
(109, 'Football Size 5', 7574.05, 6, 194),
(110, 'Skipping Rope', 5962.68, 6, 24),
(111, 'Sunscreen SPF 50', 7831.81, 5, 232),
(112, 'Breakfast Cereal 1kg', 7563.75, 8, 294),
(113, 'Sunscreen SPF 50', 4356.63, 5, 265),
(114, 'Perfume Spray 100ml', 383.98, 5, 112),
(115, 'Building Blocks Set', 4900.89, 7, 28),
(116, 'Salt 1kg', 7853.83, 8, 138),
(117, 'Ceramic Tea Set', 9539.68, 3, 15),
(118, 'Hand Sanitizer 200ml', 437.16, 5, 127),
(119, 'Spices Combo', 3528.74, 8, 209),
(120, 'Car Wiper Blade', 981.27, 10, 183),
(121, 'Car Wiper Blade', 3371.17, 10, 100),
(122, 'Badminton Racket', 3695.83, 6, 108),
(123, 'Doll House', 3046.16, 7, 197),
(124, 'Skipping Rope', 1787.63, 6, 243),
(125, 'Coffee Table', 7390.68, 9, 169),
(126, 'The Psychology of Money', 4932.93, 4, 165),
(127, 'Doll House', 2370.01, 7, 124),
(128, 'Bookshelf 5-Tier', 4641.43, 9, 279),
(129, 'Car Cover', 1274.78, 10, 266),
(130, 'Cricket Bat', 4604.19, 6, 37),
(131, 'Remote Control Car', 5212.7, 7, 284),
(132, 'Dinner Plate Set', 3171.07, 3, 158),
(133, 'Marble Run Game', 165.41, 7, 58),
(134, 'Doll House', 3497.26, 7, 118),
(135, 'Spices Combo', 7071.87, 8, 294),
(136, 'Green Tea Pack', 6656.19, 8, 82),
(137, 'Face Wash 150ml', 8834.11, 5, 119),
(138, 'Remote Control Car', 5322.51, 7, 296),
(139, 'Marble Run Game', 9567.86, 7, 148),
(140, 'Shoe Rack', 7720.03, 9, 42),
(141, 'Green Tea Pack', 7616.77, 8, 98),
(142, 'Sapiens', 4515.83, 4, 220),
(143, 'Sports Cap', 538.39, 2, 16),
(144, 'Dry Fruits Mix 500g', 7979.48, 8, 54),
(145, 'Queen Size Bed', 7804.72, 9, 16),
(146, 'Office Chair', 1055.78, 9, 198),
(147, 'Woolen Scarf', 3049.55, 2, 246),
(148, 'Face Moisturizer', 5027.05, 5, 11),
(149, 'Cotton Kurta', 4565.23, 2, 221),
(150, 'Sports Cap', 8242.93, 2, 59),
(151, 'Formal Shirt', 7995.86, 2, 20),
(152, 'Ceramic Tea Set', 7376.52, 3, 50),
(153, 'Car Cover', 4920.43, 10, 217),
(154, 'Face Wash 150ml', 3289.14, 5, 224),
(155, 'Leather Wallet', 6993.18, 2, 198),
(156, 'Air Freshener', 4641.87, 10, 62),
(157, 'Spices Combo', 4688.68, 8, 270),
(158, 'Power Bank 10000mAh', 6503.29, 1, 11),
(159, 'Sofa Set 3-Seater', 4867.88, 9, 115),
(160, 'Yoga Mat', 4532.82, 6, 183),
(161, 'Cotton Round Neck T-Shirt', 5067.28, 2, 192),
(162, 'Bike Lock', 4646.4, 10, 41),
(163, 'Play Tent', 8109.59, 7, 140),
(164, 'Aloe Vera Gel', 187.08, 5, 284),
(165, 'Seat Cushion', 7040.49, 10, 113),
(166, 'Play Tent', 5517.2, 7, 219),
(167, 'Yoga Mat', 1839.32, 6, 218),
(168, 'Pressure Cooker 5L', 7387.13, 3, 163),
(169, 'Think Like a Monk', 9806.54, 4, 239),
(170, 'Stuffed Teddy Bear', 2892.46, 7, 37),
(171, 'Green Tea Pack', 1314.7, 8, 239),
(172, 'Yoga Mat', 4839.38, 6, 224),
(173, 'Hair Shampoo 500ml', 4515.83, 5, 231),
(174, 'Skipping Rope', 9000.38, 6, 289),
(175, 'Puzzle Board', 3849.34, 7, 14),
(176, 'Plastic Action Figure', 1919.17, 7, 106),
(177, 'Breakfast Cereal 1kg', 3431.41, 8, 100),
(178, 'Aloe Vera Gel', 4756.64, 5, 121),
(179, 'Body Lotion', 9020.28, 5, 243),
(180, 'Dinner Plate Set', 2161.33, 3, 277),
(181, 'Tool Kit Set', 5234.99, 10, 53),
(182, 'Shoe Rack', 9445.16, 9, 227),
(183, 'Stuffed Teddy Bear', 7580.88, 7, 226),
(184, 'Perfume Spray 100ml', 7678.15, 5, 180),
(185, 'Casual Sneakers', 6662.18, 2, 122),
(186, 'Wardrobe', 1488.63, 9, 291),
(187, 'Plastic Action Figure', 5387.6, 7, 242),
(188, 'Perfume Spray 100ml', 6321.77, 5, 77),
(189, 'Wardrobe', 9396.03, 9, 39),
(190, 'Bike Helmet', 8826.31, 10, 15),
(191, 'Car Vacuum Cleaner', 4686.86, 10, 212),
(192, 'Ikigai', 4757.54, 4, 109),
(193, 'Harry Potter and the Sorcerer’s Stone', 7880.16, 4, 159),
(194, 'Building Blocks Set', 4296.28, 7, 195),
(195, 'LED Bulb 12W', 2157.19, 3, 243),
(196, 'Puzzle Board', 2455.59, 7, 274),
(197, 'Toy Train', 8918.79, 7, 40),
(198, 'Coffee Table', 5246.95, 9, 198),
(199, 'Bookshelf 5-Tier', 4576.56, 9, 91),
(200, 'Badminton Racket', 3618.4, 6, 269),
(201, 'Basmati Rice 1kg', 4296.54, 8, 32),
(202, 'Woolen Scarf', 1582.7, 2, 247),
(203, 'Sunscreen SPF 50', 1989.22, 5, 85),
(204, 'Casual Sneakers', 3100.58, 2, 259),
(205, 'Tool Kit Set', 7789.46, 10, 134),
(206, 'Sunscreen SPF 50', 9325.67, 5, 187),
(207, 'Marble Run Game', 7256.58, 7, 239),
(208, 'Cotton Round Neck T-Shirt', 5555.6, 2, 146),
(209, 'Atomic Habits', 5965.6, 4, 96),
(210, 'Play Tent', 9744.0, 7, 74),
(211, 'Power Bank 10000mAh', 5099.68, 1, 130),
(212, 'Instant Coffee Jar', 7520.91, 8, 137),
(213, 'Body Lotion', 1756.18, 5, 148),
(214, 'Wireless Bluetooth Earphones', 9099.99, 1, 57),
(215, 'Wired Keyboard', 230.46, 1, 247),
(216, 'Portable Hard Drive', 6919.83, 1, 217),
(217, 'Non-stick Frying Pan', 9021.53, 3, 83),
(218, 'Sports Bag', 2104.69, 6, 183),
(219, 'Salt 1kg', 5844.69, 8, 37),
(220, 'Nail Polish Set', 3808.53, 5, 139),
(221, 'Cotton Kurta', 542.14, 2, 106),
(222, 'Harry Potter and the Sorcerer’s Stone', 5241.87, 4, 168),
(223, 'Wall Clock', 1601.63, 3, 63),
(224, 'Green Tea Pack', 7901.43, 8, 216),
(225, 'Doll House', 5017.61, 7, 100),
(226, 'Sugar 1kg', 1212.22, 8, 198),
(227, 'Green Tea Pack', 6703.55, 8, 201),
(228, 'Formal Shirt', 306.4, 2, 111),
(229, 'Slim Fit Jeans', 734.76, 2, 167),
(230, 'Sofa Set 3-Seater', 670.58, 9, 298),
(231, 'Power Bank 10000mAh', 4427.14, 1, 193),
(232, 'Coloring Kit', 2661.72, 7, 152),
(233, 'Basmati Rice 1kg', 5668.71, 8, 143),
(234, 'Laptop 15 inch', 5456.28, 1, 297),
(235, 'Yoga Mat', 6565.48, 6, 138),
(236, 'Printed Dress', 8439.98, 2, 213),
(237, 'Perfume Spray 100ml', 8742.31, 5, 265),
(238, 'Remote Control Car', 3256.55, 7, 145),
(239, 'Spices Combo', 681.67, 8, 163),
(240, 'Printed Dress', 4152.64, 2, 155),
(241, 'Ikigai', 1079.27, 4, 145),
(242, 'Pressure Cooker 5L', 3535.75, 3, 147),
(243, 'Seat Cushion', 1902.87, 10, 199),
(244, 'Doll House', 1587.84, 7, 205),
(245, 'Power Bank 10000mAh', 2640.47, 1, 94),
(246, 'Play Tent', 9089.95, 7, 207),
(247, 'Running Shorts', 5301.97, 6, 190),
(248, 'LED Bulb 12W', 6533.69, 3, 191),
(249, 'USB Flash Drive 64GB', 4005.8, 1, 40),
(250, 'Breakfast Cereal 1kg', 7230.87, 8, 108),
(251, 'Spices Combo', 7199.65, 8, 146),
(252, 'Woolen Scarf', 677.55, 2, 104),
(253, 'Sugar 1kg', 8007.13, 8, 95),
(254, 'The Power of Now', 3791.35, 4, 114),
(255, 'Think Like a Monk', 6432.94, 4, 285),
(256, 'Smart LED TV 43 inch', 7872.49, 1, 282),
(257, 'Office Chair', 6191.54, 9, 120),
(258, 'Aloe Vera Gel', 2385.92, 5, 202),
(259, 'Atomic Habits', 6520.85, 4, 241),
(260, 'Shoe Rack', 6395.13, 9, 78),
(261, 'Air Freshener', 2740.62, 10, 170),
(262, 'Wheat Flour 5kg', 9455.87, 8, 284),
(263, 'Body Lotion', 7735.75, 5, 194),
(264, 'Sports Cap', 4733.81, 2, 137),
(265, 'Running Shorts', 345.04, 6, 77),
(266, 'Skipping Rope', 4031.58, 6, 48),
(267, 'Stainless Steel Water Bottle', 4517.91, 3, 54),
(268, 'Sports Cap', 8512.44, 2, 182),
(269, 'Wardrobe', 9314.17, 9, 113),
(270, 'Spices Combo', 2439.52, 8, 276),
(271, 'Wardrobe', 2475.4, 9, 279),
(272, 'Basmati Rice 1kg', 9846.6, 8, 258),
(273, 'Wooden Dining Table', 4853.33, 9, 261),
(274, 'Body Lotion', 7594.64, 5, 172),
(275, 'Wooden Spice Rack', 1492.95, 3, 245),
(276, 'LED Bulb 12W', 4641.11, 3, 80),
(277, 'Seat Cushion', 7185.14, 10, 29),
(278, 'Hair Shampoo 500ml', 3354.42, 5, 82),
(279, 'Leather Wallet', 4237.27, 2, 54),
(280, 'Hand Sanitizer 200ml', 2555.73, 5, 185),
(281, 'Woolen Scarf', 8964.28, 2, 220),
(282, 'Cotton Kurta', 2376.58, 2, 117),
(283, 'Hair Shampoo 500ml', 1678.54, 5, 153),
(284, 'Ceramic Tea Set', 5547.85, 3, 281),
(285, 'Doll House', 3723.83, 7, 165),
(286, 'USB Flash Drive 64GB', 3837.32, 1, 81),
(287, 'Formal Shirt', 5452.2, 2, 142),
(288, 'Remote Control Car', 2674.86, 7, 31),
(289, 'Refined Oil 1L', 8272.24, 8, 30),
(290, 'Sports Bag', 141.41, 6, 179),
(291, 'Stuffed Teddy Bear', 4497.47, 7, 99),
(292, 'Smart Watch', 118.3, 1, 245),
(293, 'Basmati Rice 1kg', 2816.58, 8, 167),
(294, 'Rich Dad Poor Dad', 5321.43, 4, 96),
(295, 'Car Tyre', 8836.9, 10, 112),
(296, 'Marble Run Game', 5072.29, 7, 268),
(297, 'Wireless Bluetooth Earphones', 794.88, 1, 254),
(298, 'Laptop 15 inch', 9811.04, 1, 136),
(299, 'Play Tent', 7044.08, 7, 134),
(300, 'Toy Train', 6279.13, 7, 42),
(301, 'Power Bank 10000mAh', 6697.54, 1, 121),
(302, 'Plastic Action Figure', 7934.68, 7, 259),
(303, 'Non-stick Frying Pan', 4765.62, 3, 122),
(304, 'Yoga Mat', 8075.31, 6, 221),
(305, 'Sports Cap', 3700.38, 2, 113),
(306, 'Breakfast Cereal 1kg', 7443.49, 8, 34),
(307, 'The Psychology of Money', 2446.22, 4, 222),
(308, 'Ikigai', 5665.62, 4, 72),
(309, 'Smartphone 6.5 inch', 6171.11, 1, 123),
(310, 'Sofa Set 3-Seater', 5933.09, 9, 215),
(311, 'Wall Clock', 2058.98, 3, 271),
(312, 'Bluetooth Speaker', 5035.04, 1, 23),
(313, 'Formal Shirt', 1198.59, 2, 188),
(314, 'Basmati Rice 1kg', 7050.92, 8, 69),
(315, 'Wardrobe', 9969.81, 9, 229),
(316, 'Nail Polish Set', 2842.74, 5, 23),
(317, 'Woolen Scarf', 3148.32, 2, 257),
(318, 'Seat Cushion', 604.64, 10, 52),
(319, 'USB Flash Drive 64GB', 3477.88, 1, 222),
(320, 'Car Wiper Blade', 534.74, 10, 185),
(321, 'Sports Bag', 3313.54, 6, 292),
(322, 'Bike Helmet', 8423.73, 10, 41),
(323, 'Seat Cushion', 2384.09, 10, 127),
(324, 'Ceramic Tea Set', 157.61, 3, 117),
(325, 'Building Blocks Set', 6815.22, 7, 228),
(326, 'Ikigai', 8823.4, 4, 226),
(327, 'Salt 1kg', 6821.84, 8, 265),
(328, 'Think Like a Monk', 6748.46, 4, 187),
(329, 'Plastic Action Figure', 4524.06, 7, 118),
(330, 'Leather Wallet', 860.88, 2, 26),
(331, 'Wardrobe', 9259.34, 9, 18),
(332, 'Hand Sanitizer 200ml', 9181.18, 5, 16),
(333, 'The Alchemist', 7014.57, 4, 156),
(334, 'Dry Fruits Mix 500g', 8940.19, 8, 10),
(335, 'Perfume Spray 100ml', 5775.51, 5, 191),
(336, 'TV Unit', 6469.46, 9, 288),
(337, 'Dry Fruits Mix 500g', 3994.68, 8, 237),
(338, 'Seat Cushion', 8162.03, 10, 215),
(339, 'Bike Helmet', 8602.1, 10, 250),
(340, 'Stuffed Teddy Bear', 9818.49, 7, 237),
(341, 'Wheat Flour 5kg', 5449.89, 8, 77),
(342, 'Sports Cap', 8419.2, 2, 85),
(343, 'Basmati Rice 1kg', 621.27, 8, 103),
(344, 'Yoga Mat', 361.98, 6, 41),
(345, 'Wall Clock', 8177.82, 3, 292),
(346, 'Laptop 15 inch', 5677.54, 1, 12),
(347, 'Skipping Rope', 5043.18, 6, 125),
(348, 'Air Freshener', 7611.02, 10, 196),
(349, 'Bike Helmet', 4445.08, 10, 42),
(350, 'Casual Sneakers', 2364.57, 2, 74),
(351, 'Slim Fit Jeans', 8250.12, 2, 27),
(352, 'Ceramic Tea Set', 8129.01, 3, 211),
(353, 'Atomic Habits', 6292.83, 4, 13),
(354, 'Yoga Mat', 2486.16, 6, 255),
(355, 'Wheat Flour 5kg', 9625.62, 8, 188),
(356, 'Lip Balm', 5014.98, 5, 171),
(357, 'Breakfast Cereal 1kg', 5735.3, 8, 46),
(358, 'Face Moisturizer', 8672.23, 5, 131),
(359, 'Wooden Dining Table', 2147.81, 9, 172),
(360, 'Shoe Rack', 5333.15, 9, 62),
(361, 'Face Wash 150ml', 7983.41, 5, 148),
(362, 'Wall Clock', 4539.48, 3, 160),
(363, 'Sapiens', 9693.85, 4, 54),
(364, 'Smart Watch', 7584.58, 1, 167),
(365, 'Refined Oil 1L', 8162.81, 8, 86),
(366, 'Breakfast Cereal 1kg', 4731.44, 8, 140),
(367, 'Tennis Ball Pack', 332.43, 6, 289),
(368, 'Cricket Bat', 2706.71, 6, 196),
(369, 'Wooden Dining Table', 2641.96, 9, 220),
(370, 'Laptop 15 inch', 1852.38, 1, 185),
(371, 'Badminton Racket', 7772.32, 6, 294),
(372, 'Refined Oil 1L', 4898.82, 8, 154),
(373, 'Car Tyre', 7416.47, 10, 232),
(374, 'Water Bottle 1L', 6878.31, 6, 12),
(375, 'Sports Bag', 9510.0, 6, 254),
(376, 'Power Bank 10000mAh', 6855.11, 1, 105),
(377, 'Dinner Plate Set', 6464.16, 3, 16),
(378, 'The Alchemist', 898.05, 4, 98),
(379, 'Harry Potter and the Sorcerer’s Stone', 715.85, 4, 292),
(380, 'Car Vacuum Cleaner', 918.15, 10, 272),
(381, 'Sports Cap', 9062.58, 2, 174),
(382, 'Stuffed Teddy Bear', 7845.86, 7, 176),
(383, 'LED Bulb 12W', 6176.31, 3, 103),
(384, 'Skipping Rope', 7889.61, 6, 239),
(385, 'Leather Wallet', 1763.32, 2, 166),
(386, 'Basmati Rice 1kg', 7957.12, 8, 82),
(387, 'Wings of Fire', 6767.54, 4, 123),
(388, 'Atomic Habits', 3833.12, 4, 283),
(389, 'Marble Run Game', 3603.62, 7, 171),
(390, 'Laptop 15 inch', 5013.94, 1, 164),
(391, 'Wooden Dining Table', 9019.71, 9, 298),
(392, 'Running Shorts', 3586.87, 6, 72),
(393, 'Hand Sanitizer 200ml', 3010.9, 5, 131),
(394, 'Air Freshener', 3313.81, 10, 173),
(395, 'Face Wash 150ml', 9803.12, 5, 109),
(396, 'Wooden Spice Rack', 9054.09, 3, 161),
(397, 'Sugar 1kg', 4783.83, 8, 139),
(398, 'Office Chair', 3472.76, 9, 256),
(399, 'Tool Kit Set', 6000.76, 10, 61),
(400, 'Car Cover', 1521.09, 10, 296),
(401, 'Puzzle Board', 9398.78, 7, 20),
(402, 'Smart Watch', 9886.45, 1, 13),
(403, 'Yoga Mat', 8909.92, 6, 216),
(404, 'Smart LED TV 43 inch', 2477.95, 1, 291),
(405, 'Hand Sanitizer 200ml', 3861.19, 5, 24),
(406, 'Wireless Bluetooth Earphones', 4313.83, 1, 242),
(407, 'Toy Train', 5227.71, 7, 163),
(408, 'Printed Dress', 9582.99, 2, 18),
(409, 'Body Lotion', 5647.01, 5, 17),
(410, 'The Power of Now', 2269.65, 4, 20),
(411, 'Woolen Scarf', 7444.96, 2, 215),
(412, 'Water Bottle 1L', 5759.14, 6, 203),
(413, 'Portable Hard Drive', 715.89, 1, 280),
(414, 'Football Size 5', 5519.2, 6, 245),
(415, 'Pressure Cooker 5L', 7619.87, 3, 147),
(416, 'Air Freshener', 3959.09, 10, 11),
(417, 'Pressure Cooker 5L', 883.59, 3, 163),
(418, 'Wheat Flour 5kg', 7466.89, 8, 296),
(419, 'Face Wash 150ml', 2257.64, 5, 83),
(420, 'Hand Sanitizer 200ml', 2859.3, 5, 131),
(421, 'Cotton Kurta', 1153.83, 2, 29),
(422, 'Smartphone 6.5 inch', 9452.63, 1, 252),
(423, 'Smart Watch', 6577.43, 1, 177),
(424, 'Smart LED TV 43 inch', 1216.24, 1, 211),
(425, 'Toy Train', 1777.36, 7, 199),
(426, 'The Alchemist', 2665.59, 4, 137),
(427, 'Leather Wallet', 233.47, 2, 267),
(428, 'Nail Polish Set', 6267.16, 5, 219),
(429, 'Lip Balm', 7506.55, 5, 279),
(430, 'Football Size 5', 3656.5, 6, 35),
(431, 'Electric Kettle', 1503.82, 3, 92),
(432, 'Wooden Dining Table', 3460.76, 9, 211),
(433, 'Sugar 1kg', 3973.82, 8, 125),
(434, 'Coloring Kit', 248.27, 7, 135),
(435, 'Air Freshener', 5359.61, 10, 73),
(436, 'Denim Jacket', 9847.52, 2, 29),
(437, 'Sunscreen SPF 50', 6421.18, 5, 226),
(438, 'Cotton Round Neck T-Shirt', 2332.95, 2, 18),
(439, 'Cricket Bat', 876.1, 6, 189),
(440, 'Badminton Racket', 3149.68, 6, 237),
(441, 'Queen Size Bed', 5502.08, 9, 217),
(442, 'Harry Potter and the Sorcerer’s Stone', 4995.47, 4, 231),
(443, 'Badminton Racket', 1517.22, 6, 211),
(444, 'Smart Watch', 7289.65, 1, 69),
(445, 'The Psychology of Money', 6886.52, 4, 28),
(446, 'Car Tyre', 1936.55, 10, 52),
(447, 'Wireless Bluetooth Earphones', 1075.36, 1, 146),
(448, 'Smart Watch', 7508.06, 1, 19),
(449, 'Dinner Plate Set', 352.98, 3, 272),
(450, 'Microwave Oven', 5105.9, 3, 129),
(451, 'Smart LED TV 43 inch', 4400.78, 1, 239),
(452, 'Wings of Fire', 7000.05, 4, 24),
(453, 'Running Shorts', 5288.78, 6, 65),
(454, 'Breakfast Cereal 1kg', 8688.07, 8, 260),
(455, 'Basmati Rice 1kg', 8878.81, 8, 53),
(456, 'Stuffed Teddy Bear', 7563.97, 7, 181),
(457, 'Basmati Rice 1kg', 3931.09, 8, 161),
(458, 'Denim Jacket', 8928.11, 2, 120),
(459, 'Coloring Kit', 4426.77, 7, 39),
(460, 'Hair Shampoo 500ml', 3798.65, 5, 48),
(461, 'Denim Jacket', 4356.23, 2, 118),
(462, 'Play Tent', 4452.3, 7, 270),
(463, 'Bookshelf 5-Tier', 2149.25, 9, 21),
(464, 'Dinner Plate Set', 965.26, 3, 273),
(465, 'Car Vacuum Cleaner', 8107.78, 10, 170),
(466, 'Doll House', 6315.97, 7, 100),
(467, 'Spices Combo', 7086.2, 8, 113),
(468, 'Toy Train', 8201.63, 7, 50),
(469, 'Plastic Action Figure', 1049.93, 7, 57),
(470, 'Rich Dad Poor Dad', 7006.12, 4, 75),
(471, 'Sunscreen SPF 50', 8630.25, 5, 114),
(472, 'Lip Balm', 9595.91, 5, 69),
(473, 'Water Bottle 1L', 801.69, 6, 238),
(474, 'Sapiens', 4643.89, 4, 168),
(475, 'Perfume Spray 100ml', 770.02, 5, 284),
(476, 'Gym Gloves', 5668.23, 6, 168),
(477, 'Sapiens', 4924.53, 4, 57),
(478, 'Laptop 15 inch', 4984.07, 1, 20),
(479, 'Perfume Spray 100ml', 6748.69, 5, 57),
(480, 'Cricket Bat', 4326.62, 6, 297),
(481, 'Portable Hard Drive', 6883.7, 1, 274),
(482, 'Gym Gloves', 3122.11, 6, 102),
(483, 'Gym Gloves', 6298.21, 6, 39),
(484, 'Cotton Round Neck T-Shirt', 6103.73, 2, 243),
(485, 'The Power of Now', 6540.83, 4, 54),
(486, 'Wooden Dining Table', 5954.16, 9, 276),
(487, 'Play Tent', 6213.19, 7, 178),
(488, 'Doll House', 3365.77, 7, 98),
(489, 'Remote Control Car', 766.46, 7, 218),
(490, 'Water Bottle 1L', 7328.92, 6, 113),
(491, 'Bookshelf 5-Tier', 7330.64, 9, 75),
(492, 'Cricket Bat', 1109.67, 6, 110),
(493, 'Wall Clock', 4301.0, 3, 103),
(494, 'Microwave Oven', 7236.34, 3, 150),
(495, 'Sapiens', 7615.39, 4, 278),
(496, 'Wooden Spice Rack', 8061.36, 3, 179),
(497, 'Car Vacuum Cleaner', 4950.67, 10, 164),
(498, 'Denim Jacket', 7745.91, 2, 271),
(499, 'Aloe Vera Gel', 6768.85, 5, 247),
(500, 'Seat Cushion', 3821.53, 10, 115);
INSERT INTO product_discounts (discount_id, product_id, discount_percent, start_date, end_date) VALUES
(1, 1, 32.09, '2024-01-16', '2024-04-02'),
(2, 2, 32.79, '2024-07-06', '2024-09-16'),
(3, 3, 23.21, '2024-04-15', '2024-05-17'),
(4, 4, 19.78, '2024-06-17', '2024-09-07'),
(5, 5, 18.51, '2024-09-25', '2024-12-09'),
(6, 6, 7.99, '2024-08-22', '2024-10-11'),
(7, 7, 42.99, '2024-02-26', '2024-05-06'),
(8, 8, 32.1, '2024-07-19', '2024-09-26'),
(9, 9, 11.8, '2024-10-03', '2024-11-26'),
(10, 10, 29.85, '2024-05-12', '2024-06-21'),
(11, 11, 36.02, '2024-10-21', '2024-11-07'),
(12, 12, 21.93, '2024-01-16', '2024-03-14'),
(13, 13, 16.66, '2024-08-22', '2024-10-20'),
(14, 14, 7.21, '2024-04-02', '2024-05-28'),
(15, 15, 34.94, '2024-01-06', '2024-03-28'),
(16, 16, 7.53, '2024-07-22', '2024-08-28'),
(17, 17, 46.32, '2024-09-16', '2024-10-03'),
(18, 18, 39.4, '2024-05-12', '2024-07-02'),
(19, 19, 21.35, '2024-08-17', '2024-11-05'),
(20, 20, 27.27, '2024-08-14', '2024-10-29'),
(21, 21, 32.14, '2024-05-21', '2024-06-24'),
(22, 22, 17.28, '2024-08-08', '2024-09-27'),
(23, 23, 13.67, '2024-04-19', '2024-05-27'),
(24, 24, 41.32, '2024-12-03', '2025-01-04'),
(25, 25, 12.45, '2024-04-19', '2024-07-15'),
(26, 26, 47.34, '2024-09-16', '2024-12-02'),
(27, 27, 25.38, '2024-04-10', '2024-05-22'),
(28, 28, 47.36, '2024-02-07', '2024-05-06'),
(29, 29, 11.99, '2024-09-22', '2024-11-19'),
(30, 30, 21.63, '2024-11-28', '2025-02-15'),
(31, 31, 48.36, '2024-01-11', '2024-03-20'),
(32, 32, 23.21, '2024-08-24', '2024-11-18'),
(33, 33, 12.72, '2024-02-16', '2024-04-19'),
(34, 34, 39.8, '2024-11-20', '2025-01-13'),
(35, 35, 34.8, '2024-03-18', '2024-04-24'),
(36, 36, 44.28, '2024-02-13', '2024-03-15'),
(37, 37, 27.09, '2024-11-07', '2024-11-24'),
(38, 38, 38.39, '2024-10-01', '2024-11-20'),
(39, 39, 13.66, '2024-01-14', '2024-03-18'),
(40, 40, 5.41, '2024-06-25', '2024-08-16'),
(41, 41, 28.82, '2024-10-06', '2024-10-23'),
(42, 42, 7.22, '2024-03-26', '2024-05-11'),
(43, 43, 48.07, '2024-09-17', '2024-10-27'),
(44, 44, 34.79, '2024-04-08', '2024-06-25'),
(45, 45, 36.26, '2024-01-12', '2024-03-06'),
(46, 46, 37.99, '2024-06-19', '2024-07-29'),
(47, 47, 22.94, '2024-10-25', '2024-12-10'),
(48, 48, 24.47, '2024-07-06', '2024-08-15'),
(49, 49, 38.75, '2024-01-23', '2024-03-15'),
(50, 50, 32.81, '2024-08-28', '2024-10-23'),
(51, 51, 43.55, '2024-04-10', '2024-05-08'),
(52, 52, 40.88, '2024-12-15', '2025-01-04'),
(53, 53, 10.2, '2024-06-05', '2024-08-24'),
(54, 54, 17.63, '2024-08-16', '2024-11-13'),
(55, 55, 25.07, '2024-09-14', '2024-10-23'),
(56, 56, 10.37, '2024-06-08', '2024-06-27'),
(57, 57, 16.49, '2024-01-22', '2024-02-09'),
(58, 58, 21.96, '2024-02-14', '2024-03-28'),
(59, 59, 15.89, '2024-02-24', '2024-05-16'),
(60, 60, 30.8, '2024-03-11', '2024-04-26'),
(61, 61, 20.55, '2024-07-21', '2024-08-09'),
(62, 62, 33.76, '2024-07-13', '2024-09-17'),
(63, 63, 31.24, '2024-07-02', '2024-07-24'),
(64, 64, 10.96, '2024-03-19', '2024-04-25'),
(65, 65, 6.9, '2024-09-27', '2024-11-26'),
(66, 66, 20.03, '2024-11-24', '2025-01-07'),
(67, 67, 30.37, '2024-06-11', '2024-07-12'),
(68, 68, 46.09, '2024-01-03', '2024-02-13'),
(69, 69, 42.0, '2024-07-07', '2024-08-30'),
(70, 70, 15.16, '2024-01-09', '2024-03-28'),
(71, 71, 9.39, '2024-10-16', '2024-12-23'),
(72, 72, 27.95, '2024-10-18', '2024-12-06'),
(73, 73, 26.82, '2024-11-07', '2025-01-23'),
(74, 74, 17.16, '2024-08-11', '2024-09-26'),
(75, 75, 32.85, '2024-11-14', '2024-12-12'),
(76, 76, 42.73, '2024-10-21', '2024-11-27'),
(77, 77, 17.88, '2024-07-03', '2024-08-26'),
(78, 78, 38.15, '2024-01-11', '2024-03-08'),
(79, 79, 24.87, '2024-05-23', '2024-06-30'),
(80, 80, 24.11, '2024-04-24', '2024-07-10'),
(81, 81, 33.17, '2024-12-16', '2025-02-25'),
(82, 82, 40.25, '2024-01-25', '2024-04-08'),
(83, 83, 13.94, '2024-07-17', '2024-08-12'),
(84, 84, 21.17, '2024-02-14', '2024-03-10'),
(85, 85, 38.47, '2024-11-24', '2025-01-06'),
(86, 86, 25.17, '2024-12-18', '2025-01-09'),
(87, 87, 14.84, '2024-10-02', '2024-11-28'),
(88, 88, 21.72, '2024-07-08', '2024-08-18'),
(89, 89, 31.06, '2024-11-05', '2025-01-30'),
(90, 90, 17.13, '2024-08-01', '2024-09-13'),
(91, 91, 35.83, '2024-10-16', '2024-11-04'),
(92, 92, 39.71, '2024-09-23', '2024-11-02'),
(93, 93, 19.22, '2024-03-26', '2024-06-04'),
(94, 94, 32.53, '2024-03-03', '2024-04-30'),
(95, 95, 30.08, '2024-12-14', '2025-03-08'),
(96, 96, 26.78, '2024-04-12', '2024-06-19'),
(97, 97, 33.35, '2024-04-14', '2024-07-05'),
(98, 98, 5.12, '2024-03-11', '2024-05-09'),
(99, 99, 38.26, '2024-10-10', '2024-12-13'),
(100, 100, 17.34, '2024-02-10', '2024-04-10'),
(101, 101, 31.07, '2024-04-26', '2024-05-31'),
(102, 102, 32.33, '2024-10-26', '2024-12-11'),
(103, 103, 34.9, '2024-07-16', '2024-08-22'),
(104, 104, 36.51, '2024-10-01', '2024-12-23'),
(105, 105, 49.16, '2024-11-20', '2025-02-15'),