forked from agueroduc01/Fashion_Shop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
script dataset.sql
3217 lines (3215 loc) · 1.26 MB
/
script dataset.sql
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
USE [Fashion_Shop]
GO
/****** Object: Table [dbo].[Account] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Account](
[ID] [bigint] IDENTITY(1,1) NOT NULL,
[Username] [varchar](256) NOT NULL,
[Password] [varchar](256) NOT NULL,
[Fullname] [nvarchar](256) NOT NULL,
[Role] [int] NOT NULL,
[Email] [varchar](256) NULL,
[Gender] [bit] NOT NULL,
[Image] [varchar](500) NULL,
[Birthday] [date] NULL,
[Phone] [char](10) NOT NULL,
[Address] [nvarchar](256) NULL,
CONSTRAINT [PK_Account] PRIMARY KEY CLUSTERED
(
[Username] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Cart] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Cart](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Username] [varchar](256) NOT NULL,
[ProductID] [nvarchar](50) NOT NULL,
[Quantity] [int] NOT NULL,
CONSTRAINT [PK_Cart] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[History] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[History](
[Username] [varchar](256) NULL,
[RequestTime] [datetime] NOT NULL,
[SessionID] [varchar](500) NOT NULL,
[ProductID] [varchar](50) NOT NULL,
[ID] [int] IDENTITY(1,1) NOT NULL,
CONSTRAINT [PK_Evaluation] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Order] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Order](
[ID] [int] IDENTITY(1,1) NOT NULL,
[CusUsername] [varchar](256) NOT NULL,
[Phone] [char](10) NULL,
[CusAddress] [nvarchar](256) NULL,
[CusEmail] [varchar](256) NULL,
[Date] [date] NOT NULL,
[TotalPrice] [bigint] NOT NULL,
CONSTRAINT [PK_Order] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[OrderDetail] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[OrderDetail](
[ID] [int] IDENTITY(1,1) NOT NULL,
[IDOrder] [int] NOT NULL,
[IDProduct] [nvarchar](50) NOT NULL,
[Quantity] [int] NOT NULL,
[Price] [float] NULL,
CONSTRAINT [PK_OrderDetail] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Product] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Product](
[ID] [nvarchar](50) NOT NULL,
[Name] [nvarchar](256) NOT NULL,
[IDCategory] [int] NOT NULL,
[Price] [float] NOT NULL,
[Image] [varchar](500) NULL,
[Brand] [nvarchar](50) NOT NULL,
[Gender] [bit] NULL,
[ReleaseTime] [smallint] NULL,
[ProductType] [nvarchar](50) NOT NULL,
[ProductCluster] [smallint] NULL,
[ProductMaterial] [varchar](50) NOT NULL,
CONSTRAINT [PK_Product] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[ProductCategory] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[ProductCategory](
[ID] [int] NOT NULL,
[Name] [nvarchar](256) NOT NULL,
CONSTRAINT [PK_ProductCategory] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Rating] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Rating](
[Username] [varchar](256) NOT NULL,
[Rating] [smallint] NOT NULL,
[ProductID] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_Rating] PRIMARY KEY CLUSTERED
(
[Username] ASC,
[ProductID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Role] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Role](
[ID] [int] NOT NULL,
[Name] [nvarchar](256) NULL,
CONSTRAINT [PK_Role] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[SatisfyProduct] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[SatisfyProduct](
[HistoryID] [int] NOT NULL,
[ProductID] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_SatisfyProduct] PRIMARY KEY CLUSTERED
(
[HistoryID] ASC,
[ProductID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[SizeAndColor] Script Date: 12/27/2022 5:25:51 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[SizeAndColor](
[ProductID] [nvarchar](50) NOT NULL,
[Size] [nvarchar](50) NOT NULL,
[Color] [nvarchar](50) NOT NULL,
[Quantity] [int] NOT NULL,
CONSTRAINT [PK_SizeAndColor] PRIMARY KEY CLUSTERED
(
[ProductID] ASC,
[Size] ASC,
[Color] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[Account] ON
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (271, N'1', N'*vY2J%8H', N'Nila Om', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7135956653', N'4695 East Huntsville Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (280, N'10', N'351C#D%T', N'Mukul Balakrishnan', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9061366792', N'1302 Cherry Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (370, N'100', N'pk1zkI$&', N'Akash Doctor', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6453673955', N'7910 West Krall Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (281, N'11', N'Yiu5!n$M', N'Naouman Patel', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8481749764', N'606 National Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (282, N'12', N'N18@m#Y8', N'Chetana Bedi', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8072929232', N'2527 Lisenby Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (283, N'13', N'w*DywC63', N'Anandita Gill', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8282987183', N'1217 Bay Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (284, N'14', N'*uf!8yXV', N'Jaidev Kuruvilla', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8776944162', N'64 Church Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (285, N'15', N'qd%7ErW#', N'Laïli Devi', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6025238497', N'8347 Ames Way')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (286, N'16', N'lCm&JK9D', N'Kalyana-Shraddhâ Bhatnagar', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9815646758', N'11 Eclipse Court')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (287, N'17', N'fO%YT&92', N'Jaswinder Sehgal', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9523524898', N'11113 North Miller Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (288, N'18', N'cq3QKTT!', N'Krishnaraja Shenoy', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6475994882', N'31 Ashworth Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (289, N'19', N'mZiz6!Nw', N'Devdan Nadig', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8410027546', N'3714 John Mallette Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (272, N'2', N'fLP*c#76', N'Dipali Narayan', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7879298476', N'152 Bissell Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (290, N'20', N'z9bGW93$', N'Nithya Merchant', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6420503188', N'7841 North 59th Lane')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (291, N'21', N'4@6JqVu9', N'Laxmi Banik', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6951630945', N'249 Progress Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (292, N'22', N'Z^ys#4QB', N'Kishore Sen', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6575834489', N'1608 Gales Street Northeast')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (293, N'23', N'0&kybvuS', N'Meera Dhar', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6206169981', N'1713 Arrow Cove Lane')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (294, N'24', N'Z51AsR@0', N'Kesavane Venkataraman', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9034357727', N'3579 2nd Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (295, N'25', N'w3N6yf6@', N'Mogaya Bir', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9202992846', N'1404 James Way')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (296, N'26', N'aY1Kb#N1', N'Nagendra Bora', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9815280796', N'2707 Wendell Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (297, N'27', N'6n#fqg#g', N'Komathy Prashad', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7837833170', N'4108 Kogru Place')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (298, N'28', N'go*54&xS', N'Abhay Lalla', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'7742610256', N'6917 Briarcreek Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (299, N'29', N'#2DK*bKR', N'Nitia Dewan', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6902416135', N'2203 7th Street Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (273, N'3', N'fO1%6sJo', N'Lal Arya', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6102929731', N'5634 Kipling Parkway')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (300, N'30', N'q$xzJP1V', N'Kalika Brahmbhatt', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9652652362', N'31 Baileys Mills Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (301, N'31', N'!!Suj7LP', N'Gopinath Barad', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8131968007', N'10763 West 54th Place')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (302, N'32', N'6PWbup$k', N'Esha Karnik', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6303182497', N'1711 8th Street Northwest')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (303, N'33', N'e&BM0RNG', N'Nirmal Dugar', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9856378376', N'2206 Skidaway Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (304, N'34', N'idw5LP!%', N'Jayani Krish', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9814009310', N'163 Highwood Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (305, N'35', N'7&xMf52F', N'Lakshmana Tak', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9129958698', N'420 D Street Northwest')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (306, N'36', N'45jp4&Vx', N'Arjun Dixit', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9087151670', N'32 Country Club Boulevard')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (307, N'37', N'&76l@PnM', N'Lakshman Randhawa', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6947026817', N'6928 North 87th Lane')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (308, N'38', N'Ti9o^S#1', N'Kshitij Tella', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8888032605', N'39 Newhall Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (309, N'39', N'ww4r#wZ%', N'Jaidev Vyas', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6778627228', N'4000 Albemarle Street Northwest')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (274, N'4', N'D@eME1@m', N'Amala Chauhan', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9071654602', N'4303 Ashleycreek Court')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (310, N'40', N'*8wh6n8b', N'Karlaye Das', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8841781866', N'721 Bay Ridge Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (311, N'41', N'$23Ro#JY', N'Gotam Chakrabarti', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6318329551', N'22 South Duncan Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (312, N'42', N'li$280jQ', N'Amrita Mehan', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6109217292', N'8121 Copper Creek Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (313, N'43', N'*Wt0z74E', N'Dilip Sahota', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7661793999', N'224 Charter Oak Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (314, N'44', N'%SKYus56', N'Arjun Jaggi', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7700327812', N'6483 West 76th Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (315, N'45', N'&9ISdB82', N'Archana Deshpande', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9010943299', N'1622 Orchard Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (316, N'46', N'l1X*39#n', N'Krishna Shah', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8330050540', N'3420 Northwest 41st Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (317, N'47', N'#NzD93al', N'Gotama Balay', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6944638545', N'2534 Willena Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (318, N'48', N'o25s$Fhj', N'Ananta Gole', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9578725215', N'1405 Monroe Street Northeast')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (319, N'49', N'g!76e3Y^', N'Girish Dada', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8533288074', N'9 Brooklyn Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (275, N'5', N'4yBW^xH0', N'Minakshi Mangal', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8684875711', N'945 South 5th Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (320, N'50', N'D15m*6^t', N'Nilam Choudhury', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8464228647', N'16 Ambassador Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (321, N'51', N'&5rlMb!4', N'Abhilasha Nagar', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9462200535', N'531 Bobbin Mill Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (322, N'52', N'snX%9^IA', N'Kadivel Sethi', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9881000234', N'73 Lower Main Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (323, N'53', N'&Ud@t3nN', N'Indra Deep', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9054135084', N'8221 Surf Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (324, N'54', N'#a#1Sm05', N'Mukul Ghose', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6292831317', N'46 Apel Place')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (325, N'55', N'hH$z&1IP', N'Harshal Parsa', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'7630301142', N'7701 Southwest 104th Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (326, N'56', N'J$#Iw583', N'Lajili Choudhry', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9031796953', N'6206 Waters Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (327, N'57', N'IWvY6c$5', N'Aruna Sahota', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9914937435', N'5600 Carmichael Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (328, N'58', N'38Fvt!Lw', N'Dipti Nadkarni', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9459672055', N'243 Orchard Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (329, N'59', N'T&twjz3m', N'Manjula Verma', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8676822969', N'6739 Taft Court')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (276, N'6', N'#W4oN0h3', N'Kumaren Chandran', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6755992839', N'2927 Leatherwood Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (330, N'60', N'BV!EH3!f', N'Gowri Kant', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6468268440', N'3438 Carlton Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (331, N'61', N'r69F#^4o', N'Devdan Sengupta', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9459314785', N'701 West 36th Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (332, N'62', N'0yu8xD^a', N'Anand Pant', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7893754133', N'539 Palermo Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (333, N'63', N'$#iB1xSD', N'Jaywant Ghose', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9480417585', N'150 Manistee Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (334, N'64', N'Fyn0B@^2', N'Deva Nagar', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8735352724', N'3138 P Street Northwest')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (335, N'65', N'Ok*7FFu@', N'Geeta Balasubramanian', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7980879997', N'303 Addison Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (336, N'66', N'4B^C3lM5', N'Narayanin Manda', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8991079723', N'7701 Southwest 104th Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (337, N'67', N'M15Q%cjM', N'Ladha Tella', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'7649610434', N'325 Joseph Circle')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (338, N'68', N'6*@4aH0D', N'Aseem Kala', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9143184732', N'1699 Chatham Parkway')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (339, N'69', N'B6a*#Be6', N'Karlaye Bose', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8615677239', N'5144 Cattail Court')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (277, N'7', N'ObK%mr0$', N'Avanti Kumar', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9470053324', N'2531 Prestwick Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (340, N'70', N'SsY$57Ip', N'Harshal Mathur', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7280553402', N'1820 Scenic Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (341, N'71', N'%H$SaN0Z', N'Kalyan Bhatnagar', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9757437807', N'97 Lincoln Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (342, N'72', N'k9q55@Bf', N'Narinder Mehan', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9175671181', N'145 Great Western Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (343, N'73', N'@RS5s8$t', N'Bakula Badami', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8160312227', N'3808 South Smiley Circle')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (344, N'74', N'UV14i3$s', N'Aravinda Chowdhury', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'7997564760', N'7435 East Tulare Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (345, N'75', N'm@%e3Kyc', N'Indrajit Shanker', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6768563100', N'1216 West Hill Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (346, N'76', N'1TW8uFb!', N'Darshana Dugar', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8136284801', N'12816 West 65th Way')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (347, N'77', N'7EUu10%&', N'Aruna Mutti', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6373032788', N'3579 2nd Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (348, N'78', N'eyi@79t!', N'Djayssen Jayaraman', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'7699448343', N'1397 Tallac Lane')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (349, N'79', N'C*1ouwL0', N'Devika Chadha', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'7748576008', N'202 Deer Run Trail')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (278, N'8', N'kyv1V@$H', N'Adhita Dey', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6876609977', N'8133 Meadowgreen Place')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (350, N'80', N'y*WWe9DV', N'Girish Chandra', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8376838596', N'10826 Pointe Royal Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (351, N'81', N'1kmMC@nS', N'Aditi Dutta', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9123807412', N'890 East Skyline Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (352, N'82', N'S#a!T8r5', N'Laïli Ahluwalia', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'9576421559', N'51 Bearing Circle')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (353, N'83', N'oW1&5Yf0', N'Manjika Acharya', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'7732226672', N'65 Lowry Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (354, N'84', N'1g0Gj$1N', N'Indrajit Bakshi', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9665306873', N'7730 Wilkinson Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (355, N'85', N'Dj&P9@lk', N'Narayan Ganesan', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8727357487', N'2631 Northrup Place')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (356, N'86', N'rM7x*AW7', N'Kichenin Lata', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6127813491', N'1804 Calhoun Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (357, N'87', N'*a9A@d5S', N'Amit Kota', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'7320760149', N'1 Tanaquay Court')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (358, N'88', N'Y^3fwU17', N'Manjula Badal', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8533914178', N'6342 Kendall Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (359, N'89', N'$n#g9qkI', N'Dev Buch', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6479071266', N'61 Thomas Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (279, N'9', N'pvw1K!yQ', N'Chitra Kara', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'8669094279', N'7030 Cotton Blossom Lane')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (360, N'90', N'&d3atDZ7', N'Gopi Gour', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7574693127', N'1123 Ardee Avenue')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (361, N'91', N'&S592qLi', N'Lekha Dani', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6282781204', N'6917 Briarcreek Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (362, N'92', N'J0Qp!itX', N'Nilam Brahmbhatt', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'9061528167', N'357 Chaplin Street Southeast')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (363, N'93', N'9Jrsx@E1', N'Chandra Apte', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'6937521589', N'93 Hamlin Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (364, N'94', N'7K*vOOXV', N'Jitender Chhabra', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7841804840', N'3142 North Warwick Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (365, N'95', N'@&254mqh', N'Adita Sarin', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'7866302166', N'2902 Flint Street')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (366, N'96', N'^*3KJ1il', N'Gayatri Bali', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8238754255', N'2014 Clemens Road')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (367, N'97', N'N9%COF1M', N'Mohini Munshi', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'7209863497', N'8315 Surf Drive')
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (368, N'98', N'$PR!J7WY', N'Chetana Buch', 2, N'n19dccn018@gmail.com', 1, N'', CAST(N'1997-10-19' AS Date), N'8257788960', N'2021 West Burnett Avenue')
GO
INSERT [dbo].[Account] ([ID], [Username], [Password], [Fullname], [Role], [Email], [Gender], [Image], [Birthday], [Phone], [Address]) VALUES (369, N'99', N'L^27Cehz', N'firstname Vasa', 2, N'n19dccn018@gmail.com', 0, N'', CAST(N'1997-10-19' AS Date), N'6137452659', N'5302 1st Street Northwest')
SET IDENTITY_INSERT [dbo].[Account] OFF
GO
SET IDENTITY_INSERT [dbo].[History] ON
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-24T14:43:31.833' AS DateTime), N'8194E6239BD97E947E17C3CFB216D0DA', N'1', 11)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-24T14:43:42.883' AS DateTime), N'8194E6239BD97E947E17C3CFB216D0DA', N'1032', 12)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-24T14:43:44.460' AS DateTime), N'8194E6239BD97E947E17C3CFB216D0DA', N'1051', 13)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T09:17:16.617' AS DateTime), N'50D7F51DFA2FAF2DB800B651DF87DD46', N'1', 14)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T10:31:35.143' AS DateTime), N'BF8E287DB0367A4F1183843A49815DA9', N'1', 15)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T14:06:58.207' AS DateTime), N'0743194654143140A5A3CE6FF0094107', N'1', 16)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T14:10:35.713' AS DateTime), N'0743194654143140A5A3CE6FF0094107', N'1033', 17)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T14:17:38.150' AS DateTime), N'53726BE0DADF7FA38F57BA843BCB855E', N'1', 18)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T16:19:27.690' AS DateTime), N'B957E2DB043CFBE924FADD882E1331BA', N'1', 19)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T16:19:41.643' AS DateTime), N'B957E2DB043CFBE924FADD882E1331BA', N'1002', 20)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T16:21:34.117' AS DateTime), N'B957E2DB043CFBE924FADD882E1331BA', N'1003', 21)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T16:22:23.517' AS DateTime), N'B957E2DB043CFBE924FADD882E1331BA', N'1009', 22)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T16:22:27.057' AS DateTime), N'B957E2DB043CFBE924FADD882E1331BA', N'1016', 23)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T16:22:48.853' AS DateTime), N'B957E2DB043CFBE924FADD882E1331BA', N'1017', 24)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T16:22:52.687' AS DateTime), N'B957E2DB043CFBE924FADD882E1331BA', N'1023', 25)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:21:57.757' AS DateTime), N'A267056A459AE911217BC897836E5ABF', N'1', 26)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:24:09.477' AS DateTime), N'0E5641FAA68EDDAF35D5115EF4BDB418', N'1', 27)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:24:49.387' AS DateTime), N'7BBBC3E16D34B14592EC32D544A93D9D', N'1', 28)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:24:49.387' AS DateTime), N'EF923358F7651D72DD97ED53AB8DD43F', N'1', 29)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:26:29.027' AS DateTime), N'48286349692034D47D7929582CD355D8', N'1', 30)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:27:24.577' AS DateTime), N'48286349692034D47D7929582CD355D8', N'1', 31)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:29:38.177' AS DateTime), N'5ACC69B3D8AE26205707F4434DF5040F', N'10', 32)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:44:47.960' AS DateTime), N'7B335E7151BD9717CA7097FCE4774F5B', N'10', 33)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:47:01.043' AS DateTime), N'7B335E7151BD9717CA7097FCE4774F5B', N'1', 34)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:47:44.080' AS DateTime), N'3E75563FB42B45BF1D41281DED6E1EE2', N'1', 35)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:51:30.927' AS DateTime), N'ADC326140BE88F910B9DD2E9AE628A9C', N'1', 36)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:52:01.807' AS DateTime), N'ADC326140BE88F910B9DD2E9AE628A9C', N'1', 37)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:53:18.557' AS DateTime), N'377603616DF5E82719E07DE2086DF36E', N'1', 38)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T18:54:07.327' AS DateTime), N'377603616DF5E82719E07DE2086DF36E', N'1', 39)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T19:52:32.040' AS DateTime), N'3469E37612243246B8A48FDEAC1DF764', N'1', 40)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T19:54:17.847' AS DateTime), N'3469E37612243246B8A48FDEAC1DF764', N'1', 41)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T19:57:12.773' AS DateTime), N'5AC8F35553F5A6FDF4BED1F2AC028520', N'1', 42)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T20:38:00.287' AS DateTime), N'35B9BC37CE15D6C34713EFC1E2E0436B', N'1', 43)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T20:39:27.827' AS DateTime), N'35B9BC37CE15D6C34713EFC1E2E0436B', N'1', 44)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-25T20:39:33.893' AS DateTime), N'35B9BC37CE15D6C34713EFC1E2E0436B', N'116', 45)
INSERT [dbo].[History] ([Username], [RequestTime], [SessionID], [ProductID], [ID]) VALUES (N'', CAST(N'2022-12-27T16:56:12.347' AS DateTime), N'1155E4FA4385DBBE276ABA7460726940', N'1001', 46)
SET IDENTITY_INSERT [dbo].[History] OFF
GO
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1', N'Áo Jacket Nam', 1, 900, N'images/Top/Jacket/jacket2.png', N'Cartier', 1, 2021, N'Jacket', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'10', N'Quần Tee Pants Nu', 2, 500, N'images/Bot/Tee Pants/pants2.png', N'H&M', 0, 2020, N'Tee Pants', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'100', N'Quần Cargo Nu', 2, 400, N'images/Bot/Cargo/Cargo4.jpg', N'Cartier', 0, 2022, N'Cargo', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1000', N'Áo Croptop Nam', 1, 800, N'images/Top/Croptop/croptop1.png', N'ZARA', 1, 2018, N'Croptop', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1001', N'Quần Legging Nam', 2, 400, N'images/Bot/Legging/legging1.jpg', N'Chanel', 1, 2020, N'Legging', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1002', N'Áo Hoodie Nam', 1, 300, N'images/Top/Hoodie/hoodie4.png', N'GUCCI', 1, 2022, N'Hoodie', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1003', N'Quần Legging Nu', 2, 900, N'images/Bot/Legging/legging1.jpg', N'UNIQLO', 0, 2021, N'Legging', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1004', N'Áo Croptop Nu', 1, 400, N'images/Top/Croptop/croptop1.png', N'Chanel', 0, 2021, N'Croptop', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1005', N'Áo Polo Nu', 1, 100, N'images/Top/Polo/polo2.png', N'Adidas', 0, 2020, N'Polo', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1006', N'Quần Cargo Nu', 2, 300, N'images/Bot/Cargo/Cargo2.png', N'Nike', 0, 2021, N'Cargo', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1007', N'Quần Tee Pants Nam', 2, 550, N'images/Bot/Tee Pants/pants1.png', N'Dior', 1, 2022, N'Tee Pants', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1008', N'Áo TankTop Nam', 1, 550, N'images/Top/TankTop/tanktop3.jpg', N'Nike', 1, 2018, N'TankTop', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1009', N'Quần Legging Nam', 2, 350, N'images/Bot/Legging/legging2.jpg', N'Dior', 1, 2019, N'Legging', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'101', N'Áo Hoodie Nam', 1, 200, N'images/Top/Hoodie/hoodie4.png', N'Adidas', 1, 2019, N'Hoodie', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1010', N'Áo Tee Nu', 1, 950, N'images/Top/Tee/tee1.png', N'Cartier', 0, 2020, N'Tee', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1011', N'Áo Croptop Nu', 1, 250, N'images/Top/Croptop/croptop1.png', N'GUCCI', 0, 2022, N'Croptop', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1012', N'Áo TankTop Nu', 1, 650, N'images/Top/TankTop/tanktop3.jpg', N'Cartier', 0, 2020, N'TankTop', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1013', N'Áo Polo Nu', 1, 650, N'images/Top/Polo/polo2.png', N'UNIQLO', 0, 2020, N'Polo', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1014', N'Quần Tee Pants Nu', 2, 600, N'images/Bot/Tee Pants/pants2.png', N'Dior', 0, 2020, N'Tee Pants', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1015', N'Quần Cargo Nam', 2, 350, N'images/Bot/Cargo/Cargo2.png', N'ZARA', 1, 2019, N'Cargo', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1016', N'Quần Legging Nu', 2, 300, N'images/Bot/Legging/legging2.jpg', N'H&M', 0, 2018, N'Legging', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1017', N'Quần Kaki Nu', 2, 900, N'images/Bot/Kaki/kaki2.png', N'Nike', 0, 2022, N'Kaki', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1018', N'Áo TankTop Nu', 1, 450, N'images/Top/TankTop/tanktop2.png', N'Louis Vuitton', 0, 2021, N'TankTop', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1019', N'Áo Sweater Nam', 1, 150, N'images/Top/Sweater/sweater1.png', N'GUCCI', 1, 2018, N'Sweater', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'102', N'Áo Sweater Nam', 1, 200, N'images/Top/Sweater/sweater4.png', N'Hermes', 1, 2018, N'Sweater', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1020', N'Áo Hoodie Nam', 1, 750, N'images/Top/Hoodie/hoodie1.png', N'Chanel', 1, 2019, N'Hoodie', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1021', N'Áo Tee Nam', 1, 350, N'images/Top/Tee/tee2.png', N'H&M', 1, 2019, N'Tee', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1022', N'Áo Croptop Nu', 1, 150, N'images/Top/Croptop/croptop2.jpg', N'Nike', 0, 2020, N'Croptop', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1023', N'Quần Baggy Nu', 2, 800, N'images/Bot/Baggy/Baggy2.png', N'Cartier', 0, 2022, N'Baggy', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1024', N'Quần Cargo Nu', 2, 100, N'images/Bot/Cargo/Cargo3.png', N'Adidas', 0, 2018, N'Cargo', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1025', N'Áo Sweater Nu', 1, 750, N'images/Top/Sweater/sweater5.png', N'Louis Vuitton', 0, 2018, N'Sweater', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1026', N'Áo Sweater Nu', 1, 100, N'images/Top/Sweater/sweater5.png', N'UNIQLO', 0, 2022, N'Sweater', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1027', N'Áo Hoodie Nam', 1, 650, N'images/Top/Hoodie/hoodie3.png', N'H&M', 1, 2019, N'Hoodie', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1028', N'Áo TankTop Nu', 1, 650, N'images/Top/TankTop/tanktop2.png', N'Dior', 0, 2020, N'TankTop', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1029', N'Quần Cargo Nu', 2, 900, N'images/Bot/Cargo/Cargo3.png', N'GUCCI', 0, 2022, N'Cargo', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'103', N'Áo Croptop Nam', 1, 100, N'images/Top/Croptop/croptop1.png', N'H&M', 1, 2021, N'Croptop', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1030', N'Quần Tee Pants Nam', 2, 550, N'images/Bot/Tee Pants/pants1.png', N'Chanel', 1, 2018, N'Tee Pants', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1031', N'Quần Baggy Nam', 2, 450, N'images/Bot/Baggy/Baggy1.png', N'UNIQLO', 1, 2019, N'Baggy', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1032', N'Quần Short Nam', 2, 150, N'images/Bot/Short/short2.png', N'Dior', 1, 2022, N'Short', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1033', N'Áo TankTop Nam', 1, 900, N'images/Top/TankTop/tanktop3.jpg', N'Louis Vuitton', 1, 2022, N'TankTop', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1034', N'Quần Kaki Nu', 2, 850, N'images/Bot/Kaki/kaki3.jpeg', N'Adidas', 0, 2021, N'Kaki', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1035', N'Quần Jeans Nam', 2, 250, N'images/Bot/Jeans/Jeans4.png', N'ZARA', 1, 2022, N'Jeans', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1036', N'Áo Tee Nu', 1, 700, N'images/Top/Tee/tee1.png', N'H&M', 0, 2021, N'Tee', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1037', N'Áo Jacket Nam', 1, 750, N'images/Top/Jacket/jacket3.png', N'H&M', 1, 2019, N'Jacket', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1038', N'Áo Polo Nam', 1, 400, N'images/Top/Polo/polo4.png', N'UNIQLO', 1, 2021, N'Polo', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1039', N'Quần Joggers Nam', 2, 500, N'images/Bot/Joggers/Joggers3.png', N'Hermes', 1, 2021, N'Joggers', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'104', N'Áo Jacket Nam', 1, 500, N'images/Top/Jacket/jacket5.png', N'UNIQLO', 1, 2020, N'Jacket', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1040', N'Áo Croptop Nu', 1, 350, N'images/Top/Croptop/croptop3.png', N'UNIQLO', 0, 2022, N'Croptop', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1041', N'Quần Short Nam', 2, 900, N'images/Bot/Short/short3.png', N'Nike', 1, 2019, N'Short', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1042', N'Quần Cargo Nam', 2, 400, N'images/Bot/Cargo/Cargo4.jpg', N'ZARA', 1, 2020, N'Cargo', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1043', N'Áo Croptop Nam', 1, 800, N'images/Top/Croptop/croptop4.png', N'GUCCI', 1, 2022, N'Croptop', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1044', N'Quần Legging Nam', 2, 300, N'images/Bot/Legging/legging2.jpg', N'Nike', 1, 2019, N'Legging', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1045', N'Áo TankTop Nu', 1, 200, N'images/Top/TankTop/tanktop2.png', N'Adidas', 0, 2018, N'TankTop', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1046', N'Quần Cargo Nu', 2, 400, N'images/Bot/Cargo/Cargo2.png', N'Hermes', 0, 2021, N'Cargo', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1047', N'Áo Tee Nu', 1, 350, N'images/Top/Tee/tee1.png', N'Hermes', 0, 2022, N'Tee', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1048', N'Áo Croptop Nu', 1, 900, N'images/Top/Croptop/croptop2.jpg', N'ZARA', 0, 2020, N'Croptop', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1049', N'Quần Short Nu', 2, 300, N'images/Bot/Short/short1.png', N'ZARA', 0, 2020, N'Short', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'105', N'Quần Legging Nam', 2, 150, N'images/Bot/Legging/legging3.jpg', N'Nike', 1, 2020, N'Legging', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1050', N'Quần Joggers Nu', 2, 250, N'images/Bot/Joggers/Joggers1.png', N'H&M', 0, 2020, N'Joggers', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1051', N'Quần Kaki Nam', 2, 1000, N'images/Bot/Kaki/kaki2.png', N'Cartier', 1, 2022, N'Kaki', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1052', N'Áo Hoodie Nam', 1, 550, N'images/Top/Hoodie/hoodie4.png', N'Nike', 1, 2020, N'Hoodie', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1053', N'Áo Tee Nu', 1, 150, N'images/Top/Tee/tee3.png', N'Chanel', 0, 2021, N'Tee', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1054', N'Quần Short Nam', 2, 900, N'images/Bot/Short/short2.png', N'Louis Vuitton', 1, 2018, N'Short', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1055', N'Quần Joggers Nam', 2, 400, N'images/Bot/Joggers/Joggers3.png', N'Nike', 1, 2021, N'Joggers', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1056', N'Quần Tee Pants Nu', 2, 500, N'images/Bot/Tee Pants/pants1.png', N'UNIQLO', 0, 2022, N'Tee Pants', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1057', N'Quần Legging Nu', 2, 500, N'images/Bot/Legging/legging1.jpg', N'ZARA', 0, 2021, N'Legging', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1058', N'Quần Jeans Nu', 2, 600, N'images/Bot/Jeans/Jeans4.png', N'Hermes', 0, 2019, N'Jeans', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1059', N'Áo Croptop Nu', 1, 150, N'images/Top/Croptop/croptop3.png', N'Louis Vuitton', 0, 2021, N'Croptop', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'106', N'Áo Sweater Nam', 1, 250, N'images/Top/Sweater/sweater5.png', N'Louis Vuitton', 1, 2020, N'Sweater', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1060', N'Áo TankTop Nu', 1, 600, N'images/Top/TankTop/tanktop1.jpg', N'ZARA', 0, 2020, N'TankTop', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1061', N'Áo Croptop Nam', 1, 450, N'images/Top/Croptop/croptop4.png', N'Cartier', 1, 2021, N'Croptop', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1062', N'Quần Jeans Nam', 2, 1000, N'images/Bot/Jeans/Jean2.jpg', N'ZARA', 1, 2019, N'Jeans', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1063', N'Áo Sweater Nu', 1, 1000, N'images/Top/Sweater/sweater3.png', N'H&M', 0, 2019, N'Sweater', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1064', N'Áo Sweater Nam', 1, 750, N'images/Top/Sweater/sweater2.png', N'Chanel', 1, 2022, N'Sweater', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1065', N'Áo Blazer Nu', 1, 500, N'images/Top/Blazer/blazer1.png', N'GUCCI', 0, 2020, N'Blazer', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1066', N'Quần Cargo Nu', 2, 100, N'images/Bot/Cargo/Cargo3.png', N'Cartier', 0, 2022, N'Cargo', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1067', N'Quần Jeans Nu', 2, 450, N'images/Bot/Jeans/Jeans3.png', N'Hermes', 0, 2021, N'Jeans', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1068', N'Quần Legging Nu', 2, 750, N'images/Bot/Legging/legging1.jpg', N'Adidas', 0, 2021, N'Legging', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1069', N'Áo Jacket Nu', 1, 300, N'images/Top/Jacket/jacket4.png', N'Cartier', 0, 2021, N'Jacket', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'107', N'Quần Joggers Nu', 2, 600, N'images/Bot/Joggers/Joggers1.png', N'Dior', 0, 2019, N'Joggers', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1070', N'Áo TankTop Nu', 1, 850, N'images/Top/TankTop/tanktop3.jpg', N'Louis Vuitton', 0, 2020, N'TankTop', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1071', N'Áo TankTop Nam', 1, 450, N'images/Top/TankTop/tanktop1.jpg', N'GUCCI', 1, 2022, N'TankTop', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1072', N'Áo Croptop Nam', 1, 700, N'images/Top/Croptop/croptop3.png', N'Dior', 1, 2022, N'Croptop', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1073', N'Áo Hoodie Nam', 1, 450, N'images/Top/Hoodie/hoodie4.png', N'Nike', 1, 2018, N'Hoodie', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1074', N'Quần Kaki Nu', 2, 200, N'images/Bot/Kaki/kaki1.jpg', N'Nike', 0, 2020, N'Kaki', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1075', N'Áo Polo Nu', 1, 350, N'images/Top/Polo/polo4.png', N'H&M', 0, 2022, N'Polo', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1076', N'Quần Short Nam', 2, 750, N'images/Bot/Short/short3.png', N'Dior', 1, 2020, N'Short', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1077', N'Áo Croptop Nam', 1, 800, N'images/Top/Croptop/croptop4.png', N'UNIQLO', 1, 2018, N'Croptop', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1078', N'Quần Baggy Nam', 2, 500, N'images/Bot/Baggy/Baggy3.png', N'Chanel', 1, 2022, N'Baggy', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1079', N'Áo Blazer Nam', 1, 950, N'images/Top/Blazer/blazer5.png', N'Hermes', 1, 2018, N'Blazer', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'108', N'Áo Jacket Nu', 1, 500, N'images/Top/Jacket/jacket4.png', N'Louis Vuitton', 0, 2018, N'Jacket', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1080', N'Áo Tee Nu', 1, 700, N'images/Top/Tee/tee4.png', N'Chanel', 0, 2019, N'Tee', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1081', N'Quần Baggy Nam', 2, 300, N'images/Bot/Baggy/Baggy3.png', N'GUCCI', 1, 2018, N'Baggy', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1082', N'Áo Sweater Nam', 1, 800, N'images/Top/Sweater/sweater2.png', N'Nike', 1, 2018, N'Sweater', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1083', N'Áo Polo Nam', 1, 150, N'images/Top/Polo/polo3.png', N'Dior', 1, 2019, N'Polo', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1084', N'Áo Croptop Nam', 1, 800, N'images/Top/Croptop/croptop3.png', N'Nike', 1, 2019, N'Croptop', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1085', N'Áo Sweater Nam', 1, 900, N'images/Top/Sweater/sweater4.png', N'UNIQLO', 1, 2018, N'Sweater', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1086', N'Áo Polo Nu', 1, 100, N'images/Top/Polo/polo4.png', N'Louis Vuitton', 0, 2019, N'Polo', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1087', N'Áo TankTop Nam', 1, 950, N'images/Top/TankTop/tanktop2.png', N'Hermes', 1, 2018, N'TankTop', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1088', N'Quần Jeans Nam', 2, 200, N'images/Bot/Jeans/Jeans4.png', N'Dior', 1, 2019, N'Jeans', 1, N'Kate')
GO
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1089', N'Áo Jacket Nu', 1, 900, N'images/Top/Jacket/jacket2.png', N'Chanel', 0, 2021, N'Jacket', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'109', N'Áo Blazer Nam', 1, 950, N'images/Top/Blazer/blazer4.png', N'Cartier', 1, 2022, N'Blazer', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1090', N'Áo Hoodie Nam', 1, 950, N'images/Top/Hoodie/hoodie1.png', N'Nike', 1, 2020, N'Hoodie', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1091', N'Áo Sweater Nu', 1, 150, N'images/Top/Sweater/sweater3.png', N'Nike', 0, 2022, N'Sweater', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1092', N'Áo TankTop Nu', 1, 350, N'images/Top/TankTop/tanktop1.jpg', N'Hermes', 0, 2020, N'TankTop', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1093', N'Áo TankTop Nam', 1, 150, N'images/Top/TankTop/tanktop2.png', N'UNIQLO', 1, 2019, N'TankTop', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1094', N'Áo Jacket Nu', 1, 400, N'images/Top/Jacket/jacket1.png', N'Cartier', 0, 2022, N'Jacket', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1095', N'Áo Polo Nam', 1, 550, N'images/Top/Polo/polo3.png', N'Louis Vuitton', 1, 2018, N'Polo', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1096', N'Áo Jacket Nam', 1, 650, N'images/Top/Jacket/jacket3.png', N'Chanel', 1, 2019, N'Jacket', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1097', N'Quần Cargo Nu', 2, 100, N'images/Bot/Cargo/Cargo1.png', N'Dior', 0, 2018, N'Cargo', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1098', N'Quần Joggers Nam', 2, 500, N'images/Bot/Joggers/Joggers2.png', N'UNIQLO', 1, 2021, N'Joggers', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1099', N'Áo Blazer Nam', 1, 700, N'images/Top/Blazer/blazer2.jpg', N'Cartier', 1, 2019, N'Blazer', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'11', N'Áo Hoodie Nam', 1, 350, N'images/Top/Hoodie/hoodie1.png', N'Cartier', 1, 2018, N'Hoodie', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'110', N'Quần Tee Pants Nam', 2, 200, N'images/Bot/Tee Pants/pants2.png', N'Cartier', 1, 2018, N'Tee Pants', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1100', N'Áo Polo Nu', 1, 650, N'images/Top/Polo/polo3.png', N'GUCCI', 0, 2020, N'Polo', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1101', N'Quần Jeans Nam', 2, 600, N'images/Bot/Jeans/Jeans1.png', N'ZARA', 1, 2019, N'Jeans', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1102', N'Quần Legging Nu', 2, 500, N'images/Bot/Legging/legging2.jpg', N'Dior', 0, 2019, N'Legging', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1103', N'Quần Kaki Nu', 2, 300, N'images/Bot/Kaki/kaki2.png', N'Cartier', 0, 2020, N'Kaki', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1104', N'Áo Sweater Nu', 1, 700, N'images/Top/Sweater/sweater5.png', N'Nike', 0, 2018, N'Sweater', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1105', N'Quần Joggers Nu', 2, 250, N'images/Bot/Joggers/Joggers1.png', N'Nike', 0, 2018, N'Joggers', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1106', N'Quần Joggers Nu', 2, 900, N'images/Bot/Joggers/Joggers3.png', N'Chanel', 0, 2018, N'Joggers', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1107', N'Áo Sweater Nu', 1, 900, N'images/Top/Sweater/sweater1.png', N'Hermes', 0, 2022, N'Sweater', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1108', N'Áo Tee Nu', 1, 150, N'images/Top/Tee/tee1.png', N'Chanel', 0, 2018, N'Tee', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1109', N'Quần Short Nam', 2, 250, N'images/Bot/Short/short2.png', N'GUCCI', 1, 2021, N'Short', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'111', N'Áo Hoodie Nu', 1, 250, N'images/Top/Hoodie/hoodie4.png', N'Louis Vuitton', 0, 2018, N'Hoodie', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1110', N'Quần Legging Nu', 2, 600, N'images/Bot/Legging/legging3.jpg', N'UNIQLO', 0, 2019, N'Legging', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1111', N'Áo Croptop Nu', 1, 100, N'images/Top/Croptop/croptop1.png', N'Dior', 0, 2019, N'Croptop', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1112', N'Áo Jacket Nu', 1, 100, N'images/Top/Jacket/jacket4.png', N'Adidas', 0, 2019, N'Jacket', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1113', N'Áo TankTop Nu', 1, 350, N'images/Top/TankTop/tanktop1.jpg', N'ZARA', 0, 2018, N'TankTop', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1114', N'Quần Short Nam', 2, 600, N'images/Bot/Short/short1.png', N'Louis Vuitton', 1, 2021, N'Short', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1115', N'Áo Jacket Nu', 1, 250, N'images/Top/Jacket/jacket3.png', N'Dior', 0, 2018, N'Jacket', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1116', N'Áo Polo Nam', 1, 850, N'images/Top/Polo/polo1.png', N'Dior', 1, 2022, N'Polo', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1117', N'Áo Sweater Nu', 1, 800, N'images/Top/Sweater/sweater5.png', N'Dior', 0, 2019, N'Sweater', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1118', N'Quần Tee Pants Nu', 2, 200, N'images/Bot/Tee Pants/pants1.png', N'Louis Vuitton', 0, 2021, N'Tee Pants', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1119', N'Quần Short Nam', 2, 900, N'images/Bot/Short/short3.png', N'H&M', 1, 2019, N'Short', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'112', N'Áo TankTop Nu', 1, 500, N'images/Top/TankTop/tanktop2.png', N'ZARA', 0, 2022, N'TankTop', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1120', N'Áo Croptop Nu', 1, 750, N'images/Top/Croptop/croptop2.jpg', N'ZARA', 0, 2020, N'Croptop', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1121', N'Áo Polo Nam', 1, 350, N'images/Top/Polo/polo3.png', N'GUCCI', 1, 2018, N'Polo', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1122', N'Áo TankTop Nu', 1, 100, N'images/Top/TankTop/tanktop2.png', N'UNIQLO', 0, 2022, N'TankTop', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1123', N'Quần Short Nu', 2, 900, N'images/Bot/Short/short1.png', N'Dior', 0, 2018, N'Short', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1124', N'Áo Blazer Nu', 1, 800, N'images/Top/Blazer/blazer4.png', N'Adidas', 0, 2018, N'Blazer', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1125', N'Áo Jacket Nam', 1, 300, N'images/Top/Jacket/jacket5.png', N'GUCCI', 1, 2018, N'Jacket', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1126', N'Áo Blazer Nam', 1, 300, N'images/Top/Blazer/blazer1.png', N'Hermes', 1, 2020, N'Blazer', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1127', N'Quần Kaki Nam', 2, 350, N'images/Bot/Kaki/kaki1.jpg', N'ZARA', 1, 2019, N'Kaki', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1128', N'Quần Short Nu', 2, 700, N'images/Bot/Short/short3.png', N'GUCCI', 0, 2019, N'Short', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1129', N'Quần Cargo Nu', 2, 850, N'images/Bot/Cargo/Cargo1.png', N'UNIQLO', 0, 2019, N'Cargo', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'113', N'Áo Blazer Nam', 1, 950, N'images/Top/Blazer/blazer5.png', N'Dior', 1, 2019, N'Blazer', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1130', N'Áo Blazer Nam', 1, 150, N'images/Top/Blazer/blazer2.jpg', N'ZARA', 1, 2018, N'Blazer', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1131', N'Áo Tee Nam', 1, 150, N'images/Top/Tee/tee5.png', N'Chanel', 1, 2018, N'Tee', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1132', N'Áo Tee Nu', 1, 350, N'images/Top/Tee/tee2.png', N'H&M', 0, 2022, N'Tee', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1133', N'Áo Tee Nu', 1, 550, N'images/Top/Tee/tee4.png', N'GUCCI', 0, 2021, N'Tee', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1134', N'Quần Baggy Nam', 2, 550, N'images/Bot/Baggy/Baggy3.png', N'H&M', 1, 2022, N'Baggy', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1135', N'Áo Croptop Nu', 1, 750, N'images/Top/Croptop/croptop2.jpg', N'Hermes', 0, 2019, N'Croptop', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1136', N'Áo Tee Nu', 1, 650, N'images/Top/Tee/tee1.png', N'ZARA', 0, 2018, N'Tee', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1137', N'Quần Legging Nu', 2, 850, N'images/Bot/Legging/legging2.jpg', N'Nike', 0, 2021, N'Legging', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1138', N'Áo Tee Nu', 1, 550, N'images/Top/Tee/tee2.png', N'H&M', 0, 2018, N'Tee', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1139', N'Áo Polo Nu', 1, 650, N'images/Top/Polo/polo1.png', N'Cartier', 0, 2022, N'Polo', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'114', N'Áo Tee Nu', 1, 600, N'images/Top/Tee/tee1.png', N'Adidas', 0, 2020, N'Tee', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1140', N'Áo Polo Nam', 1, 950, N'images/Top/Polo/polo3.png', N'GUCCI', 1, 2019, N'Polo', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1141', N'Quần Baggy Nam', 2, 450, N'images/Bot/Baggy/Baggy1.png', N'Cartier', 1, 2020, N'Baggy', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1142', N'Áo Jacket Nu', 1, 350, N'images/Top/Jacket/jacket3.png', N'ZARA', 0, 2020, N'Jacket', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1143', N'Quần Joggers Nam', 2, 750, N'images/Bot/Joggers/Joggers3.png', N'Hermes', 1, 2020, N'Joggers', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1144', N'Quần Tee Pants Nu', 2, 100, N'images/Bot/Tee Pants/pants2.png', N'Nike', 0, 2021, N'Tee Pants', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1145', N'Áo Jacket Nu', 1, 350, N'images/Top/Jacket/jacket5.png', N'Louis Vuitton', 0, 2018, N'Jacket', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1146', N'Quần Joggers Nu', 2, 900, N'images/Bot/Joggers/Joggers1.png', N'ZARA', 0, 2021, N'Joggers', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1147', N'Áo Blazer Nam', 1, 300, N'images/Top/Blazer/blazer4.png', N'UNIQLO', 1, 2018, N'Blazer', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1148', N'Áo Sweater Nu', 1, 650, N'images/Top/Sweater/sweater2.png', N'H&M', 0, 2020, N'Sweater', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1149', N'Áo Blazer Nu', 1, 400, N'images/Top/Blazer/blazer4.png', N'H&M', 0, 2020, N'Blazer', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'115', N'Áo Sweater Nu', 1, 200, N'images/Top/Sweater/sweater4.png', N'GUCCI', 0, 2018, N'Sweater', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1150', N'Áo Blazer Nu', 1, 1000, N'images/Top/Blazer/blazer3.jpg', N'Hermes', 0, 2021, N'Blazer', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1151', N'Quần Legging Nam', 2, 450, N'images/Bot/Legging/legging1.jpg', N'Dior', 1, 2019, N'Legging', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1152', N'Quần Baggy Nu', 2, 1000, N'images/Bot/Baggy/Baggy1.png', N'Chanel', 0, 2022, N'Baggy', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1153', N'Áo Hoodie Nam', 1, 550, N'images/Top/Hoodie/hoodie2.png', N'GUCCI', 1, 2018, N'Hoodie', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1154', N'Quần Kaki Nu', 2, 800, N'images/Bot/Kaki/kaki2.png', N'Louis Vuitton', 0, 2019, N'Kaki', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1155', N'Áo Jacket Nu', 1, 700, N'images/Top/Jacket/jacket4.png', N'Dior', 0, 2020, N'Jacket', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1156', N'Quần Cargo Nu', 2, 200, N'images/Bot/Cargo/Cargo4.jpg', N'UNIQLO', 0, 2021, N'Cargo', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1157', N'Quần Joggers Nu', 2, 600, N'images/Bot/Joggers/Joggers1.png', N'H&M', 0, 2019, N'Joggers', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1158', N'Quần Tee Pants Nu', 2, 700, N'images/Bot/Tee Pants/pants2.png', N'ZARA', 0, 2018, N'Tee Pants', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1159', N'Quần Legging Nam', 2, 900, N'images/Bot/Legging/legging2.jpg', N'Louis Vuitton', 1, 2021, N'Legging', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'116', N'Áo Polo Nam', 1, 650, N'images/Top/Polo/polo3.png', N'ZARA', 1, 2022, N'Polo', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1160', N'Áo Hoodie Nam', 1, 250, N'images/Top/Hoodie/hoodie3.png', N'Louis Vuitton', 1, 2018, N'Hoodie', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1161', N'Áo Tee Nu', 1, 150, N'images/Top/Tee/tee1.png', N'Hermes', 0, 2019, N'Tee', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1162', N'Áo Hoodie Nu', 1, 350, N'images/Top/Hoodie/hoodie2.png', N'Cartier', 0, 2020, N'Hoodie', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1163', N'Quần Kaki Nam', 2, 300, N'images/Bot/Kaki/kaki4.png', N'UNIQLO', 1, 2022, N'Kaki', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1164', N'Quần Cargo Nu', 2, 100, N'images/Bot/Cargo/Cargo4.jpg', N'Adidas', 0, 2019, N'Cargo', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1165', N'Quần Joggers Nu', 2, 700, N'images/Bot/Joggers/Joggers3.png', N'H&M', 0, 2020, N'Joggers', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1166', N'Áo Croptop Nu', 1, 900, N'images/Top/Croptop/croptop1.png', N'Dior', 0, 2021, N'Croptop', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1167', N'Quần Baggy Nu', 2, 850, N'images/Bot/Baggy/Baggy2.png', N'Dior', 0, 2019, N'Baggy', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1168', N'Áo TankTop Nu', 1, 350, N'images/Top/TankTop/tanktop3.jpg', N'Nike', 0, 2019, N'TankTop', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1169', N'Quần Short Nam', 2, 950, N'images/Bot/Short/short1.png', N'H&M', 1, 2019, N'Short', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'117', N'Áo Blazer Nam', 1, 350, N'images/Top/Blazer/blazer5.png', N'UNIQLO', 1, 2020, N'Blazer', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1170', N'Áo Hoodie Nu', 1, 350, N'images/Top/Hoodie/hoodie4.png', N'H&M', 0, 2022, N'Hoodie', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1171', N'Quần Short Nam', 2, 1000, N'images/Bot/Short/short1.png', N'Dior', 1, 2020, N'Short', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1172', N'Quần Cargo Nu', 2, 200, N'images/Bot/Cargo/Cargo3.png', N'Chanel', 0, 2022, N'Cargo', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1173', N'Áo Croptop Nu', 1, 900, N'images/Top/Croptop/croptop4.png', N'UNIQLO', 0, 2019, N'Croptop', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1174', N'Quần Legging Nu', 2, 550, N'images/Bot/Legging/legging1.jpg', N'Cartier', 0, 2019, N'Legging', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1175', N'Quần Kaki Nam', 2, 550, N'images/Bot/Kaki/kaki2.png', N'Cartier', 1, 2019, N'Kaki', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1176', N'Áo Blazer Nam', 1, 550, N'images/Top/Blazer/blazer3.jpg', N'Cartier', 1, 2022, N'Blazer', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1177', N'Áo Sweater Nu', 1, 900, N'images/Top/Sweater/sweater1.png', N'Hermes', 0, 2021, N'Sweater', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1178', N'Áo Croptop Nam', 1, 900, N'images/Top/Croptop/croptop4.png', N'H&M', 1, 2022, N'Croptop', 0, N'Linen')
GO
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1179', N'Áo TankTop Nu', 1, 250, N'images/Top/TankTop/tanktop1.jpg', N'H&M', 0, 2020, N'TankTop', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'118', N'Quần Joggers Nam', 2, 350, N'images/Bot/Joggers/Joggers1.png', N'Adidas', 1, 2020, N'Joggers', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1180', N'Áo Blazer Nam', 1, 900, N'images/Top/Blazer/blazer5.png', N'Dior', 1, 2020, N'Blazer', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1181', N'Áo TankTop Nam', 1, 800, N'images/Top/TankTop/tanktop1.jpg', N'ZARA', 1, 2022, N'TankTop', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1182', N'Quần Baggy Nu', 2, 350, N'images/Bot/Baggy/Baggy1.png', N'UNIQLO', 0, 2018, N'Baggy', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1183', N'Áo Jacket Nam', 1, 100, N'images/Top/Jacket/jacket1.png', N'GUCCI', 1, 2022, N'Jacket', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1184', N'Áo Tee Nu', 1, 800, N'images/Top/Tee/tee5.png', N'Chanel', 0, 2019, N'Tee', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1185', N'Quần Kaki Nam', 2, 100, N'images/Bot/Kaki/kaki4.png', N'Hermes', 1, 2021, N'Kaki', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1186', N'Áo TankTop Nam', 1, 550, N'images/Top/TankTop/tanktop1.jpg', N'Cartier', 1, 2022, N'TankTop', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1187', N'Áo Tee Nu', 1, 300, N'images/Top/Tee/tee3.png', N'GUCCI', 0, 2021, N'Tee', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1188', N'Quần Cargo Nam', 2, 400, N'images/Bot/Cargo/Cargo2.png', N'Chanel', 1, 2021, N'Cargo', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1189', N'Quần Tee Pants Nam', 2, 200, N'images/Bot/Tee Pants/pants2.png', N'Louis Vuitton', 1, 2021, N'Tee Pants', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'119', N'Quần Tee Pants Nam', 2, 350, N'images/Bot/Tee Pants/pants3.png', N'H&M', 1, 2022, N'Tee Pants', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1190', N'Áo Jacket Nam', 1, 150, N'images/Top/Jacket/jacket4.png', N'H&M', 1, 2021, N'Jacket', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1191', N'Áo Blazer Nam', 1, 600, N'images/Top/Blazer/blazer3.jpg', N'Dior', 1, 2021, N'Blazer', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1192', N'Quần Baggy Nam', 2, 800, N'images/Bot/Baggy/Baggy2.png', N'Cartier', 1, 2019, N'Baggy', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1193', N'Quần Cargo Nam', 2, 750, N'images/Bot/Cargo/Cargo2.png', N'Nike', 1, 2022, N'Cargo', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1194', N'Quần Kaki Nu', 2, 600, N'images/Bot/Kaki/kaki2.png', N'ZARA', 0, 2022, N'Kaki', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1195', N'Quần Legging Nu', 2, 900, N'images/Bot/Legging/legging2.jpg', N'H&M', 0, 2019, N'Legging', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1196', N'Quần Legging Nam', 2, 700, N'images/Bot/Legging/legging3.jpg', N'Louis Vuitton', 1, 2022, N'Legging', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1197', N'Quần Jeans Nu', 2, 250, N'images/Bot/Jeans/Jeans3.png', N'Nike', 0, 2021, N'Jeans', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1198', N'Quần Legging Nam', 2, 900, N'images/Bot/Legging/legging3.jpg', N'Nike', 1, 2019, N'Legging', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1199', N'Quần Tee Pants Nam', 2, 750, N'images/Bot/Tee Pants/pants1.png', N'Nike', 1, 2022, N'Tee Pants', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'12', N'Áo Jacket Nu', 1, 700, N'images/Top/Jacket/jacket2.png', N'Cartier', 0, 2022, N'Jacket', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'120', N'Quần Short Nam', 2, 750, N'images/Bot/Short/short2.png', N'Adidas', 1, 2022, N'Short', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1200', N'Áo Polo Nu', 1, 350, N'images/Top/Polo/polo2.png', N'Cartier', 0, 2019, N'Polo', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1201', N'Áo Jacket Nu', 1, 850, N'images/Top/Jacket/jacket3.png', N'Dior', 0, 2022, N'Jacket', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1202', N'Quần Joggers Nu', 2, 450, N'images/Bot/Joggers/Joggers2.png', N'Adidas', 0, 2018, N'Joggers', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1203', N'Áo Blazer Nam', 1, 750, N'images/Top/Blazer/blazer1.png', N'Dior', 1, 2018, N'Blazer', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1204', N'Quần Cargo Nam', 2, 600, N'images/Bot/Cargo/Cargo4.jpg', N'Dior', 1, 2022, N'Cargo', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1205', N'Quần Tee Pants Nam', 2, 800, N'images/Bot/Tee Pants/pants3.png', N'H&M', 1, 2020, N'Tee Pants', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1206', N'Áo Croptop Nu', 1, 550, N'images/Top/Croptop/croptop2.jpg', N'Cartier', 0, 2021, N'Croptop', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1207', N'Quần Kaki Nam', 2, 750, N'images/Bot/Kaki/kaki4.png', N'GUCCI', 1, 2019, N'Kaki', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1208', N'Áo Hoodie Nu', 1, 1000, N'images/Top/Hoodie/hoodie2.png', N'Dior', 0, 2021, N'Hoodie', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1209', N'Quần Legging Nam', 2, 400, N'images/Bot/Legging/legging2.jpg', N'H&M', 1, 2019, N'Legging', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'121', N'Áo Tee Nam', 1, 300, N'images/Top/Tee/tee5.png', N'UNIQLO', 1, 2022, N'Tee', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1210', N'Áo Blazer Nu', 1, 600, N'images/Top/Blazer/blazer2.jpg', N'UNIQLO', 0, 2021, N'Blazer', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1211', N'Quần Baggy Nam', 2, 200, N'images/Bot/Baggy/Baggy1.png', N'Nike', 1, 2020, N'Baggy', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1212', N'Quần Short Nu', 2, 900, N'images/Bot/Short/short1.png', N'Nike', 0, 2020, N'Short', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1213', N'Quần Legging Nam', 2, 150, N'images/Bot/Legging/legging2.jpg', N'Nike', 1, 2021, N'Legging', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1214', N'Quần Short Nam', 2, 700, N'images/Bot/Short/short1.png', N'Dior', 1, 2021, N'Short', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1215', N'Quần Jeans Nu', 2, 1000, N'images/Bot/Jeans/Jeans1.png', N'GUCCI', 0, 2022, N'Jeans', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1216', N'Áo Hoodie Nam', 1, 200, N'images/Top/Hoodie/hoodie2.png', N'UNIQLO', 1, 2021, N'Hoodie', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1217', N'Quần Legging Nam', 2, 400, N'images/Bot/Legging/legging2.jpg', N'Dior', 1, 2022, N'Legging', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1218', N'Áo Polo Nu', 1, 200, N'images/Top/Polo/polo1.png', N'Hermes', 0, 2022, N'Polo', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1219', N'Áo Polo Nam', 1, 650, N'images/Top/Polo/polo2.png', N'Hermes', 1, 2020, N'Polo', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'122', N'Quần Cargo Nam', 2, 850, N'images/Bot/Cargo/Cargo3.png', N'Nike', 1, 2018, N'Cargo', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1220', N'Quần Jeans Nam', 2, 850, N'images/Bot/Jeans/Jeans4.png', N'ZARA', 1, 2021, N'Jeans', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1221', N'Quần Jeans Nu', 2, 750, N'images/Bot/Jeans/Jeans3.png', N'Adidas', 0, 2022, N'Jeans', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1222', N'Quần Baggy Nam', 2, 800, N'images/Bot/Baggy/Baggy2.png', N'Adidas', 1, 2020, N'Baggy', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1223', N'Áo TankTop Nam', 1, 150, N'images/Top/TankTop/tanktop2.png', N'Cartier', 1, 2020, N'TankTop', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1224', N'Quần Baggy Nu', 2, 150, N'images/Bot/Baggy/Baggy2.png', N'GUCCI', 0, 2019, N'Baggy', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1225', N'Quần Jeans Nam', 2, 1000, N'images/Bot/Jeans/Jeans4.png', N'Adidas', 1, 2018, N'Jeans', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1226', N'Quần Tee Pants Nu', 2, 850, N'images/Bot/Tee Pants/pants3.png', N'Louis Vuitton', 0, 2020, N'Tee Pants', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1227', N'Áo Tee Nam', 1, 1000, N'images/Top/Tee/tee4.png', N'H&M', 1, 2019, N'Tee', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1228', N'Quần Joggers Nu', 2, 150, N'images/Bot/Joggers/Joggers1.png', N'H&M', 0, 2019, N'Joggers', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1229', N'Quần Tee Pants Nu', 2, 900, N'images/Bot/Tee Pants/pants3.png', N'Louis Vuitton', 0, 2020, N'Tee Pants', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'123', N'Áo Hoodie Nam', 1, 350, N'images/Top/Hoodie/hoodie1.png', N'UNIQLO', 1, 2020, N'Hoodie', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1230', N'Quần Legging Nu', 2, 900, N'images/Bot/Legging/legging1.jpg', N'Louis Vuitton', 0, 2021, N'Legging', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1231', N'Quần Tee Pants Nam', 2, 750, N'images/Bot/Tee Pants/pants3.png', N'Chanel', 1, 2019, N'Tee Pants', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1232', N'Quần Kaki Nam', 2, 450, N'images/Bot/Kaki/kaki2.png', N'GUCCI', 1, 2021, N'Kaki', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1233', N'Áo Jacket Nam', 1, 500, N'images/Top/Jacket/jacket4.png', N'UNIQLO', 1, 2020, N'Jacket', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1234', N'Quần Legging Nam', 2, 650, N'images/Bot/Legging/legging2.jpg', N'Hermes', 1, 2021, N'Legging', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1235', N'Áo Blazer Nu', 1, 500, N'images/Top/Blazer/blazer1.png', N'ZARA', 0, 2021, N'Blazer', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1236', N'Quần Joggers Nam', 2, 350, N'images/Bot/Joggers/Joggers1.png', N'Louis Vuitton', 1, 2018, N'Joggers', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1237', N'Áo Hoodie Nu', 1, 200, N'images/Top/Hoodie/hoodie2.png', N'UNIQLO', 0, 2019, N'Hoodie', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1238', N'Quần Jeans Nam', 2, 650, N'images/Bot/Jeans/Jean2.jpg', N'Cartier', 1, 2019, N'Jeans', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1239', N'Quần Joggers Nu', 2, 800, N'images/Bot/Joggers/Joggers3.png', N'GUCCI', 0, 2020, N'Joggers', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'124', N'Quần Kaki Nu', 2, 300, N'images/Bot/Kaki/kaki4.png', N'Adidas', 0, 2018, N'Kaki', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1240', N'Quần Joggers Nu', 2, 750, N'images/Bot/Joggers/Joggers3.png', N'ZARA', 0, 2018, N'Joggers', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1241', N'Áo Sweater Nu', 1, 200, N'images/Top/Sweater/sweater5.png', N'Dior', 0, 2022, N'Sweater', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1242', N'Áo Polo Nam', 1, 400, N'images/Top/Polo/polo1.png', N'Hermes', 1, 2022, N'Polo', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1243', N'Quần Kaki Nu', 2, 700, N'images/Bot/Kaki/kaki1.jpg', N'GUCCI', 0, 2019, N'Kaki', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1244', N'Quần Baggy Nam', 2, 150, N'images/Bot/Baggy/Baggy3.png', N'Chanel', 1, 2022, N'Baggy', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1245', N'Áo TankTop Nam', 1, 100, N'images/Top/TankTop/tanktop3.jpg', N'UNIQLO', 1, 2019, N'TankTop', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1246', N'Áo TankTop Nam', 1, 150, N'images/Top/TankTop/tanktop2.png', N'Cartier', 1, 2018, N'TankTop', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1247', N'Áo Blazer Nu', 1, 750, N'images/Top/Blazer/blazer5.png', N'H&M', 0, 2021, N'Blazer', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1248', N'Áo TankTop Nu', 1, 250, N'images/Top/TankTop/tanktop1.jpg', N'Nike', 0, 2022, N'TankTop', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1249', N'Áo Blazer Nam', 1, 300, N'images/Top/Blazer/blazer5.png', N'Louis Vuitton', 1, 2022, N'Blazer', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'125', N'Áo Jacket Nu', 1, 700, N'images/Top/Jacket/jacket4.png', N'ZARA', 0, 2021, N'Jacket', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1250', N'Áo Blazer Nu', 1, 250, N'images/Top/Blazer/blazer5.png', N'Louis Vuitton', 0, 2021, N'Blazer', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1251', N'Áo Blazer Nu', 1, 900, N'images/Top/Blazer/blazer5.png', N'ZARA', 0, 2021, N'Blazer', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1252', N'Áo Polo Nu', 1, 450, N'images/Top/Polo/polo4.png', N'H&M', 0, 2019, N'Polo', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1253', N'Quần Jeans Nu', 2, 700, N'images/Bot/Jeans/Jeans1.png', N'UNIQLO', 0, 2018, N'Jeans', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1254', N'Áo TankTop Nu', 1, 350, N'images/Top/TankTop/tanktop1.jpg', N'Cartier', 0, 2021, N'TankTop', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1255', N'Áo Hoodie Nu', 1, 150, N'images/Top/Hoodie/hoodie4.png', N'Nike', 0, 2021, N'Hoodie', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1256', N'Áo Tee Nam', 1, 700, N'images/Top/Tee/tee5.png', N'Louis Vuitton', 1, 2020, N'Tee', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1257', N'Quần Kaki Nu', 2, 600, N'images/Bot/Kaki/kaki3.jpeg', N'Adidas', 0, 2020, N'Kaki', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1258', N'Áo Croptop Nu', 1, 250, N'images/Top/Croptop/croptop4.png', N'Dior', 0, 2019, N'Croptop', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1259', N'Quần Joggers Nam', 2, 850, N'images/Bot/Joggers/Joggers2.png', N'Hermes', 1, 2018, N'Joggers', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'126', N'Áo Jacket Nu', 1, 350, N'images/Top/Jacket/jacket2.png', N'Dior', 0, 2018, N'Jacket', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1260', N'Quần Cargo Nu', 2, 350, N'images/Bot/Cargo/Cargo1.png', N'Dior', 0, 2020, N'Cargo', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1261', N'Quần Kaki Nu', 2, 650, N'images/Bot/Kaki/kaki1.jpg', N'ZARA', 0, 2020, N'Kaki', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1262', N'Quần Joggers Nam', 2, 200, N'images/Bot/Joggers/Joggers3.png', N'Hermes', 1, 2022, N'Joggers', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1263', N'Quần Baggy Nu', 2, 800, N'images/Bot/Baggy/Baggy3.png', N'UNIQLO', 0, 2019, N'Baggy', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1264', N'Áo Hoodie Nam', 1, 750, N'images/Top/Hoodie/hoodie4.png', N'Adidas', 1, 2021, N'Hoodie', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1265', N'Áo Tee Nam', 1, 850, N'images/Top/Tee/tee2.png', N'Chanel', 1, 2018, N'Tee', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1266', N'Áo Hoodie Nam', 1, 850, N'images/Top/Hoodie/hoodie3.png', N'Nike', 1, 2020, N'Hoodie', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1267', N'Quần Kaki Nu', 2, 1000, N'images/Bot/Kaki/kaki4.png', N'ZARA', 0, 2022, N'Kaki', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1268', N'Quần Jeans Nu', 2, 150, N'images/Bot/Jeans/Jean2.jpg', N'Dior', 0, 2020, N'Jeans', 2, N'Kaki')
GO
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1269', N'Áo Sweater Nu', 1, 1000, N'images/Top/Sweater/sweater5.png', N'Adidas', 0, 2021, N'Sweater', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'127', N'Quần Jeans Nam', 2, 600, N'images/Bot/Jeans/Jeans4.png', N'Adidas', 1, 2019, N'Jeans', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1270', N'Áo Croptop Nu', 1, 900, N'images/Top/Croptop/croptop3.png', N'GUCCI', 0, 2021, N'Croptop', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1271', N'Quần Joggers Nu', 2, 150, N'images/Bot/Joggers/Joggers3.png', N'Dior', 0, 2020, N'Joggers', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1272', N'Quần Short Nam', 2, 200, N'images/Bot/Short/short3.png', N'Louis Vuitton', 1, 2019, N'Short', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1273', N'Áo Polo Nam', 1, 350, N'images/Top/Polo/polo1.png', N'Hermes', 1, 2022, N'Polo', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1274', N'Áo Blazer Nam', 1, 250, N'images/Top/Blazer/blazer2.jpg', N'Nike', 1, 2019, N'Blazer', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1275', N'Áo Hoodie Nam', 1, 450, N'images/Top/Hoodie/hoodie3.png', N'Hermes', 1, 2020, N'Hoodie', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1276', N'Quần Baggy Nam', 2, 800, N'images/Bot/Baggy/Baggy2.png', N'Cartier', 1, 2022, N'Baggy', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1277', N'Quần Legging Nu', 2, 400, N'images/Bot/Legging/legging1.jpg', N'Louis Vuitton', 0, 2018, N'Legging', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1278', N'Áo Tee Nam', 1, 400, N'images/Top/Tee/tee1.png', N'Nike', 1, 2018, N'Tee', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1279', N'Áo Hoodie Nam', 1, 950, N'images/Top/Hoodie/hoodie4.png', N'UNIQLO', 1, 2020, N'Hoodie', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'128', N'Áo Blazer Nam', 1, 550, N'images/Top/Blazer/blazer1.png', N'Nike', 1, 2019, N'Blazer', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1280', N'Quần Cargo Nu', 2, 1000, N'images/Bot/Cargo/Cargo1.png', N'ZARA', 0, 2018, N'Cargo', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1281', N'Áo Blazer Nam', 1, 700, N'images/Top/Blazer/blazer4.png', N'UNIQLO', 1, 2018, N'Blazer', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1282', N'Quần Cargo Nam', 2, 200, N'images/Bot/Cargo/Cargo2.png', N'Louis Vuitton', 1, 2020, N'Cargo', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1283', N'Quần Baggy Nam', 2, 700, N'images/Bot/Baggy/Baggy3.png', N'Adidas', 1, 2019, N'Baggy', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1284', N'Quần Jeans Nu', 2, 600, N'images/Bot/Jeans/Jean2.jpg', N'UNIQLO', 0, 2018, N'Jeans', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1285', N'Áo Hoodie Nam', 1, 150, N'images/Top/Hoodie/hoodie4.png', N'UNIQLO', 1, 2020, N'Hoodie', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1286', N'Quần Joggers Nu', 2, 300, N'images/Bot/Joggers/Joggers2.png', N'ZARA', 0, 2021, N'Joggers', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1287', N'Quần Kaki Nu', 2, 150, N'images/Bot/Kaki/kaki1.jpg', N'Adidas', 0, 2022, N'Kaki', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1288', N'Áo Polo Nu', 1, 900, N'images/Top/Polo/polo2.png', N'Chanel', 0, 2021, N'Polo', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1289', N'Áo Blazer Nam', 1, 1000, N'images/Top/Blazer/blazer4.png', N'Adidas', 1, 2021, N'Blazer', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'129', N'Áo Tee Nu', 1, 300, N'images/Top/Tee/tee2.png', N'Chanel', 0, 2019, N'Tee', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1290', N'Quần Tee Pants Nu', 2, 900, N'images/Bot/Tee Pants/pants1.png', N'Nike', 0, 2022, N'Tee Pants', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1291', N'Áo Blazer Nu', 1, 300, N'images/Top/Blazer/blazer4.png', N'Hermes', 0, 2020, N'Blazer', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1292', N'Quần Legging Nu', 2, 100, N'images/Bot/Legging/legging3.jpg', N'UNIQLO', 0, 2021, N'Legging', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1293', N'Quần Baggy Nu', 2, 750, N'images/Bot/Baggy/Baggy3.png', N'Louis Vuitton', 0, 2020, N'Baggy', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1294', N'Áo Jacket Nu', 1, 1000, N'images/Top/Jacket/jacket2.png', N'Dior', 0, 2019, N'Jacket', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1295', N'Quần Joggers Nam', 2, 200, N'images/Bot/Joggers/Joggers3.png', N'Dior', 1, 2021, N'Joggers', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1296', N'Quần Short Nu', 2, 900, N'images/Bot/Short/short1.png', N'Dior', 0, 2021, N'Short', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1297', N'Áo Tee Nu', 1, 250, N'images/Top/Tee/tee3.png', N'UNIQLO', 0, 2019, N'Tee', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1298', N'Áo Tee Nu', 1, 650, N'images/Top/Tee/tee2.png', N'GUCCI', 0, 2018, N'Tee', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1299', N'Quần Cargo Nam', 2, 1000, N'images/Bot/Cargo/Cargo4.jpg', N'Adidas', 1, 2022, N'Cargo', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'13', N'Áo Jacket Nam', 1, 100, N'images/Top/Jacket/jacket1.png', N'Louis Vuitton', 1, 2019, N'Jacket', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'130', N'Quần Joggers Nam', 2, 350, N'images/Bot/Joggers/Joggers2.png', N'UNIQLO', 1, 2022, N'Joggers', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1300', N'Quần Baggy Nu', 2, 1000, N'images/Bot/Baggy/Baggy1.png', N'Adidas', 0, 2021, N'Baggy', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1301', N'Quần Joggers Nu', 2, 650, N'images/Bot/Joggers/Joggers1.png', N'Dior', 0, 2018, N'Joggers', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1302', N'Quần Baggy Nam', 2, 450, N'images/Bot/Baggy/Baggy1.png', N'ZARA', 1, 2021, N'Baggy', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1303', N'Áo TankTop Nam', 1, 900, N'images/Top/TankTop/tanktop1.jpg', N'ZARA', 1, 2020, N'TankTop', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1304', N'Quần Cargo Nam', 2, 800, N'images/Bot/Cargo/Cargo3.png', N'GUCCI', 1, 2019, N'Cargo', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1305', N'Áo Polo Nam', 1, 750, N'images/Top/Polo/polo3.png', N'ZARA', 1, 2018, N'Polo', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1306', N'Quần Baggy Nu', 2, 400, N'images/Bot/Baggy/Baggy3.png', N'UNIQLO', 0, 2020, N'Baggy', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1307', N'Áo Croptop Nam', 1, 850, N'images/Top/Croptop/croptop4.png', N'Adidas', 1, 2021, N'Croptop', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1308', N'Áo Tee Nam', 1, 550, N'images/Top/Tee/tee3.png', N'Cartier', 1, 2021, N'Tee', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1309', N'Áo Sweater Nu', 1, 850, N'images/Top/Sweater/sweater4.png', N'Hermes', 0, 2018, N'Sweater', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'131', N'Quần Tee Pants Nu', 2, 450, N'images/Bot/Tee Pants/pants3.png', N'Hermes', 0, 2022, N'Tee Pants', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1310', N'Quần Tee Pants Nu', 2, 500, N'images/Bot/Tee Pants/pants3.png', N'H&M', 0, 2021, N'Tee Pants', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1311', N'Quần Jeans Nu', 2, 950, N'images/Bot/Jeans/Jeans1.png', N'ZARA', 0, 2022, N'Jeans', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1312', N'Áo Hoodie Nam', 1, 250, N'images/Top/Hoodie/hoodie1.png', N'Adidas', 1, 2018, N'Hoodie', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1313', N'Quần Tee Pants Nu', 2, 400, N'images/Bot/Tee Pants/pants3.png', N'ZARA', 0, 2021, N'Tee Pants', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1314', N'Quần Joggers Nu', 2, 350, N'images/Bot/Joggers/Joggers1.png', N'H&M', 0, 2018, N'Joggers', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1315', N'Áo Polo Nu', 1, 100, N'images/Top/Polo/polo3.png', N'ZARA', 0, 2018, N'Polo', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1316', N'Quần Baggy Nam', 2, 500, N'images/Bot/Baggy/Baggy1.png', N'Dior', 1, 2022, N'Baggy', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1317', N'Quần Legging Nu', 2, 500, N'images/Bot/Legging/legging2.jpg', N'Chanel', 0, 2019, N'Legging', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1318', N'Áo Jacket Nam', 1, 750, N'images/Top/Jacket/jacket1.png', N'Louis Vuitton', 1, 2018, N'Jacket', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1319', N'Áo Croptop Nu', 1, 900, N'images/Top/Croptop/croptop4.png', N'Louis Vuitton', 0, 2022, N'Croptop', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'132', N'Áo Croptop Nu', 1, 400, N'images/Top/Croptop/croptop1.png', N'Dior', 0, 2022, N'Croptop', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1320', N'Áo Jacket Nam', 1, 600, N'images/Top/Jacket/jacket2.png', N'ZARA', 1, 2020, N'Jacket', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1321', N'Áo Hoodie Nam', 1, 100, N'images/Top/Hoodie/hoodie3.png', N'H&M', 1, 2019, N'Hoodie', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1322', N'Quần Tee Pants Nam', 2, 950, N'images/Bot/Tee Pants/pants2.png', N'Nike', 1, 2018, N'Tee Pants', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1323', N'Quần Legging Nam', 2, 850, N'images/Bot/Legging/legging2.jpg', N'Chanel', 1, 2022, N'Legging', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1324', N'Quần Tee Pants Nam', 2, 100, N'images/Bot/Tee Pants/pants2.png', N'H&M', 1, 2020, N'Tee Pants', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1325', N'Áo Hoodie Nam', 1, 850, N'images/Top/Hoodie/hoodie1.png', N'GUCCI', 1, 2022, N'Hoodie', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1326', N'Quần Baggy Nam', 2, 1000, N'images/Bot/Baggy/Baggy1.png', N'ZARA', 1, 2021, N'Baggy', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1327', N'Áo Sweater Nu', 1, 750, N'images/Top/Sweater/sweater5.png', N'Adidas', 0, 2020, N'Sweater', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1328', N'Quần Kaki Nu', 2, 200, N'images/Bot/Kaki/kaki1.jpg', N'Nike', 0, 2018, N'Kaki', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1329', N'Áo Hoodie Nam', 1, 650, N'images/Top/Hoodie/hoodie3.png', N'Dior', 1, 2018, N'Hoodie', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'133', N'Quần Legging Nu', 2, 550, N'images/Bot/Legging/legging3.jpg', N'Cartier', 0, 2022, N'Legging', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1330', N'Quần Legging Nu', 2, 200, N'images/Bot/Legging/legging3.jpg', N'UNIQLO', 0, 2019, N'Legging', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1331', N'Áo Tee Nam', 1, 100, N'images/Top/Tee/tee3.png', N'GUCCI', 1, 2020, N'Tee', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1332', N'Quần Short Nu', 2, 500, N'images/Bot/Short/short2.png', N'Chanel', 0, 2018, N'Short', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1333', N'Quần Tee Pants Nu', 2, 450, N'images/Bot/Tee Pants/pants1.png', N'Adidas', 0, 2022, N'Tee Pants', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1334', N'Áo Polo Nu', 1, 900, N'images/Top/Polo/polo4.png', N'Chanel', 0, 2019, N'Polo', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1335', N'Áo Polo Nu', 1, 750, N'images/Top/Polo/polo4.png', N'UNIQLO', 0, 2018, N'Polo', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1336', N'Quần Legging Nu', 2, 900, N'images/Bot/Legging/legging3.jpg', N'Hermes', 0, 2020, N'Legging', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1337', N'Quần Baggy Nam', 2, 650, N'images/Bot/Baggy/Baggy1.png', N'Cartier', 1, 2019, N'Baggy', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1338', N'Áo Polo Nu', 1, 550, N'images/Top/Polo/polo4.png', N'H&M', 0, 2022, N'Polo', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1339', N'Áo TankTop Nam', 1, 750, N'images/Top/TankTop/tanktop3.jpg', N'Hermes', 1, 2022, N'TankTop', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'134', N'Quần Baggy Nu', 2, 700, N'images/Bot/Baggy/Baggy1.png', N'Nike', 0, 2018, N'Baggy', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1340', N'Áo Croptop Nu', 1, 650, N'images/Top/Croptop/croptop4.png', N'H&M', 0, 2020, N'Croptop', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1341', N'Áo TankTop Nu', 1, 800, N'images/Top/TankTop/tanktop2.png', N'Hermes', 0, 2020, N'TankTop', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1342', N'Quần Joggers Nu', 2, 750, N'images/Bot/Joggers/Joggers3.png', N'Adidas', 0, 2018, N'Joggers', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1343', N'Áo Tee Nu', 1, 800, N'images/Top/Tee/tee5.png', N'Cartier', 0, 2020, N'Tee', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1344', N'Quần Legging Nam', 2, 400, N'images/Bot/Legging/legging3.jpg', N'Cartier', 1, 2018, N'Legging', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1345', N'Quần Joggers Nam', 2, 500, N'images/Bot/Joggers/Joggers1.png', N'ZARA', 1, 2022, N'Joggers', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1346', N'Quần Cargo Nu', 2, 200, N'images/Bot/Cargo/Cargo3.png', N'Adidas', 0, 2018, N'Cargo', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1347', N'Quần Jeans Nam', 2, 200, N'images/Bot/Jeans/Jeans3.png', N'Louis Vuitton', 1, 2021, N'Jeans', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1348', N'Áo Tee Nu', 1, 350, N'images/Top/Tee/tee5.png', N'Cartier', 0, 2019, N'Tee', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1349', N'Áo Jacket Nam', 1, 750, N'images/Top/Jacket/jacket5.png', N'Chanel', 1, 2022, N'Jacket', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'135', N'Áo Hoodie Nu', 1, 450, N'images/Top/Hoodie/hoodie1.png', N'Nike', 0, 2018, N'Hoodie', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1350', N'Quần Short Nam', 2, 900, N'images/Bot/Short/short1.png', N'ZARA', 1, 2019, N'Short', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1351', N'Áo Hoodie Nam', 1, 100, N'images/Top/Hoodie/hoodie4.png', N'Nike', 1, 2022, N'Hoodie', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1352', N'Quần Short Nu', 2, 650, N'images/Bot/Short/short3.png', N'Louis Vuitton', 0, 2018, N'Short', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1353', N'Quần Baggy Nam', 2, 850, N'images/Bot/Baggy/Baggy1.png', N'Louis Vuitton', 1, 2022, N'Baggy', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1354', N'Áo Blazer Nam', 1, 550, N'images/Top/Blazer/blazer3.jpg', N'Nike', 1, 2022, N'Blazer', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1355', N'Áo Blazer Nam', 1, 650, N'images/Top/Blazer/blazer3.jpg', N'Adidas', 1, 2021, N'Blazer', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1356', N'Áo Tee Nam', 1, 150, N'images/Top/Tee/tee3.png', N'Chanel', 1, 2022, N'Tee', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1357', N'Áo Jacket Nam', 1, 450, N'images/Top/Jacket/jacket4.png', N'UNIQLO', 1, 2018, N'Jacket', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1358', N'Áo Tee Nu', 1, 400, N'images/Top/Tee/tee2.png', N'Louis Vuitton', 0, 2019, N'Tee', 2, N'Linen')
GO
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1359', N'Quần Cargo Nam', 2, 650, N'images/Bot/Cargo/Cargo2.png', N'Louis Vuitton', 1, 2021, N'Cargo', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'136', N'Quần Kaki Nam', 2, 950, N'images/Bot/Kaki/kaki1.jpg', N'Adidas', 1, 2018, N'Kaki', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1360', N'Áo Jacket Nam', 1, 150, N'images/Top/Jacket/jacket3.png', N'Cartier', 1, 2019, N'Jacket', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1361', N'Áo TankTop Nam', 1, 150, N'images/Top/TankTop/tanktop3.jpg', N'Cartier', 1, 2019, N'TankTop', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1362', N'Áo Blazer Nu', 1, 150, N'images/Top/Blazer/blazer1.png', N'Louis Vuitton', 0, 2018, N'Blazer', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1363', N'Áo TankTop Nam', 1, 100, N'images/Top/TankTop/tanktop1.jpg', N'Louis Vuitton', 1, 2019, N'TankTop', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1364', N'Áo Polo Nam', 1, 750, N'images/Top/Polo/polo1.png', N'Cartier', 1, 2021, N'Polo', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1365', N'Quần Kaki Nam', 2, 400, N'images/Bot/Kaki/kaki1.jpg', N'GUCCI', 1, 2020, N'Kaki', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1366', N'Áo Tee Nam', 1, 150, N'images/Top/Tee/tee2.png', N'Chanel', 1, 2019, N'Tee', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1367', N'Áo Sweater Nam', 1, 900, N'images/Top/Sweater/sweater4.png', N'Cartier', 1, 2020, N'Sweater', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1368', N'Quần Baggy Nam', 2, 850, N'images/Bot/Baggy/Baggy2.png', N'ZARA', 1, 2018, N'Baggy', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1369', N'Quần Jeans Nam', 2, 950, N'images/Bot/Jeans/Jeans3.png', N'Cartier', 1, 2021, N'Jeans', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'137', N'Áo Sweater Nu', 1, 200, N'images/Top/Sweater/sweater2.png', N'Dior', 0, 2020, N'Sweater', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1370', N'Quần Jeans Nam', 2, 850, N'images/Bot/Jeans/Jeans1.png', N'ZARA', 1, 2018, N'Jeans', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1371', N'Quần Jeans Nam', 2, 150, N'images/Bot/Jeans/Jean2.jpg', N'Cartier', 1, 2021, N'Jeans', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1372', N'Áo Sweater Nam', 1, 350, N'images/Top/Sweater/sweater3.png', N'Adidas', 1, 2021, N'Sweater', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1373', N'Quần Legging Nam', 2, 750, N'images/Bot/Legging/legging2.jpg', N'Hermes', 1, 2021, N'Legging', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1374', N'Áo TankTop Nu', 1, 800, N'images/Top/TankTop/tanktop1.jpg', N'UNIQLO', 0, 2018, N'TankTop', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1375', N'Áo Tee Nu', 1, 650, N'images/Top/Tee/tee2.png', N'GUCCI', 0, 2021, N'Tee', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1376', N'Quần Baggy Nam', 2, 200, N'images/Bot/Baggy/Baggy1.png', N'GUCCI', 1, 2019, N'Baggy', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1377', N'Quần Legging Nu', 2, 850, N'images/Bot/Legging/legging1.jpg', N'GUCCI', 0, 2021, N'Legging', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1378', N'Quần Joggers Nu', 2, 900, N'images/Bot/Joggers/Joggers2.png', N'Cartier', 0, 2021, N'Joggers', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1379', N'Áo Hoodie Nam', 1, 850, N'images/Top/Hoodie/hoodie2.png', N'Hermes', 1, 2020, N'Hoodie', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'138', N'Áo Blazer Nu', 1, 950, N'images/Top/Blazer/blazer2.jpg', N'Dior', 0, 2020, N'Blazer', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1380', N'Áo Blazer Nu', 1, 250, N'images/Top/Blazer/blazer1.png', N'GUCCI', 0, 2020, N'Blazer', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1381', N'Quần Joggers Nam', 2, 150, N'images/Bot/Joggers/Joggers1.png', N'Chanel', 1, 2019, N'Joggers', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1382', N'Áo Blazer Nam', 1, 450, N'images/Top/Blazer/blazer1.png', N'Cartier', 1, 2022, N'Blazer', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1383', N'Quần Legging Nu', 2, 350, N'images/Bot/Legging/legging2.jpg', N'Chanel', 0, 2021, N'Legging', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1384', N'Quần Baggy Nam', 2, 800, N'images/Bot/Baggy/Baggy1.png', N'H&M', 1, 2018, N'Baggy', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1385', N'Quần Baggy Nu', 2, 950, N'images/Bot/Baggy/Baggy3.png', N'ZARA', 0, 2021, N'Baggy', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1386', N'Áo Blazer Nam', 1, 950, N'images/Top/Blazer/blazer1.png', N'UNIQLO', 1, 2018, N'Blazer', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1387', N'Áo Croptop Nu', 1, 350, N'images/Top/Croptop/croptop1.png', N'Adidas', 0, 2018, N'Croptop', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1388', N'Áo Blazer Nam', 1, 850, N'images/Top/Blazer/blazer2.jpg', N'ZARA', 1, 2022, N'Blazer', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1389', N'Áo Hoodie Nu', 1, 950, N'images/Top/Hoodie/hoodie2.png', N'Hermes', 0, 2021, N'Hoodie', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'139', N'Áo Hoodie Nam', 1, 450, N'images/Top/Hoodie/hoodie4.png', N'Hermes', 1, 2021, N'Hoodie', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1390', N'Quần Baggy Nu', 2, 300, N'images/Bot/Baggy/Baggy2.png', N'H&M', 0, 2021, N'Baggy', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1391', N'Quần Tee Pants Nam', 2, 400, N'images/Bot/Tee Pants/pants1.png', N'Nike', 1, 2019, N'Tee Pants', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1392', N'Áo Jacket Nam', 1, 800, N'images/Top/Jacket/jacket1.png', N'Nike', 1, 2021, N'Jacket', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1393', N'Áo Hoodie Nu', 1, 200, N'images/Top/Hoodie/hoodie2.png', N'Cartier', 0, 2021, N'Hoodie', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1394', N'Quần Legging Nu', 2, 1000, N'images/Bot/Legging/legging3.jpg', N'Louis Vuitton', 0, 2020, N'Legging', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1395', N'Áo Jacket Nam', 1, 300, N'images/Top/Jacket/jacket2.png', N'UNIQLO', 1, 2021, N'Jacket', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1396', N'Quần Legging Nu', 2, 850, N'images/Bot/Legging/legging1.jpg', N'Adidas', 0, 2022, N'Legging', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1397', N'Quần Kaki Nam', 2, 500, N'images/Bot/Kaki/kaki3.jpeg', N'UNIQLO', 1, 2021, N'Kaki', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1398', N'Quần Cargo Nam', 2, 700, N'images/Bot/Cargo/Cargo2.png', N'GUCCI', 1, 2020, N'Cargo', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1399', N'Quần Jeans Nu', 2, 300, N'images/Bot/Jeans/Jean2.jpg', N'Adidas', 0, 2022, N'Jeans', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'14', N'Áo Hoodie Nam', 1, 600, N'images/Top/Hoodie/hoodie4.png', N'H&M', 1, 2021, N'Hoodie', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'140', N'Quần Tee Pants Nam', 2, 500, N'images/Bot/Tee Pants/pants1.png', N'Adidas', 1, 2018, N'Tee Pants', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1400', N'Quần Jeans Nam', 2, 900, N'images/Bot/Jeans/Jean2.jpg', N'Louis Vuitton', 1, 2022, N'Jeans', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1401', N'Quần Legging Nu', 2, 1000, N'images/Bot/Legging/legging3.jpg', N'H&M', 0, 2020, N'Legging', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1402', N'Quần Legging Nam', 2, 400, N'images/Bot/Legging/legging2.jpg', N'Adidas', 1, 2022, N'Legging', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1403', N'Quần Legging Nu', 2, 950, N'images/Bot/Legging/legging1.jpg', N'Nike', 0, 2019, N'Legging', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1404', N'Áo Hoodie Nam', 1, 300, N'images/Top/Hoodie/hoodie4.png', N'Chanel', 1, 2020, N'Hoodie', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1405', N'Áo Jacket Nu', 1, 250, N'images/Top/Jacket/jacket3.png', N'Chanel', 0, 2019, N'Jacket', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1406', N'Áo Polo Nam', 1, 750, N'images/Top/Polo/polo1.png', N'Adidas', 1, 2021, N'Polo', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1407', N'Quần Kaki Nam', 2, 400, N'images/Bot/Kaki/kaki4.png', N'Cartier', 1, 2021, N'Kaki', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1408', N'Quần Tee Pants Nam', 2, 1000, N'images/Bot/Tee Pants/pants1.png', N'Dior', 1, 2018, N'Tee Pants', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1409', N'Quần Legging Nu', 2, 750, N'images/Bot/Legging/legging3.jpg', N'ZARA', 0, 2020, N'Legging', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'141', N'Áo Polo Nu', 1, 100, N'images/Top/Polo/polo1.png', N'Cartier', 0, 2021, N'Polo', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1410', N'Áo Sweater Nu', 1, 1000, N'images/Top/Sweater/sweater1.png', N'Chanel', 0, 2018, N'Sweater', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1411', N'Quần Legging Nu', 2, 300, N'images/Bot/Legging/legging3.jpg', N'Chanel', 0, 2020, N'Legging', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1412', N'Quần Joggers Nu', 2, 600, N'images/Bot/Joggers/Joggers3.png', N'Cartier', 0, 2020, N'Joggers', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1413', N'Quần Jeans Nu', 2, 1000, N'images/Bot/Jeans/Jeans3.png', N'Nike', 0, 2018, N'Jeans', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1414', N'Áo Croptop Nu', 1, 550, N'images/Top/Croptop/croptop1.png', N'Cartier', 0, 2019, N'Croptop', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1415', N'Áo Blazer Nam', 1, 600, N'images/Top/Blazer/blazer5.png', N'Chanel', 1, 2021, N'Blazer', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1416', N'Áo Croptop Nu', 1, 350, N'images/Top/Croptop/croptop4.png', N'Nike', 0, 2022, N'Croptop', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1417', N'Quần Jeans Nam', 2, 250, N'images/Bot/Jeans/Jeans4.png', N'H&M', 1, 2020, N'Jeans', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1418', N'Áo Blazer Nu', 1, 250, N'images/Top/Blazer/blazer4.png', N'Cartier', 0, 2021, N'Blazer', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1419', N'Quần Tee Pants Nu', 2, 450, N'images/Bot/Tee Pants/pants1.png', N'H&M', 0, 2018, N'Tee Pants', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'142', N'Quần Cargo Nu', 2, 350, N'images/Bot/Cargo/Cargo3.png', N'Nike', 0, 2022, N'Cargo', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1420', N'Áo Sweater Nam', 1, 800, N'images/Top/Sweater/sweater2.png', N'H&M', 1, 2018, N'Sweater', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1421', N'Áo Tee Nam', 1, 650, N'images/Top/Tee/tee1.png', N'UNIQLO', 1, 2018, N'Tee', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1422', N'Quần Legging Nam', 2, 750, N'images/Bot/Legging/legging2.jpg', N'UNIQLO', 1, 2019, N'Legging', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1423', N'Quần Cargo Nu', 2, 500, N'images/Bot/Cargo/Cargo1.png', N'Hermes', 0, 2020, N'Cargo', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1424', N'Áo Blazer Nu', 1, 450, N'images/Top/Blazer/blazer3.jpg', N'ZARA', 0, 2021, N'Blazer', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1425', N'Quần Legging Nu', 2, 600, N'images/Bot/Legging/legging1.jpg', N'GUCCI', 0, 2022, N'Legging', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1426', N'Áo Jacket Nam', 1, 450, N'images/Top/Jacket/jacket3.png', N'Nike', 1, 2019, N'Jacket', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1427', N'Áo TankTop Nu', 1, 400, N'images/Top/TankTop/tanktop1.jpg', N'GUCCI', 0, 2020, N'TankTop', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1428', N'Áo TankTop Nu', 1, 350, N'images/Top/TankTop/tanktop1.jpg', N'Cartier', 0, 2019, N'TankTop', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1429', N'Quần Joggers Nu', 2, 250, N'images/Bot/Joggers/Joggers1.png', N'Chanel', 0, 2021, N'Joggers', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'143', N'Áo Tee Nam', 1, 950, N'images/Top/Tee/tee1.png', N'Cartier', 1, 2019, N'Tee', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1430', N'Áo Polo Nam', 1, 450, N'images/Top/Polo/polo2.png', N'GUCCI', 1, 2021, N'Polo', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1431', N'Áo Blazer Nam', 1, 200, N'images/Top/Blazer/blazer1.png', N'Hermes', 1, 2018, N'Blazer', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1432', N'Áo Sweater Nu', 1, 500, N'images/Top/Sweater/sweater5.png', N'Adidas', 0, 2021, N'Sweater', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1433', N'Áo Tee Nu', 1, 250, N'images/Top/Tee/tee1.png', N'Adidas', 0, 2019, N'Tee', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1434', N'Quần Kaki Nu', 2, 600, N'images/Bot/Kaki/kaki1.jpg', N'Louis Vuitton', 0, 2020, N'Kaki', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1435', N'Áo Blazer Nu', 1, 550, N'images/Top/Blazer/blazer2.jpg', N'GUCCI', 0, 2020, N'Blazer', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1436', N'Quần Baggy Nu', 2, 1000, N'images/Bot/Baggy/Baggy1.png', N'Louis Vuitton', 0, 2019, N'Baggy', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1437', N'Quần Joggers Nam', 2, 900, N'images/Bot/Joggers/Joggers3.png', N'ZARA', 1, 2022, N'Joggers', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1438', N'Áo Blazer Nu', 1, 450, N'images/Top/Blazer/blazer5.png', N'UNIQLO', 0, 2020, N'Blazer', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1439', N'Áo Jacket Nu', 1, 650, N'images/Top/Jacket/jacket2.png', N'Adidas', 0, 2020, N'Jacket', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'144', N'Quần Baggy Nu', 2, 700, N'images/Bot/Baggy/Baggy1.png', N'H&M', 0, 2022, N'Baggy', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1440', N'Quần Jeans Nu', 2, 900, N'images/Bot/Jeans/Jeans3.png', N'Dior', 0, 2018, N'Jeans', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1441', N'Áo Croptop Nu', 1, 250, N'images/Top/Croptop/croptop1.png', N'Adidas', 0, 2021, N'Croptop', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1442', N'Áo Croptop Nam', 1, 100, N'images/Top/Croptop/croptop1.png', N'Adidas', 1, 2021, N'Croptop', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1443', N'Áo TankTop Nam', 1, 1000, N'images/Top/TankTop/tanktop3.jpg', N'Cartier', 1, 2018, N'TankTop', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1444', N'Quần Cargo Nam', 2, 600, N'images/Bot/Cargo/Cargo1.png', N'Cartier', 1, 2020, N'Cargo', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1445', N'Áo Polo Nu', 1, 700, N'images/Top/Polo/polo1.png', N'Chanel', 0, 2018, N'Polo', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1446', N'Quần Kaki Nu', 2, 900, N'images/Bot/Kaki/kaki3.jpeg', N'Adidas', 0, 2021, N'Kaki', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1447', N'Quần Joggers Nam', 2, 450, N'images/Bot/Joggers/Joggers2.png', N'Dior', 1, 2018, N'Joggers', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1448', N'Áo Jacket Nu', 1, 850, N'images/Top/Jacket/jacket2.png', N'GUCCI', 0, 2018, N'Jacket', 2, N'Kate')
GO
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1449', N'Quần Joggers Nu', 2, 150, N'images/Bot/Joggers/Joggers3.png', N'Adidas', 0, 2022, N'Joggers', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'145', N'Quần Kaki Nam', 2, 800, N'images/Bot/Kaki/kaki2.png', N'Nike', 1, 2021, N'Kaki', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1450', N'Áo Jacket Nu', 1, 300, N'images/Top/Jacket/jacket2.png', N'Louis Vuitton', 0, 2021, N'Jacket', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1451', N'Áo Croptop Nam', 1, 100, N'images/Top/Croptop/croptop1.png', N'Adidas', 1, 2020, N'Croptop', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1452', N'Áo Blazer Nu', 1, 350, N'images/Top/Blazer/blazer3.jpg', N'Cartier', 0, 2022, N'Blazer', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1453', N'Áo Croptop Nu', 1, 400, N'images/Top/Croptop/croptop2.jpg', N'Hermes', 0, 2018, N'Croptop', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1454', N'Quần Joggers Nam', 2, 600, N'images/Bot/Joggers/Joggers1.png', N'Cartier', 1, 2018, N'Joggers', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1455', N'Quần Tee Pants Nu', 2, 500, N'images/Bot/Tee Pants/pants2.png', N'GUCCI', 0, 2020, N'Tee Pants', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1456', N'Quần Legging Nam', 2, 850, N'images/Bot/Legging/legging2.jpg', N'H&M', 1, 2022, N'Legging', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1457', N'Quần Short Nam', 2, 500, N'images/Bot/Short/short3.png', N'GUCCI', 1, 2022, N'Short', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1458', N'Quần Jeans Nam', 2, 600, N'images/Bot/Jeans/Jean2.jpg', N'Dior', 1, 2019, N'Jeans', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1459', N'Quần Baggy Nu', 2, 100, N'images/Bot/Baggy/Baggy2.png', N'Dior', 0, 2020, N'Baggy', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'146', N'Quần Joggers Nam', 2, 650, N'images/Bot/Joggers/Joggers2.png', N'Dior', 1, 2019, N'Joggers', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1460', N'Quần Baggy Nu', 2, 300, N'images/Bot/Baggy/Baggy2.png', N'UNIQLO', 0, 2021, N'Baggy', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1461', N'Áo Tee Nam', 1, 850, N'images/Top/Tee/tee5.png', N'Chanel', 1, 2019, N'Tee', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1462', N'Quần Short Nu', 2, 850, N'images/Bot/Short/short2.png', N'UNIQLO', 0, 2020, N'Short', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1463', N'Quần Cargo Nam', 2, 900, N'images/Bot/Cargo/Cargo4.jpg', N'Chanel', 1, 2022, N'Cargo', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1464', N'Áo Tee Nam', 1, 850, N'images/Top/Tee/tee1.png', N'Chanel', 1, 2020, N'Tee', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1465', N'Quần Tee Pants Nam', 2, 400, N'images/Bot/Tee Pants/pants3.png', N'ZARA', 1, 2020, N'Tee Pants', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1466', N'Áo TankTop Nu', 1, 650, N'images/Top/TankTop/tanktop3.jpg', N'H&M', 0, 2022, N'TankTop', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1467', N'Áo Croptop Nam', 1, 200, N'images/Top/Croptop/croptop2.jpg', N'H&M', 1, 2019, N'Croptop', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1468', N'Áo Blazer Nam', 1, 250, N'images/Top/Blazer/blazer3.jpg', N'GUCCI', 1, 2019, N'Blazer', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1469', N'Quần Joggers Nu', 2, 300, N'images/Bot/Joggers/Joggers3.png', N'Hermes', 0, 2018, N'Joggers', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'147', N'Quần Jeans Nam', 2, 700, N'images/Bot/Jeans/Jean2.jpg', N'Adidas', 1, 2022, N'Jeans', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1470', N'Quần Jeans Nam', 2, 500, N'images/Bot/Jeans/Jean2.jpg', N'Cartier', 1, 2020, N'Jeans', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1471', N'Quần Jeans Nu', 2, 850, N'images/Bot/Jeans/Jeans1.png', N'Adidas', 0, 2021, N'Jeans', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1472', N'Áo Croptop Nu', 1, 100, N'images/Top/Croptop/croptop2.jpg', N'Cartier', 0, 2021, N'Croptop', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1473', N'Quần Joggers Nu', 2, 300, N'images/Bot/Joggers/Joggers3.png', N'GUCCI', 0, 2018, N'Joggers', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1474', N'Áo Jacket Nu', 1, 450, N'images/Top/Jacket/jacket5.png', N'H&M', 0, 2021, N'Jacket', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1475', N'Áo Jacket Nam', 1, 600, N'images/Top/Jacket/jacket4.png', N'UNIQLO', 1, 2020, N'Jacket', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1476', N'Quần Cargo Nu', 2, 250, N'images/Bot/Cargo/Cargo4.jpg', N'Louis Vuitton', 0, 2019, N'Cargo', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1477', N'Quần Baggy Nam', 2, 650, N'images/Bot/Baggy/Baggy2.png', N'Cartier', 1, 2018, N'Baggy', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1478', N'Quần Cargo Nu', 2, 500, N'images/Bot/Cargo/Cargo2.png', N'Cartier', 0, 2020, N'Cargo', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1479', N'Quần Baggy Nam', 2, 150, N'images/Bot/Baggy/Baggy2.png', N'Louis Vuitton', 1, 2019, N'Baggy', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'148', N'Quần Cargo Nam', 2, 150, N'images/Bot/Cargo/Cargo4.jpg', N'Dior', 1, 2019, N'Cargo', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1480', N'Quần Baggy Nu', 2, 500, N'images/Bot/Baggy/Baggy1.png', N'Cartier', 0, 2019, N'Baggy', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1481', N'Áo Jacket Nu', 1, 800, N'images/Top/Jacket/jacket2.png', N'Cartier', 0, 2018, N'Jacket', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1482', N'Áo Jacket Nam', 1, 800, N'images/Top/Jacket/jacket5.png', N'Louis Vuitton', 1, 2020, N'Jacket', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1483', N'Quần Baggy Nam', 2, 500, N'images/Bot/Baggy/Baggy2.png', N'Dior', 1, 2021, N'Baggy', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1484', N'Áo Hoodie Nam', 1, 350, N'images/Top/Hoodie/hoodie4.png', N'Adidas', 1, 2021, N'Hoodie', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1485', N'Áo Sweater Nu', 1, 450, N'images/Top/Sweater/sweater4.png', N'UNIQLO', 0, 2022, N'Sweater', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1486', N'Quần Jeans Nam', 2, 350, N'images/Bot/Jeans/Jeans1.png', N'Chanel', 1, 2019, N'Jeans', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1487', N'Quần Kaki Nam', 2, 250, N'images/Bot/Kaki/kaki1.jpg', N'Louis Vuitton', 1, 2021, N'Kaki', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1488', N'Quần Short Nu', 2, 800, N'images/Bot/Short/short2.png', N'Nike', 0, 2021, N'Short', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1489', N'Quần Tee Pants Nu', 2, 750, N'images/Bot/Tee Pants/pants3.png', N'Chanel', 0, 2020, N'Tee Pants', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'149', N'Áo Blazer Nam', 1, 450, N'images/Top/Blazer/blazer3.jpg', N'Nike', 1, 2021, N'Blazer', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1490', N'Quần Cargo Nu', 2, 200, N'images/Bot/Cargo/Cargo1.png', N'Dior', 0, 2020, N'Cargo', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1491', N'Quần Cargo Nu', 2, 100, N'images/Bot/Cargo/Cargo2.png', N'Nike', 0, 2018, N'Cargo', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1492', N'Quần Short Nam', 2, 350, N'images/Bot/Short/short2.png', N'ZARA', 1, 2019, N'Short', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1493', N'Áo Croptop Nu', 1, 550, N'images/Top/Croptop/croptop1.png', N'H&M', 0, 2021, N'Croptop', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1494', N'Quần Legging Nu', 2, 300, N'images/Bot/Legging/legging2.jpg', N'ZARA', 0, 2021, N'Legging', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1495', N'Quần Joggers Nu', 2, 250, N'images/Bot/Joggers/Joggers2.png', N'ZARA', 0, 2022, N'Joggers', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1496', N'Quần Joggers Nam', 2, 600, N'images/Bot/Joggers/Joggers1.png', N'Dior', 1, 2018, N'Joggers', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1497', N'Áo Polo Nu', 1, 650, N'images/Top/Polo/polo4.png', N'Chanel', 0, 2021, N'Polo', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1498', N'Quần Kaki Nam', 2, 600, N'images/Bot/Kaki/kaki2.png', N'Chanel', 1, 2021, N'Kaki', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1499', N'Quần Joggers Nam', 2, 450, N'images/Bot/Joggers/Joggers1.png', N'UNIQLO', 1, 2020, N'Joggers', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'15', N'Áo Jacket Nu', 1, 900, N'images/Top/Jacket/jacket5.png', N'GUCCI', 0, 2018, N'Jacket', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'150', N'Áo Tee Nu', 1, 650, N'images/Top/Tee/tee4.png', N'Hermes', 0, 2019, N'Tee', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1500', N'Quần Tee Pants Nam', 2, 650, N'images/Bot/Tee Pants/pants1.png', N'ZARA', 1, 2019, N'Tee Pants', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1501', N'Áo Sweater Nu', 1, 650, N'images/Top/Sweater/sweater5.png', N'Cartier', 0, 2019, N'Sweater', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1502', N'Áo Tee Nam', 1, 300, N'images/Top/Tee/tee3.png', N'UNIQLO', 1, 2020, N'Tee', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1503', N'Quần Baggy Nam', 2, 350, N'images/Bot/Baggy/Baggy2.png', N'Louis Vuitton', 1, 2019, N'Baggy', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1504', N'Quần Tee Pants Nu', 2, 600, N'images/Bot/Tee Pants/pants1.png', N'H&M', 0, 2022, N'Tee Pants', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1505', N'Quần Legging Nu', 2, 650, N'images/Bot/Legging/legging3.jpg', N'Adidas', 0, 2022, N'Legging', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1506', N'Áo Tee Nu', 1, 450, N'images/Top/Tee/tee4.png', N'Hermes', 0, 2022, N'Tee', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1507', N'Áo Jacket Nam', 1, 700, N'images/Top/Jacket/jacket4.png', N'Hermes', 1, 2020, N'Jacket', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1508', N'Quần Jeans Nu', 2, 1000, N'images/Bot/Jeans/Jeans1.png', N'Louis Vuitton', 0, 2018, N'Jeans', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1509', N'Quần Jeans Nam', 2, 100, N'images/Bot/Jeans/Jeans1.png', N'Louis Vuitton', 1, 2019, N'Jeans', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'151', N'Quần Jeans Nu', 2, 750, N'images/Bot/Jeans/Jeans3.png', N'Chanel', 0, 2021, N'Jeans', 3, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1510', N'Áo Blazer Nu', 1, 250, N'images/Top/Blazer/blazer2.jpg', N'Cartier', 0, 2018, N'Blazer', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1511', N'Quần Legging Nam', 2, 300, N'images/Bot/Legging/legging1.jpg', N'Adidas', 1, 2019, N'Legging', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1512', N'Quần Short Nam', 2, 500, N'images/Bot/Short/short1.png', N'Nike', 1, 2020, N'Short', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1513', N'Áo TankTop Nam', 1, 650, N'images/Top/TankTop/tanktop2.png', N'Nike', 1, 2022, N'TankTop', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1514', N'Áo Sweater Nu', 1, 800, N'images/Top/Sweater/sweater2.png', N'Dior', 0, 2021, N'Sweater', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1515', N'Áo Polo Nu', 1, 600, N'images/Top/Polo/polo2.png', N'Adidas', 0, 2021, N'Polo', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1516', N'Áo TankTop Nu', 1, 900, N'images/Top/TankTop/tanktop2.png', N'GUCCI', 0, 2019, N'TankTop', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1517', N'Quần Kaki Nam', 2, 750, N'images/Bot/Kaki/kaki3.jpeg', N'Dior', 1, 2022, N'Kaki', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1518', N'Quần Legging Nam', 2, 1000, N'images/Bot/Legging/legging2.jpg', N'Dior', 1, 2018, N'Legging', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1519', N'Áo TankTop Nam', 1, 250, N'images/Top/TankTop/tanktop1.jpg', N'Adidas', 1, 2021, N'TankTop', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'152', N'Áo Polo Nu', 1, 100, N'images/Top/Polo/polo4.png', N'Louis Vuitton', 0, 2018, N'Polo', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1520', N'Áo Tee Nam', 1, 550, N'images/Top/Tee/tee3.png', N'ZARA', 1, 2018, N'Tee', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1521', N'Quần Jeans Nu', 2, 850, N'images/Bot/Jeans/Jeans3.png', N'Nike', 0, 2018, N'Jeans', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1522', N'Áo TankTop Nam', 1, 400, N'images/Top/TankTop/tanktop1.jpg', N'Chanel', 1, 2022, N'TankTop', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1523', N'Quần Joggers Nam', 2, 450, N'images/Bot/Joggers/Joggers3.png', N'Nike', 1, 2019, N'Joggers', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1524', N'Quần Legging Nam', 2, 550, N'images/Bot/Legging/legging3.jpg', N'Cartier', 1, 2022, N'Legging', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1525', N'Quần Jeans Nu', 2, 400, N'images/Bot/Jeans/Jeans1.png', N'Cartier', 0, 2021, N'Jeans', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1526', N'Quần Joggers Nu', 2, 750, N'images/Bot/Joggers/Joggers1.png', N'Nike', 0, 2018, N'Joggers', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1527', N'Quần Joggers Nu', 2, 700, N'images/Bot/Joggers/Joggers2.png', N'UNIQLO', 0, 2019, N'Joggers', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1528', N'Áo Sweater Nu', 1, 600, N'images/Top/Sweater/sweater4.png', N'Nike', 0, 2022, N'Sweater', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1529', N'Áo TankTop Nu', 1, 950, N'images/Top/TankTop/tanktop2.png', N'H&M', 0, 2021, N'TankTop', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'153', N'Áo Jacket Nu', 1, 550, N'images/Top/Jacket/jacket1.png', N'UNIQLO', 0, 2021, N'Jacket', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1530', N'Quần Joggers Nu', 2, 150, N'images/Bot/Joggers/Joggers3.png', N'Dior', 0, 2019, N'Joggers', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1531', N'Áo Sweater Nam', 1, 100, N'images/Top/Sweater/sweater3.png', N'Cartier', 1, 2019, N'Sweater', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1532', N'Quần Jeans Nu', 2, 850, N'images/Bot/Jeans/Jean2.jpg', N'UNIQLO', 0, 2020, N'Jeans', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1533', N'Quần Tee Pants Nu', 2, 400, N'images/Bot/Tee Pants/pants1.png', N'GUCCI', 0, 2018, N'Tee Pants', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1534', N'Áo Tee Nu', 1, 800, N'images/Top/Tee/tee4.png', N'Adidas', 0, 2022, N'Tee', 3, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1535', N'Áo Croptop Nam', 1, 550, N'images/Top/Croptop/croptop1.png', N'Adidas', 1, 2019, N'Croptop', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1536', N'Áo Polo Nu', 1, 950, N'images/Top/Polo/polo1.png', N'Adidas', 0, 2021, N'Polo', 3, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1537', N'Áo Tee Nam', 1, 650, N'images/Top/Tee/tee3.png', N'Cartier', 1, 2020, N'Tee', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1538', N'Quần Cargo Nu', 2, 550, N'images/Bot/Cargo/Cargo1.png', N'UNIQLO', 0, 2019, N'Cargo', 2, N'Kaki')
GO
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1539', N'Áo Polo Nu', 1, 800, N'images/Top/Polo/polo3.png', N'Chanel', 0, 2018, N'Polo', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'154', N'Áo Sweater Nu', 1, 250, N'images/Top/Sweater/sweater2.png', N'ZARA', 0, 2022, N'Sweater', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1540', N'Áo Tee Nu', 1, 300, N'images/Top/Tee/tee4.png', N'Dior', 0, 2019, N'Tee', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1541', N'Áo Hoodie Nu', 1, 100, N'images/Top/Hoodie/hoodie1.png', N'Cartier', 0, 2022, N'Hoodie', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1542', N'Áo Sweater Nu', 1, 350, N'images/Top/Sweater/sweater4.png', N'Nike', 0, 2020, N'Sweater', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1543', N'Áo Croptop Nam', 1, 250, N'images/Top/Croptop/croptop2.jpg', N'Hermes', 1, 2022, N'Croptop', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1544', N'Quần Jeans Nam', 2, 500, N'images/Bot/Jeans/Jeans3.png', N'UNIQLO', 1, 2022, N'Jeans', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1545', N'Quần Joggers Nam', 2, 150, N'images/Bot/Joggers/Joggers3.png', N'H&M', 1, 2019, N'Joggers', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1546', N'Quần Baggy Nam', 2, 700, N'images/Bot/Baggy/Baggy2.png', N'Nike', 1, 2019, N'Baggy', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1547', N'Quần Baggy Nam', 2, 1000, N'images/Bot/Baggy/Baggy1.png', N'GUCCI', 1, 2020, N'Baggy', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1548', N'Quần Baggy Nu', 2, 400, N'images/Bot/Baggy/Baggy3.png', N'Cartier', 0, 2020, N'Baggy', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1549', N'Quần Kaki Nam', 2, 600, N'images/Bot/Kaki/kaki2.png', N'H&M', 1, 2022, N'Kaki', 0, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'155', N'Áo Hoodie Nam', 1, 950, N'images/Top/Hoodie/hoodie4.png', N'H&M', 1, 2020, N'Hoodie', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1550', N'Quần Legging Nu', 2, 200, N'images/Bot/Legging/legging3.jpg', N'Nike', 0, 2022, N'Legging', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1551', N'Áo Tee Nam', 1, 650, N'images/Top/Tee/tee3.png', N'Adidas', 1, 2018, N'Tee', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1552', N'Áo Hoodie Nam', 1, 100, N'images/Top/Hoodie/hoodie2.png', N'ZARA', 1, 2020, N'Hoodie', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1553', N'Áo Croptop Nam', 1, 650, N'images/Top/Croptop/croptop1.png', N'Chanel', 1, 2018, N'Croptop', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1554', N'Áo Tee Nu', 1, 600, N'images/Top/Tee/tee1.png', N'Dior', 0, 2019, N'Tee', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1555', N'Quần Jeans Nu', 2, 250, N'images/Bot/Jeans/Jeans4.png', N'ZARA', 0, 2019, N'Jeans', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1556', N'Quần Baggy Nam', 2, 550, N'images/Bot/Baggy/Baggy1.png', N'Chanel', 1, 2020, N'Baggy', 1, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1557', N'Áo Sweater Nam', 1, 300, N'images/Top/Sweater/sweater5.png', N'ZARA', 1, 2020, N'Sweater', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1558', N'Quần Tee Pants Nu', 2, 500, N'images/Bot/Tee Pants/pants3.png', N'Louis Vuitton', 0, 2022, N'Tee Pants', 3, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1559', N'Quần Joggers Nu', 2, 750, N'images/Bot/Joggers/Joggers2.png', N'H&M', 0, 2019, N'Joggers', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'156', N'Áo Sweater Nu', 1, 450, N'images/Top/Sweater/sweater3.png', N'Hermes', 0, 2021, N'Sweater', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1560', N'Quần Baggy Nam', 2, 800, N'images/Bot/Baggy/Baggy3.png', N'UNIQLO', 1, 2019, N'Baggy', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1561', N'Áo Blazer Nam', 1, 350, N'images/Top/Blazer/blazer4.png', N'Chanel', 1, 2019, N'Blazer', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1562', N'Quần Baggy Nam', 2, 250, N'images/Bot/Baggy/Baggy3.png', N'Louis Vuitton', 1, 2019, N'Baggy', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1563', N'Quần Kaki Nu', 2, 500, N'images/Bot/Kaki/kaki4.png', N'ZARA', 0, 2019, N'Kaki', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1564', N'Áo Sweater Nam', 1, 900, N'images/Top/Sweater/sweater4.png', N'Chanel', 1, 2020, N'Sweater', 1, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1565', N'Quần Jeans Nam', 2, 900, N'images/Bot/Jeans/Jean2.jpg', N'Dior', 1, 2018, N'Jeans', 1, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1566', N'Áo Croptop Nu', 1, 350, N'images/Top/Croptop/croptop3.png', N'Hermes', 0, 2018, N'Croptop', 2, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1567', N'Áo Hoodie Nam', 1, 1000, N'images/Top/Hoodie/hoodie4.png', N'H&M', 1, 2020, N'Hoodie', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1568', N'Áo TankTop Nam', 1, 450, N'images/Top/TankTop/tanktop1.jpg', N'ZARA', 1, 2021, N'TankTop', 0, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1569', N'Quần Tee Pants Nam', 2, 250, N'images/Bot/Tee Pants/pants1.png', N'Louis Vuitton', 1, 2022, N'Tee Pants', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'157', N'Áo Croptop Nam', 1, 750, N'images/Top/Croptop/croptop4.png', N'ZARA', 1, 2019, N'Croptop', 1, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1570', N'Áo TankTop Nu', 1, 700, N'images/Top/TankTop/tanktop2.png', N'GUCCI', 0, 2022, N'TankTop', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1571', N'Áo Blazer Nam', 1, 150, N'images/Top/Blazer/blazer4.png', N'ZARA', 1, 2022, N'Blazer', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1572', N'Áo Jacket Nu', 1, 550, N'images/Top/Jacket/jacket3.png', N'ZARA', 0, 2020, N'Jacket', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1573', N'Quần Joggers Nu', 2, 750, N'images/Bot/Joggers/Joggers1.png', N'GUCCI', 0, 2019, N'Joggers', 2, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1574', N'Quần Kaki Nu', 2, 650, N'images/Bot/Kaki/kaki2.png', N'GUCCI', 0, 2018, N'Kaki', 2, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1575', N'Quần Short Nam', 2, 200, N'images/Bot/Short/short2.png', N'UNIQLO', 1, 2019, N'Short', 1, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1576', N'Quần Joggers Nam', 2, 350, N'images/Bot/Joggers/Joggers2.png', N'Adidas', 1, 2021, N'Joggers', 0, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1577', N'Áo Tee Nu', 1, 450, N'images/Top/Tee/tee3.png', N'Nike', 0, 2022, N'Tee', 3, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1578', N'Áo Hoodie Nu', 1, 150, N'images/Top/Hoodie/hoodie3.png', N'H&M', 0, 2018, N'Hoodie', 2, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1579', N'Áo Hoodie Nam', 1, 850, N'images/Top/Hoodie/hoodie2.png', N'Cartier', 1, 2018, N'Hoodie', 1, N'Jean')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'158', N'Quần Kaki Nu', 2, 600, N'images/Bot/Kaki/kaki1.jpg', N'Louis Vuitton', 0, 2021, N'Kaki', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1580', N'Áo Croptop Nu', 1, 200, N'images/Top/Croptop/croptop4.png', N'Nike', 0, 2021, N'Croptop', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1581', N'Áo Jacket Nam', 1, 550, N'images/Top/Jacket/jacket2.png', N'Cartier', 1, 2022, N'Jacket', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1582', N'Áo Polo Nu', 1, 250, N'images/Top/Polo/polo3.png', N'ZARA', 0, 2020, N'Polo', 3, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1583', N'Áo Hoodie Nam', 1, 100, N'images/Top/Hoodie/hoodie2.png', N'Dior', 1, 2021, N'Hoodie', 0, N'Kate')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1584', N'Quần Short Nu', 2, 350, N'images/Bot/Short/short1.png', N'Louis Vuitton', 0, 2018, N'Short', 2, N'Umi')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1585', N'Áo Sweater Nam', 1, 1000, N'images/Top/Sweater/sweater1.png', N'Chanel', 1, 2022, N'Sweater', 0, N'Kaki')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1586', N'Quần Jeans Nu', 2, 200, N'images/Bot/Jeans/Jeans4.png', N'H&M', 0, 2020, N'Jeans', 2, N'Cotton')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1587', N'Quần Jeans Nam', 2, 250, N'images/Bot/Jeans/Jeans1.png', N'UNIQLO', 1, 2022, N'Jeans', 0, N'Linen')
INSERT [dbo].[Product] ([ID], [Name], [IDCategory], [Price], [Image], [Brand], [Gender], [ReleaseTime], [ProductType], [ProductCluster], [ProductMaterial]) VALUES (N'1588', N'Áo Hoodie Nu', 1, 750, N'images/Top/Hoodie/hoodie2.png', N'ZARA', 0, 2018, N'Hoodie', 2, N'Kate')