-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsert_100_products.sql
More file actions
1369 lines (913 loc) · 533 KB
/
insert_100_products.sql
File metadata and controls
1369 lines (913 loc) · 533 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- Script thêm 100 sản phẩm cho database shopgiay
USE [shopgiay]
GO
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 641597, 769916, 19, N'Giày Thể Thao UTH Shoes Helio Teen Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-den-den-detail.jpg"]', 1, 53);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 590454, 708544, 10, N'Giày Thể Thao UTH Shoes Helio Teen Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-trng-trắng-detail.jpg"]', 1, 66);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 693493, 832191, 25, N'Giày Thể Thao UTH Shoes Helio Teen Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 59);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 525095, 630114, 15, N'Giày Thể Thao UTH Shoes Helio Teen Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-d-dỏ-detail.jpg"]', 1, 61);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 521585, 625902, 22, N'Giày Thể Thao UTH Shoes Helio Teen Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 52);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 654787, 785744, 23, N'Giày Thể Thao UTH Shoes Helio Teen Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-den-den-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 698792, 838550, 18, N'Giày Thể Thao UTH Shoes Helio Teen Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-trng-trắng-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 602566, 723079, 13, N'Giày Thể Thao UTH Shoes Helio Teen Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 66);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 692144, 830572, 19, N'Giày Thể Thao UTH Shoes Helio Teen Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-d-dỏ-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Helio Teen Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 641810, 770172, 12, N'Giày Thể Thao UTH Shoes Helio Teen Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-helio-teen-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 507743, 609291, 10, N'Giày Thể Thao UTH Shoes Sport Pro Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-den-den-detail.jpg"]', 1, 53);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 525213, 630255, 27, N'Giày Thể Thao UTH Shoes Sport Pro Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-trng-trắng-detail.jpg"]', 1, 63);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 580678, 696813, 11, N'Giày Thể Thao UTH Shoes Sport Pro Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 99);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 692201, 830641, 11, N'Giày Thể Thao UTH Shoes Sport Pro Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-d-dỏ-detail.jpg"]', 1, 75);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 502666, 603199, 28, N'Giày Thể Thao UTH Shoes Sport Pro Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 97);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 620380, 744456, 19, N'Giày Thể Thao UTH Shoes Sport Pro Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-den-den-detail.jpg"]', 1, 82);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 662995, 795594, 14, N'Giày Thể Thao UTH Shoes Sport Pro Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-trng-trắng-detail.jpg"]', 1, 50);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 567430, 680916, 23, N'Giày Thể Thao UTH Shoes Sport Pro Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 96);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 508235, 609882, 28, N'Giày Thể Thao UTH Shoes Sport Pro Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-d-dỏ-detail.jpg"]', 1, 61);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Sport Pro Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 670071, 804085, 29, N'Giày Thể Thao UTH Shoes Sport Pro Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-sport-pro-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 511659, 613990, 29, N'Giày Thể Thao UTH Shoes Active Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-den-den-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 579262, 695114, 12, N'Giày Thể Thao UTH Shoes Active Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-trng-trắng-detail.jpg"]', 1, 83);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 584362, 701234, 29, N'Giày Thể Thao UTH Shoes Active Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 79);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 528931, 634717, 21, N'Giày Thể Thao UTH Shoes Active Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-d-dỏ-detail.jpg"]', 1, 76);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 535088, 642105, 14, N'Giày Thể Thao UTH Shoes Active Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-active-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 76);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 688424, 826108, 12, N'Giày Thể Thao UTH Shoes Active Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-den-den-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 690164, 828196, 15, N'Giày Thể Thao UTH Shoes Active Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-trng-trắng-detail.jpg"]', 1, 80);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 536769, 644122, 22, N'Giày Thể Thao UTH Shoes Active Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 62);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 524428, 629313, 18, N'Giày Thể Thao UTH Shoes Active Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-d-dỏ-detail.jpg"]', 1, 50);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Active Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 531779, 638134, 21, N'Giày Thể Thao UTH Shoes Active Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-active-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 78);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 577089, 692506, 17, N'Giày Thể Thao UTH Shoes Dynamic Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-den-den-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 639009, 766810, 10, N'Giày Thể Thao UTH Shoes Dynamic Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-trng-trắng-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 530942, 637130, 23, N'Giày Thể Thao UTH Shoes Dynamic Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 95);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 610128, 732153, 11, N'Giày Thể Thao UTH Shoes Dynamic Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-d-dỏ-detail.jpg"]', 1, 55);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 685477, 822572, 25, N'Giày Thể Thao UTH Shoes Dynamic Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 71);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 583408, 700089, 21, N'Giày Thể Thao UTH Shoes Dynamic Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-den-den-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 629387, 755264, 18, N'Giày Thể Thao UTH Shoes Dynamic Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-trng-trắng-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 609479, 731374, 13, N'Giày Thể Thao UTH Shoes Dynamic Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 55);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 618042, 741650, 14, N'Giày Thể Thao UTH Shoes Dynamic Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-d-dỏ-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Dynamic Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 666429, 799714, 21, N'Giày Thể Thao UTH Shoes Dynamic Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-dynamic-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 78);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 538819, 646582, 15, N'Giày Thể Thao UTH Shoes Energy Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-den-den-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 633442, 760130, 14, N'Giày Thể Thao UTH Shoes Energy Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-trng-trắng-detail.jpg"]', 1, 60);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 576431, 691717, 17, N'Giày Thể Thao UTH Shoes Energy Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 83);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 528734, 634480, 18, N'Giày Thể Thao UTH Shoes Energy Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-d-dỏ-detail.jpg"]', 1, 58);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 555579, 666694, 21, N'Giày Thể Thao UTH Shoes Energy Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 83);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 662878, 795453, 12, N'Giày Thể Thao UTH Shoes Energy Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-den-den-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 507019, 608422, 25, N'Giày Thể Thao UTH Shoes Energy Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-trng-trắng-detail.jpg"]', 1, 60);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 699083, 838899, 24, N'Giày Thể Thao UTH Shoes Energy Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 547630, 657156, 10, N'Giày Thể Thao UTH Shoes Energy Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-d-dỏ-detail.jpg"]', 1, 80);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Energy Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 510675, 612810, 11, N'Giày Thể Thao UTH Shoes Energy Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-energy-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 91);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 660565, 792678, 19, N'Giày Thể Thao UTH Shoes Power Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-den-den-detail.jpg"]', 1, 79);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 674804, 809764, 10, N'Giày Thể Thao UTH Shoes Power Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-trng-trắng-detail.jpg"]', 1, 55);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 660327, 792392, 15, N'Giày Thể Thao UTH Shoes Power Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 62);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 681761, 818113, 24, N'Giày Thể Thao UTH Shoes Power Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-d-dỏ-detail.jpg"]', 1, 63);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 527925, 633510, 15, N'Giày Thể Thao UTH Shoes Power Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-power-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 99);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 529698, 635637, 29, N'Giày Thể Thao UTH Shoes Power Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-den-den-detail.jpg"]', 1, 76);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 527549, 633058, 11, N'Giày Thể Thao UTH Shoes Power Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-trng-trắng-detail.jpg"]', 1, 99);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 538693, 646431, 19, N'Giày Thể Thao UTH Shoes Power Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 82);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 611910, 734292, 27, N'Giày Thể Thao UTH Shoes Power Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-d-dỏ-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Power Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 505026, 606031, 18, N'Giày Thể Thao UTH Shoes Power Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-power-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 58);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 645806, 774967, 25, N'Giày Thể Thao UTH Shoes Speed Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-den-den-detail.jpg"]', 1, 84);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 530075, 636090, 19, N'Giày Thể Thao UTH Shoes Speed Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-trng-trắng-detail.jpg"]', 1, 65);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 674966, 809959, 25, N'Giày Thể Thao UTH Shoes Speed Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 90);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 649002, 778802, 24, N'Giày Thể Thao UTH Shoes Speed Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-d-dỏ-detail.jpg"]', 1, 85);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 565213, 678255, 28, N'Giày Thể Thao UTH Shoes Speed Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 57);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 650318, 780381, 26, N'Giày Thể Thao UTH Shoes Speed Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-den-den-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 516870, 620244, 14, N'Giày Thể Thao UTH Shoes Speed Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-trng-trắng-detail.jpg"]', 1, 85);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 635186, 762223, 18, N'Giày Thể Thao UTH Shoes Speed Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 69);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 662934, 795520, 12, N'Giày Thể Thao UTH Shoes Speed Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-d-dỏ-detail.jpg"]', 1, 94);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Speed Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 640385, 768462, 26, N'Giày Thể Thao UTH Shoes Speed Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-speed-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 653313, 783975, 13, N'Giày Thể Thao UTH Shoes Flex Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-den-den-detail.jpg"]', 1, 86);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 605141, 726169, 11, N'Giày Thể Thao UTH Shoes Flex Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-trng-trắng-detail.jpg"]', 1, 84);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 697954, 837544, 19, N'Giày Thể Thao UTH Shoes Flex Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 51);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 678778, 814533, 12, N'Giày Thể Thao UTH Shoes Flex Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-d-dỏ-detail.jpg"]', 1, 61);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 681576, 817891, 24, N'Giày Thể Thao UTH Shoes Flex Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 51);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 577468, 692961, 13, N'Giày Thể Thao UTH Shoes Flex Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-den-den-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 504119, 604942, 18, N'Giày Thể Thao UTH Shoes Flex Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-trng-trắng-detail.jpg"]', 1, 62);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 680346, 816415, 10, N'Giày Thể Thao UTH Shoes Flex Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 52);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 602186, 722623, 22, N'Giày Thể Thao UTH Shoes Flex Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-d-dỏ-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Flex Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 555269, 666322, 21, N'Giày Thể Thao UTH Shoes Flex Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-flex-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 91);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 666125, 799350, 20, N'Giày Thể Thao UTH Shoes Core Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-den-den-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 541423, 649707, 26, N'Giày Thể Thao UTH Shoes Core Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-trng-trắng-detail.jpg"]', 1, 60);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 687843, 825411, 25, N'Giày Thể Thao UTH Shoes Core Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 53);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 546012, 655214, 16, N'Giày Thể Thao UTH Shoes Core Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-d-dỏ-detail.jpg"]', 1, 62);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 612772, 735326, 29, N'Giày Thể Thao UTH Shoes Core Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-core-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 86);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 662115, 794538, 28, N'Giày Thể Thao UTH Shoes Core Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-den-den-detail.jpg"]', 1, 93);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 618769, 742522, 11, N'Giày Thể Thao UTH Shoes Core Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-trng-trắng-detail.jpg"]', 1, 78);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 625217, 750260, 28, N'Giày Thể Thao UTH Shoes Core Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 59);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 628115, 753738, 15, N'Giày Thể Thao UTH Shoes Core Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-d-dỏ-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Core Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 580109, 696130, 15, N'Giày Thể Thao UTH Shoes Core Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-core-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 74);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nam Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 644999, 773998, 18, N'Giày Thể Thao UTH Shoes Prime Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-nam-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-den-den-detail.jpg"]', 1, 68);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nam Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 661756, 794107, 11, N'Giày Thể Thao UTH Shoes Prime Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-nam-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-trng-trắng-detail.jpg"]', 1, 62);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nam Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 606826, 728191, 24, N'Giày Thể Thao UTH Shoes Prime Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 92);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nam Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 697080, 836496, 21, N'Giày Thể Thao UTH Shoes Prime Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-nam-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-d-dỏ-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nam Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 624072, 748886, 21, N'Giày Thể Thao UTH Shoes Prime Nam với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-nam-mu-xanh-l-xanh lá-detail.jpg"]', 1, 69);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nữ Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 550778, 660933, 17, N'Giày Thể Thao UTH Shoes Prime Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đen nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-n-mu-den-den-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-den-den-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-den-den-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-den-den-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-den-den-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-den-den-detail.jpg"]', 1, 94);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nữ Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 519337, 623204, 12, N'Giày Thể Thao UTH Shoes Prime Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Trắng nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-n-mu-trng-trắng-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-trng-trắng-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-trng-trắng-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-trng-trắng-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-trng-trắng-detail.jpg"]', 1, 71);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nữ Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 664036, 796843, 29, N'Giày Thể Thao UTH Shoes Prime Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh dương nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 82);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nữ Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 694194, 833032, 12, N'Giày Thể Thao UTH Shoes Prime Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Đỏ nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-n-mu-d-dỏ-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-d-dỏ-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-d-dỏ-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-d-dỏ-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-d-dỏ-detail.jpg"]', 1, 67);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Thể Thao UTH Shoes Prime Nữ Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày thể thao'), 694162, 832994, 16, N'Giày Thể Thao UTH Shoes Prime Nữ với thiết kế hiện đại, phù hợp cho hoạt động thể thao và dạo phố. Màu Xanh lá nổi bật, dễ phối đồ.', N'/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-l-xanh lá-main.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-l-xanh lá-side.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-l-xanh lá-top.jpg","/images/products/giy-th-thao-uth-shoes-prime-n-mu-xanh-l-xanh lá-detail.jpg"]', 1, 90);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Pro Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 722937, 831377, 21, N'Giày Chạy Bộ UTH Shoes Runner Pro với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-pro-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-pro-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-pro-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-den-den-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Pro Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 937858, 1078536, 13, N'Giày Chạy Bộ UTH Shoes Runner Pro với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-pro-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-pro-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-pro-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-trng-trắng-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Pro Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 762502, 876877, 19, N'Giày Chạy Bộ UTH Shoes Runner Pro với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-pro-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-pro-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-pro-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 69);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Pro Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 834479, 959650, 22, N'Giày Chạy Bộ UTH Shoes Runner Pro với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-pro-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-pro-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-pro-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-pro-mu-d-dỏ-detail.jpg"]', 1, 85);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Elite Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 929282, 1068674, 20, N'Giày Chạy Bộ UTH Shoes Runner Elite với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-elite-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-elite-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-elite-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-den-den-detail.jpg"]', 1, 84);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Elite Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 859290, 988183, 15, N'Giày Chạy Bộ UTH Shoes Runner Elite với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-elite-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-elite-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-elite-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-trng-trắng-detail.jpg"]', 1, 88);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Elite Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 791670, 910420, 11, N'Giày Chạy Bộ UTH Shoes Runner Elite với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-elite-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-elite-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-elite-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 79);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Elite Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 770429, 885993, 19, N'Giày Chạy Bộ UTH Shoes Runner Elite với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-elite-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-elite-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-elite-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-elite-mu-d-dỏ-detail.jpg"]', 1, 67);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Max Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 815392, 937700, 22, N'Giày Chạy Bộ UTH Shoes Runner Max với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-max-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-max-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-max-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-den-den-detail.jpg"]', 1, 79);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Max Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 890537, 1024117, 17, N'Giày Chạy Bộ UTH Shoes Runner Max với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-max-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-max-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-max-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-trng-trắng-detail.jpg"]', 1, 53);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Max Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 914250, 1051387, 15, N'Giày Chạy Bộ UTH Shoes Runner Max với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-max-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-max-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-max-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 68);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Max Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 802048, 922355, 10, N'Giày Chạy Bộ UTH Shoes Runner Max với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-max-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-max-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-max-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-max-mu-d-dỏ-detail.jpg"]', 1, 93);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Light Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 911610, 1048351, 23, N'Giày Chạy Bộ UTH Shoes Runner Light với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-light-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-light-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-light-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-den-den-detail.jpg"]', 1, 71);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Light Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 889116, 1022483, 22, N'Giày Chạy Bộ UTH Shoes Runner Light với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-light-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-light-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-light-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-trng-trắng-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Light Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 944880, 1086612, 16, N'Giày Chạy Bộ UTH Shoes Runner Light với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-light-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-light-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-light-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 73);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Light Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 776738, 893248, 15, N'Giày Chạy Bộ UTH Shoes Runner Light với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-light-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-light-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-light-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-light-mu-d-dỏ-detail.jpg"]', 1, 97);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Comfort Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 816723, 939231, 11, N'Giày Chạy Bộ UTH Shoes Runner Comfort với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-den-den-detail.jpg"]', 1, 58);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Comfort Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 905014, 1040766, 12, N'Giày Chạy Bộ UTH Shoes Runner Comfort với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-trng-trắng-detail.jpg"]', 1, 50);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Comfort Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 924255, 1062893, 16, N'Giày Chạy Bộ UTH Shoes Runner Comfort với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 93);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Comfort Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 780819, 897941, 12, N'Giày Chạy Bộ UTH Shoes Runner Comfort với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-comfort-mu-d-dỏ-detail.jpg"]', 1, 89);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Speed Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 734589, 844777, 16, N'Giày Chạy Bộ UTH Shoes Runner Speed với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-speed-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-speed-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-speed-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-den-den-detail.jpg"]', 1, 59);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Speed Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 715067, 822327, 17, N'Giày Chạy Bộ UTH Shoes Runner Speed với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-speed-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-speed-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-speed-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-trng-trắng-detail.jpg"]', 1, 66);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Speed Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 955628, 1098972, 15, N'Giày Chạy Bộ UTH Shoes Runner Speed với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-speed-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-speed-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-speed-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 98);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Speed Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 976448, 1122915, 17, N'Giày Chạy Bộ UTH Shoes Runner Speed với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-speed-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-speed-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-speed-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-speed-mu-d-dỏ-detail.jpg"]', 1, 93);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Trail Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 879167, 1011042, 22, N'Giày Chạy Bộ UTH Shoes Runner Trail với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-trail-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-trail-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-trail-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-den-den-detail.jpg"]', 1, 83);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Trail Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 930512, 1070088, 18, N'Giày Chạy Bộ UTH Shoes Runner Trail với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-trail-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-trail-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-trail-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-trng-trắng-detail.jpg"]', 1, 57);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Trail Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 740372, 851427, 10, N'Giày Chạy Bộ UTH Shoes Runner Trail với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-trail-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-trail-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-trail-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 78);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Trail Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 865903, 995788, 19, N'Giày Chạy Bộ UTH Shoes Runner Trail với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-trail-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-trail-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-trail-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-trail-mu-d-dỏ-detail.jpg"]', 1, 96);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Street Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 742467, 853837, 19, N'Giày Chạy Bộ UTH Shoes Runner Street với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-street-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-street-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-street-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-den-den-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Street Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 891446, 1025162, 18, N'Giày Chạy Bộ UTH Shoes Runner Street với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-street-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-street-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-street-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-trng-trắng-detail.jpg"]', 1, 55);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Street Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 874998, 1006247, 10, N'Giày Chạy Bộ UTH Shoes Runner Street với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-street-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-street-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-street-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 90);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Street Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 969316, 1114713, 13, N'Giày Chạy Bộ UTH Shoes Runner Street với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-street-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-street-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-street-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-street-mu-d-dỏ-detail.jpg"]', 1, 89);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Track Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 835770, 961135, 16, N'Giày Chạy Bộ UTH Shoes Runner Track với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-track-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-track-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-track-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-den-den-detail.jpg"]', 1, 98);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Track Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 828634, 952929, 18, N'Giày Chạy Bộ UTH Shoes Runner Track với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-track-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-track-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-track-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-trng-trắng-detail.jpg"]', 1, 52);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Track Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 878125, 1009843, 16, N'Giày Chạy Bộ UTH Shoes Runner Track với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-track-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-track-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-track-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 99);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Track Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 744366, 856020, 17, N'Giày Chạy Bộ UTH Shoes Runner Track với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-track-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-track-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-track-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-track-mu-d-dỏ-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Marathon Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 788224, 906457, 17, N'Giày Chạy Bộ UTH Shoes Runner Marathon với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-den-den-detail.jpg"]', 1, 88);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Marathon Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 819145, 942016, 14, N'Giày Chạy Bộ UTH Shoes Runner Marathon với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-trng-trắng-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Marathon Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 959361, 1103265, 11, N'Giày Chạy Bộ UTH Shoes Runner Marathon với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 86);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Marathon Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 836195, 961624, 12, N'Giày Chạy Bộ UTH Shoes Runner Marathon với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-marathon-mu-d-dỏ-detail.jpg"]', 1, 63);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Sprint Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 710451, 817018, 13, N'Giày Chạy Bộ UTH Shoes Runner Sprint với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-den-den-detail.jpg"]', 1, 53);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Sprint Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 817318, 939915, 24, N'Giày Chạy Bộ UTH Shoes Runner Sprint với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-trng-trắng-detail.jpg"]', 1, 57);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Sprint Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 949487, 1091910, 12, N'Giày Chạy Bộ UTH Shoes Runner Sprint với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 58);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Sprint Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 820207, 943238, 21, N'Giày Chạy Bộ UTH Shoes Runner Sprint với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-sprint-mu-d-dỏ-detail.jpg"]', 1, 76);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Endurance Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 702403, 807763, 23, N'Giày Chạy Bộ UTH Shoes Runner Endurance với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-den-den-detail.jpg"]', 1, 55);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Endurance Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 896922, 1031460, 15, N'Giày Chạy Bộ UTH Shoes Runner Endurance với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-trng-trắng-detail.jpg"]', 1, 60);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Endurance Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 723137, 831607, 17, N'Giày Chạy Bộ UTH Shoes Runner Endurance với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 70);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Endurance Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 752545, 865426, 24, N'Giày Chạy Bộ UTH Shoes Runner Endurance với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-endurance-mu-d-dỏ-detail.jpg"]', 1, 62);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Performance Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 802489, 922862, 18, N'Giày Chạy Bộ UTH Shoes Runner Performance với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-performance-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-performance-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-performance-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-den-den-detail.jpg"]', 1, 67);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Performance Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 781667, 898917, 13, N'Giày Chạy Bộ UTH Shoes Runner Performance với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-performance-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-performance-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-performance-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-trng-trắng-detail.jpg"]', 1, 60);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Performance Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 826817, 950839, 18, N'Giày Chạy Bộ UTH Shoes Runner Performance với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-performance-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-performance-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-performance-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 59);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Performance Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 876498, 1007972, 20, N'Giày Chạy Bộ UTH Shoes Runner Performance với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-performance-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-performance-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-performance-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-performance-mu-d-dỏ-detail.jpg"]', 1, 99);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Stability Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 900902, 1036037, 18, N'Giày Chạy Bộ UTH Shoes Runner Stability với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-stability-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-stability-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-stability-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-den-den-detail.jpg"]', 1, 94);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Stability Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 975466, 1121785, 21, N'Giày Chạy Bộ UTH Shoes Runner Stability với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-stability-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-stability-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-stability-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-trng-trắng-detail.jpg"]', 1, 94);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Stability Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 929431, 1068845, 19, N'Giày Chạy Bộ UTH Shoes Runner Stability với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-stability-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-stability-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-stability-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 96);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Stability Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 960903, 1105038, 23, N'Giày Chạy Bộ UTH Shoes Runner Stability với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-stability-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-stability-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-stability-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-stability-mu-d-dỏ-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Cushion Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 818481, 941253, 18, N'Giày Chạy Bộ UTH Shoes Runner Cushion với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đen năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-den-den-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-den-den-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-den-den-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-den-den-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-den-den-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-den-den-detail.jpg"]', 1, 55);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Cushion Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 735613, 845954, 21, N'Giày Chạy Bộ UTH Shoes Runner Cushion với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Trắng năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-trng-trắng-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-trng-trắng-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-trng-trắng-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-trng-trắng-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-trng-trắng-detail.jpg"]', 1, 84);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Cushion Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 866625, 996618, 22, N'Giày Chạy Bộ UTH Shoes Runner Cushion với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Xanh dương năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 80);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Chạy Bộ UTH Shoes Runner Cushion Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày chạy bộ'), 965646, 1110492, 15, N'Giày Chạy Bộ UTH Shoes Runner Cushion với công nghệ đệm đế tiên tiến, phù hợp cho cả người mới bắt đầu và vận động viên chuyên nghiệp. Màu Đỏ năng động.', N'/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-d-dỏ-main.jpg', N'["/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-d-dỏ-main.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-d-dỏ-side.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-d-dỏ-top.jpg","/images/products/giy-chy-b-uth-shoes-runner-cushion-mu-d-dỏ-detail.jpg"]', 1, 97);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Elite Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1200801, 1501001, 33, N'Giày Đá Banh UTH Shoes Football Elite với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-elite-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-elite-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-elite-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-den-den-detail.jpg"]', 1, 75);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Elite Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1280999, 1601248, 26, N'Giày Đá Banh UTH Shoes Football Elite với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-elite-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-elite-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-elite-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-trng-trắng-detail.jpg"]', 1, 86);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Elite Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1335805, 1669756, 26, N'Giày Đá Banh UTH Shoes Football Elite với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-elite-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-elite-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-elite-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-elite-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 88);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Pro Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1057533, 1321916, 15, N'Giày Đá Banh UTH Shoes Football Pro với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-pro-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-pro-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-pro-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-den-den-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Pro Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1337269, 1671586, 33, N'Giày Đá Banh UTH Shoes Football Pro với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-pro-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-pro-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-pro-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-trng-trắng-detail.jpg"]', 1, 92);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Pro Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1141455, 1426818, 34, N'Giày Đá Banh UTH Shoes Football Pro với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-pro-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-pro-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-pro-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-pro-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 59);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Classic Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1257493, 1571866, 25, N'Giày Đá Banh UTH Shoes Football Classic với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-classic-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-classic-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-classic-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-den-den-detail.jpg"]', 1, 80);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Classic Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1189474, 1486842, 32, N'Giày Đá Banh UTH Shoes Football Classic với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-classic-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-classic-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-classic-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-trng-trắng-detail.jpg"]', 1, 97);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Classic Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1209057, 1511321, 30, N'Giày Đá Banh UTH Shoes Football Classic với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-classic-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-classic-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-classic-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-classic-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 63);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Modern Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1034963, 1293703, 19, N'Giày Đá Banh UTH Shoes Football Modern với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-modern-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-modern-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-modern-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-den-den-detail.jpg"]', 1, 76);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Modern Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1231097, 1538871, 23, N'Giày Đá Banh UTH Shoes Football Modern với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-modern-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-modern-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-modern-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-trng-trắng-detail.jpg"]', 1, 63);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Modern Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1150076, 1437595, 32, N'Giày Đá Banh UTH Shoes Football Modern với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-modern-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-modern-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-modern-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-modern-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 84);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Speed Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1011006, 1263757, 23, N'Giày Đá Banh UTH Shoes Football Speed với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-speed-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-speed-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-speed-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-den-den-detail.jpg"]', 1, 51);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Speed Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1139420, 1424275, 20, N'Giày Đá Banh UTH Shoes Football Speed với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-speed-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-speed-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-speed-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-trng-trắng-detail.jpg"]', 1, 75);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Speed Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1055098, 1318872, 29, N'Giày Đá Banh UTH Shoes Football Speed với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-speed-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-speed-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-speed-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-speed-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 66);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Control Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1302889, 1628611, 23, N'Giày Đá Banh UTH Shoes Football Control với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-control-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-control-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-control-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-den-den-detail.jpg"]', 1, 52);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Control Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1252132, 1565165, 30, N'Giày Đá Banh UTH Shoes Football Control với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-control-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-control-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-control-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-trng-trắng-detail.jpg"]', 1, 94);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Control Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1045393, 1306741, 21, N'Giày Đá Banh UTH Shoes Football Control với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-control-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-control-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-control-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-control-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Power Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1171943, 1464928, 22, N'Giày Đá Banh UTH Shoes Football Power với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-power-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-power-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-power-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-den-den-detail.jpg"]', 1, 79);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Power Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1268305, 1585381, 29, N'Giày Đá Banh UTH Shoes Football Power với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-power-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-power-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-power-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-trng-trắng-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Power Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1111749, 1389686, 20, N'Giày Đá Banh UTH Shoes Football Power với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-power-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-power-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-power-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-power-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Light Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1212565, 1515706, 18, N'Giày Đá Banh UTH Shoes Football Light với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-light-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-light-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-light-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-den-den-detail.jpg"]', 1, 70);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Light Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1072240, 1340300, 26, N'Giày Đá Banh UTH Shoes Football Light với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-light-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-light-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-light-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-trng-trắng-detail.jpg"]', 1, 65);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Light Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1254856, 1568570, 15, N'Giày Đá Banh UTH Shoes Football Light với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-light-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-light-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-light-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-light-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 74);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Comfort Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1346918, 1683647, 33, N'Giày Đá Banh UTH Shoes Football Comfort với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-comfort-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-comfort-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-comfort-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-den-den-detail.jpg"]', 1, 57);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Comfort Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1254188, 1567735, 30, N'Giày Đá Banh UTH Shoes Football Comfort với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-comfort-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-comfort-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-comfort-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-trng-trắng-detail.jpg"]', 1, 92);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Comfort Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1333247, 1666558, 21, N'Giày Đá Banh UTH Shoes Football Comfort với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-comfort-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-comfort-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-comfort-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-comfort-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 97);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Premium Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1288454, 1610567, 15, N'Giày Đá Banh UTH Shoes Football Premium với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Đen nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-premium-mu-den-den-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-premium-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-den-den-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-premium-mu-den-den-main.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-den-den-side.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-den-den-top.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-den-den-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Premium Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1322513, 1653141, 33, N'Giày Đá Banh UTH Shoes Football Premium với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Trắng nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-premium-mu-trng-trắng-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-premium-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-premium-mu-trng-trắng-main.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-trng-trắng-side.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-trng-trắng-top.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-trng-trắng-detail.jpg"]', 1, 50);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Đá Banh UTH Shoes Football Premium Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày đá banh'), 1078604, 1348255, 23, N'Giày Đá Banh UTH Shoes Football Premium với thiết kế chuyên nghiệp, đế bám tốt và chất liệu cao cấp. Màu Xanh dương nổi bật trên sân cỏ.', N'/images/products/giy-d-banh-uth-shoes-football-premium-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-d-banh-uth-shoes-football-premium-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-d-banh-uth-shoes-football-premium-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-d-banh-uth-shoes-football-premium-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 83);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Classic Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 964222, 1157066, 32, N'Giày Tây UTH Shoes Business Classic với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-classic-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-classic-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-classic-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-den-den-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Classic Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 837058, 1004469, 26, N'Giày Tây UTH Shoes Business Classic với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-classic-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-classic-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-classic-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-trng-trắng-detail.jpg"]', 1, 51);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Classic Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 923369, 1108042, 24, N'Giày Tây UTH Shoes Business Classic với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-classic-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-classic-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-classic-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 57);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Classic Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 809902, 971882, 26, N'Giày Tây UTH Shoes Business Classic với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-classic-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-classic-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-classic-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-classic-mu-d-dỏ-detail.jpg"]', 1, 96);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Modern Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1062030, 1274436, 26, N'Giày Tây UTH Shoes Business Modern với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-modern-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-modern-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-modern-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-den-den-detail.jpg"]', 1, 88);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Modern Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 957519, 1149022, 15, N'Giày Tây UTH Shoes Business Modern với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-modern-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-modern-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-modern-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-trng-trắng-detail.jpg"]', 1, 98);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Modern Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 917200, 1100640, 32, N'Giày Tây UTH Shoes Business Modern với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-modern-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-modern-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-modern-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Modern Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 833411, 1000093, 28, N'Giày Tây UTH Shoes Business Modern với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-modern-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-modern-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-modern-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-modern-mu-d-dỏ-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Premium Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 866032, 1039238, 30, N'Giày Tây UTH Shoes Business Premium với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-premium-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-premium-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-premium-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-den-den-detail.jpg"]', 1, 71);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Premium Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 987450, 1184940, 16, N'Giày Tây UTH Shoes Business Premium với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-premium-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-premium-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-premium-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-trng-trắng-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Premium Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1042786, 1251343, 21, N'Giày Tây UTH Shoes Business Premium với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-premium-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-premium-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-premium-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 95);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Premium Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1044902, 1253882, 29, N'Giày Tây UTH Shoes Business Premium với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-premium-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-premium-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-premium-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-premium-mu-d-dỏ-detail.jpg"]', 1, 66);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Elite Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1020652, 1224782, 28, N'Giày Tây UTH Shoes Business Elite với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-elite-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-elite-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-elite-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-den-den-detail.jpg"]', 1, 63);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Elite Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 999237, 1199084, 23, N'Giày Tây UTH Shoes Business Elite với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-elite-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-elite-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-elite-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-trng-trắng-detail.jpg"]', 1, 61);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Elite Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 825049, 990058, 19, N'Giày Tây UTH Shoes Business Elite với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-elite-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-elite-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-elite-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 55);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Elite Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 920189, 1104226, 31, N'Giày Tây UTH Shoes Business Elite với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-elite-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-elite-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-elite-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-elite-mu-d-dỏ-detail.jpg"]', 1, 97);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Comfort Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1080248, 1296297, 20, N'Giày Tây UTH Shoes Business Comfort với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-comfort-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-comfort-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-comfort-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-den-den-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Comfort Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 874867, 1049840, 19, N'Giày Tây UTH Shoes Business Comfort với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-comfort-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-comfort-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-comfort-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-trng-trắng-detail.jpg"]', 1, 53);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Comfort Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 865100, 1038120, 19, N'Giày Tây UTH Shoes Business Comfort với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-comfort-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-comfort-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-comfort-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 51);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Comfort Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 803177, 963812, 32, N'Giày Tây UTH Shoes Business Comfort với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-comfort-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-comfort-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-comfort-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-comfort-mu-d-dỏ-detail.jpg"]', 1, 91);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Style Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 910212, 1092254, 26, N'Giày Tây UTH Shoes Business Style với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-style-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-style-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-style-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-den-den-detail.jpg"]', 1, 87);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Style Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 987996, 1185595, 21, N'Giày Tây UTH Shoes Business Style với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-style-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-style-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-style-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-trng-trắng-detail.jpg"]', 1, 53);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Style Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 829526, 995431, 27, N'Giày Tây UTH Shoes Business Style với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-style-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-style-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-style-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 59);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Style Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 971745, 1166094, 18, N'Giày Tây UTH Shoes Business Style với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-style-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-style-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-style-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-style-mu-d-dỏ-detail.jpg"]', 1, 78);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Professional Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1085871, 1303045, 15, N'Giày Tây UTH Shoes Business Professional với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-professional-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-professional-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-professional-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-den-den-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Professional Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 918024, 1101628, 31, N'Giày Tây UTH Shoes Business Professional với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-professional-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-professional-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-professional-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-trng-trắng-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Professional Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 858162, 1029794, 25, N'Giày Tây UTH Shoes Business Professional với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-professional-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-professional-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-professional-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 69);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Professional Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1086688, 1304025, 32, N'Giày Tây UTH Shoes Business Professional với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-professional-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-professional-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-professional-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-professional-mu-d-dỏ-detail.jpg"]', 1, 89);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Executive Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 906018, 1087221, 29, N'Giày Tây UTH Shoes Business Executive với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-executive-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-executive-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-executive-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-den-den-detail.jpg"]', 1, 87);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Executive Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 828488, 994185, 20, N'Giày Tây UTH Shoes Business Executive với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-executive-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-executive-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-executive-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-trng-trắng-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Executive Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 974062, 1168874, 31, N'Giày Tây UTH Shoes Business Executive với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-executive-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-executive-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-executive-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Executive Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1044182, 1253018, 20, N'Giày Tây UTH Shoes Business Executive với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-executive-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-executive-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-executive-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-executive-mu-d-dỏ-detail.jpg"]', 1, 51);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Manager Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 880576, 1056691, 33, N'Giày Tây UTH Shoes Business Manager với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-manager-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-manager-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-manager-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-den-den-detail.jpg"]', 1, 62);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Manager Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1044025, 1252830, 23, N'Giày Tây UTH Shoes Business Manager với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-manager-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-manager-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-manager-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-trng-trắng-detail.jpg"]', 1, 69);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Manager Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 978985, 1174782, 30, N'Giày Tây UTH Shoes Business Manager với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-manager-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-manager-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-manager-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 51);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Manager Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1030963, 1237155, 18, N'Giày Tây UTH Shoes Business Manager với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-manager-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-manager-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-manager-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-manager-mu-d-dỏ-detail.jpg"]', 1, 70);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Director Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 981861, 1178233, 30, N'Giày Tây UTH Shoes Business Director với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đen thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-director-mu-den-den-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-director-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-den-den-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-director-mu-den-den-main.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-den-den-side.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-den-den-top.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-den-den-detail.jpg"]', 1, 62);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Director Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 801462, 961754, 26, N'Giày Tây UTH Shoes Business Director với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Trắng thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-director-mu-trng-trắng-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-director-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-trng-trắng-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-director-mu-trng-trắng-main.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-trng-trắng-side.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-trng-trắng-top.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-trng-trắng-detail.jpg"]', 1, 92);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Director Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 1012360, 1214832, 16, N'Giày Tây UTH Shoes Business Director với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Xanh dương thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-director-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-director-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-director-mu-xanh-duong-xanh dương-main.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-xanh-duong-xanh dương-side.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-xanh-duong-xanh dương-top.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Tây UTH Shoes Business Director Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày tây'), 804809, 965770, 21, N'Giày Tây UTH Shoes Business Director với thiết kế cổ điển, phù hợp cho môi trường làm việc chuyên nghiệp. Màu Đỏ thanh lịch.', N'/images/products/giy-tay-uth-shoes-business-director-mu-d-dỏ-main.jpg', N'["/images/products/giy-tay-uth-shoes-business-director-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-d-dỏ-detail.jpg"]', N'["/images/products/giy-tay-uth-shoes-business-director-mu-d-dỏ-main.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-d-dỏ-side.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-d-dỏ-top.jpg","/images/products/giy-tay-uth-shoes-business-director-mu-d-dỏ-detail.jpg"]', 1, 93);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Slide Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 324346, 421649, 39, N'Dép UTH Shoes Comfort Slide với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-slide-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-slide-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-slide-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-den-den-detail.jpg"]', 1, 80);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Slide Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 237621, 308907, 26, N'Dép UTH Shoes Comfort Slide với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-slide-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-slide-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-slide-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-trng-trắng-detail.jpg"]', 1, 83);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Slide Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 216922, 281998, 23, N'Dép UTH Shoes Comfort Slide với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-slide-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-slide-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-slide-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 52);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Slide Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 334853, 435308, 39, N'Dép UTH Shoes Comfort Slide với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-slide-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-slide-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-slide-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-d-dỏ-detail.jpg"]', 1, 94);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Slide Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 242717, 315532, 38, N'Dép UTH Shoes Comfort Slide với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-slide-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-slide-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-slide-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-slide-mu-xanh-l-xanh lá-detail.jpg"]', 1, 96);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Flip Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 340984, 443279, 29, N'Dép UTH Shoes Comfort Flip với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-flip-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-flip-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-flip-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-den-den-detail.jpg"]', 1, 69);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Flip Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 282744, 367567, 35, N'Dép UTH Shoes Comfort Flip với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-flip-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-flip-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-flip-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-trng-trắng-detail.jpg"]', 1, 88);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Flip Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 344369, 447679, 41, N'Dép UTH Shoes Comfort Flip với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-flip-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-flip-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-flip-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 84);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Flip Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 286018, 371823, 22, N'Dép UTH Shoes Comfort Flip với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-flip-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-flip-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-flip-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-d-dỏ-detail.jpg"]', 1, 84);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Flip Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 296541, 385503, 22, N'Dép UTH Shoes Comfort Flip với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-flip-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-flip-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-flip-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-flip-mu-xanh-l-xanh lá-detail.jpg"]', 1, 98);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Sport Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 242028, 314636, 25, N'Dép UTH Shoes Comfort Sport với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-sport-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-sport-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-sport-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-den-den-detail.jpg"]', 1, 82);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Sport Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 225450, 293085, 40, N'Dép UTH Shoes Comfort Sport với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-sport-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-sport-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-sport-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-trng-trắng-detail.jpg"]', 1, 60);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Sport Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 273147, 355091, 28, N'Dép UTH Shoes Comfort Sport với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-sport-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-sport-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-sport-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 57);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Sport Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 318907, 414579, 20, N'Dép UTH Shoes Comfort Sport với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-sport-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-sport-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-sport-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-d-dỏ-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Sport Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 328329, 426827, 27, N'Dép UTH Shoes Comfort Sport với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-sport-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-sport-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-sport-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-sport-mu-xanh-l-xanh lá-detail.jpg"]', 1, 92);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Home Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 329981, 428975, 44, N'Dép UTH Shoes Comfort Home với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-home-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-home-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-home-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-home-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-den-den-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Home Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 250778, 326011, 30, N'Dép UTH Shoes Comfort Home với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-home-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-home-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-home-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-home-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-trng-trắng-detail.jpg"]', 1, 58);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Home Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 205062, 266580, 34, N'Dép UTH Shoes Comfort Home với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-home-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-home-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-home-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 84);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Home Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 340662, 442860, 30, N'Dép UTH Shoes Comfort Home với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-home-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-home-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-home-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-home-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-d-dỏ-detail.jpg"]', 1, 86);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Home Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 206036, 267846, 33, N'Dép UTH Shoes Comfort Home với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-home-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-home-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-home-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-home-mu-xanh-l-xanh lá-detail.jpg"]', 1, 80);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Beach Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 332051, 431666, 43, N'Dép UTH Shoes Comfort Beach với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-beach-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-beach-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-beach-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-den-den-detail.jpg"]', 1, 74);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Beach Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 239421, 311247, 43, N'Dép UTH Shoes Comfort Beach với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-beach-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-beach-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-beach-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-trng-trắng-detail.jpg"]', 1, 92);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Beach Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 218600, 284180, 31, N'Dép UTH Shoes Comfort Beach với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-beach-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-beach-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-beach-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 60);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Beach Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 256277, 333160, 32, N'Dép UTH Shoes Comfort Beach với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-beach-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-beach-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-beach-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-d-dỏ-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Beach Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 291191, 378548, 43, N'Dép UTH Shoes Comfort Beach với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-beach-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-beach-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-beach-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-beach-mu-xanh-l-xanh lá-detail.jpg"]', 1, 92);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Pool Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 232045, 301658, 20, N'Dép UTH Shoes Comfort Pool với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-pool-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-pool-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-pool-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-den-den-detail.jpg"]', 1, 95);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Pool Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 299092, 388819, 41, N'Dép UTH Shoes Comfort Pool với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-pool-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-pool-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-pool-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-trng-trắng-detail.jpg"]', 1, 67);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Pool Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 262401, 341121, 28, N'Dép UTH Shoes Comfort Pool với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-pool-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-pool-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-pool-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 97);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Pool Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 291386, 378801, 26, N'Dép UTH Shoes Comfort Pool với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-pool-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-pool-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-pool-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-d-dỏ-detail.jpg"]', 1, 85);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Pool Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 242007, 314609, 30, N'Dép UTH Shoes Comfort Pool với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-pool-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-pool-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-pool-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-pool-mu-xanh-l-xanh lá-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Garden Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 347430, 451659, 41, N'Dép UTH Shoes Comfort Garden với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-garden-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-garden-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-garden-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-den-den-detail.jpg"]', 1, 95);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Garden Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 295513, 384166, 40, N'Dép UTH Shoes Comfort Garden với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-garden-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-garden-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-garden-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-trng-trắng-detail.jpg"]', 1, 69);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Garden Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 203948, 265132, 37, N'Dép UTH Shoes Comfort Garden với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-garden-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-garden-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-garden-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 67);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Garden Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 267685, 347990, 28, N'Dép UTH Shoes Comfort Garden với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-garden-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-garden-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-garden-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-d-dỏ-detail.jpg"]', 1, 93);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Garden Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 249716, 324630, 29, N'Dép UTH Shoes Comfort Garden với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-garden-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-garden-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-garden-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-garden-mu-xanh-l-xanh lá-detail.jpg"]', 1, 95);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Kitchen Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 223405, 290426, 38, N'Dép UTH Shoes Comfort Kitchen với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-kitchen-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-den-den-detail.jpg"]', 1, 70);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Kitchen Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 259943, 337925, 32, N'Dép UTH Shoes Comfort Kitchen với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-kitchen-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-trng-trắng-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Kitchen Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 347370, 451581, 34, N'Dép UTH Shoes Comfort Kitchen với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Kitchen Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 294860, 383318, 24, N'Dép UTH Shoes Comfort Kitchen với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-kitchen-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-d-dỏ-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Kitchen Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 323300, 420290, 39, N'Dép UTH Shoes Comfort Kitchen với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-kitchen-mu-xanh-l-xanh lá-detail.jpg"]', 1, 93);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bathroom Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 259491, 337338, 41, N'Dép UTH Shoes Comfort Bathroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-bathroom-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-den-den-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bathroom Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 274949, 357433, 36, N'Dép UTH Shoes Comfort Bathroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-bathroom-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-trng-trắng-detail.jpg"]', 1, 68);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bathroom Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 287803, 374143, 31, N'Dép UTH Shoes Comfort Bathroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 75);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bathroom Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 342469, 445209, 37, N'Dép UTH Shoes Comfort Bathroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-bathroom-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-d-dỏ-detail.jpg"]', 1, 91);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bathroom Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 255304, 331895, 27, N'Dép UTH Shoes Comfort Bathroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-bathroom-mu-xanh-l-xanh lá-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Living Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 336247, 437121, 30, N'Dép UTH Shoes Comfort Living với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-living-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-living-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-living-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-living-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-den-den-detail.jpg"]', 1, 89);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Living Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 345013, 448516, 30, N'Dép UTH Shoes Comfort Living với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-living-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-living-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-living-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-living-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-trng-trắng-detail.jpg"]', 1, 67);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Living Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 284256, 369532, 24, N'Dép UTH Shoes Comfort Living với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-living-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-living-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-living-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 87);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Living Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 298898, 388567, 34, N'Dép UTH Shoes Comfort Living với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-living-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-living-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-living-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-living-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-d-dỏ-detail.jpg"]', 1, 92);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Living Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 273701, 355811, 28, N'Dép UTH Shoes Comfort Living với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-living-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-living-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-living-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-living-mu-xanh-l-xanh lá-detail.jpg"]', 1, 82);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bedroom Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 216158, 281005, 37, N'Dép UTH Shoes Comfort Bedroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-bedroom-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-den-den-detail.jpg"]', 1, 63);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bedroom Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 348202, 452662, 20, N'Dép UTH Shoes Comfort Bedroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-bedroom-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-trng-trắng-detail.jpg"]', 1, 52);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bedroom Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 277902, 361272, 38, N'Dép UTH Shoes Comfort Bedroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 61);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bedroom Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 258653, 336248, 28, N'Dép UTH Shoes Comfort Bedroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-bedroom-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-d-dỏ-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Bedroom Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 347191, 451348, 25, N'Dép UTH Shoes Comfort Bedroom với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-bedroom-mu-xanh-l-xanh lá-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Balcony Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 332782, 432616, 27, N'Dép UTH Shoes Comfort Balcony với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-balcony-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-den-den-detail.jpg"]', 1, 81);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Balcony Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 324989, 422485, 20, N'Dép UTH Shoes Comfort Balcony với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-balcony-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-trng-trắng-detail.jpg"]', 1, 71);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Balcony Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 234323, 304619, 41, N'Dép UTH Shoes Comfort Balcony với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 69);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Balcony Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 219321, 285117, 34, N'Dép UTH Shoes Comfort Balcony với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-balcony-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-d-dỏ-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Balcony Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 229806, 298747, 37, N'Dép UTH Shoes Comfort Balcony với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-balcony-mu-xanh-l-xanh lá-detail.jpg"]', 1, 98);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Terrace Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 320598, 416777, 21, N'Dép UTH Shoes Comfort Terrace với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-terrace-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-den-den-detail.jpg"]', 1, 50);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Terrace Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 307865, 400224, 39, N'Dép UTH Shoes Comfort Terrace với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-terrace-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-trng-trắng-detail.jpg"]', 1, 57);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Terrace Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 243717, 316832, 42, N'Dép UTH Shoes Comfort Terrace với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 99);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Terrace Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 270116, 351150, 35, N'Dép UTH Shoes Comfort Terrace với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-terrace-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-d-dỏ-detail.jpg"]', 1, 86);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Terrace Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 333224, 433191, 38, N'Dép UTH Shoes Comfort Terrace với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-terrace-mu-xanh-l-xanh lá-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Patio Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 231886, 301451, 40, N'Dép UTH Shoes Comfort Patio với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-patio-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-patio-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-patio-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-den-den-detail.jpg"]', 1, 58);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Patio Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 335635, 436325, 38, N'Dép UTH Shoes Comfort Patio với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-patio-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-patio-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-patio-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-trng-trắng-detail.jpg"]', 1, 53);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Patio Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 322801, 419641, 25, N'Dép UTH Shoes Comfort Patio với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-patio-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-patio-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-patio-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 67);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Patio Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 218987, 284683, 41, N'Dép UTH Shoes Comfort Patio với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-patio-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-patio-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-patio-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-d-dỏ-detail.jpg"]', 1, 94);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Patio Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 251844, 327397, 37, N'Dép UTH Shoes Comfort Patio với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-patio-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-patio-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-patio-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-patio-mu-xanh-l-xanh lá-detail.jpg"]', 1, 98);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Deck Màu Đen', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 332536, 432296, 21, N'Dép UTH Shoes Comfort Deck với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đen dễ thương.', N'/images/products/dp-uth-shoes-comfort-deck-mu-den-den-main.jpg', N'["/images/products/dp-uth-shoes-comfort-deck-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-den-den-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-deck-mu-den-den-main.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-den-den-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-den-den-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-den-den-detail.jpg"]', 1, 90);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Deck Màu Trắng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 232481, 302225, 25, N'Dép UTH Shoes Comfort Deck với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Trắng dễ thương.', N'/images/products/dp-uth-shoes-comfort-deck-mu-trng-trắng-main.jpg', N'["/images/products/dp-uth-shoes-comfort-deck-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-trng-trắng-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-deck-mu-trng-trắng-main.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-trng-trắng-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-trng-trắng-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-trng-trắng-detail.jpg"]', 1, 70);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Deck Màu Xanh dương', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 292111, 379744, 25, N'Dép UTH Shoes Comfort Deck với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh dương dễ thương.', N'/images/products/dp-uth-shoes-comfort-deck-mu-xanh-duong-xanh dương-main.jpg', N'["/images/products/dp-uth-shoes-comfort-deck-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-duong-xanh dương-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-deck-mu-xanh-duong-xanh dương-main.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-duong-xanh dương-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-duong-xanh dương-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-duong-xanh dương-detail.jpg"]', 1, 63);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Deck Màu Đỏ', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 340803, 443043, 32, N'Dép UTH Shoes Comfort Deck với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Đỏ dễ thương.', N'/images/products/dp-uth-shoes-comfort-deck-mu-d-dỏ-main.jpg', N'["/images/products/dp-uth-shoes-comfort-deck-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-d-dỏ-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-deck-mu-d-dỏ-main.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-d-dỏ-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-d-dỏ-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-d-dỏ-detail.jpg"]', 1, 98);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Dép UTH Shoes Comfort Deck Màu Xanh lá', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Dép'), 313707, 407819, 27, N'Dép UTH Shoes Comfort Deck với đế mềm và thiết kế hiện đại, phù hợp cho mọi lứa tuổi. Màu Xanh lá dễ thương.', N'/images/products/dp-uth-shoes-comfort-deck-mu-xanh-l-xanh lá-main.jpg', N'["/images/products/dp-uth-shoes-comfort-deck-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-l-xanh lá-detail.jpg"]', N'["/images/products/dp-uth-shoes-comfort-deck-mu-xanh-l-xanh lá-main.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-l-xanh lá-side.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-l-xanh lá-top.jpg","/images/products/dp-uth-shoes-comfort-deck-mu-xanh-l-xanh lá-detail.jpg"]', 1, 59);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Princess Màu Vàng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 414576, 518220, 21, N'Giày Búp Bê UTH Shoes Princess với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Vàng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-princess-mu-vng-vàng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-vng-vàng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-vng-vàng-main.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-vng-vàng-detail.jpg"]', 1, 55);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Princess Màu Hồng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 531821, 664776, 29, N'Giày Búp Bê UTH Shoes Princess với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Hồng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-princess-mu-hng-hồng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-hng-hồng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-hng-hồng-main.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-hng-hồng-detail.jpg"]', 1, 68);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Princess Màu Nâu', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 450772, 563465, 33, N'Giày Búp Bê UTH Shoes Princess với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Nâu nữ tính.', N'/images/products/giy-bp-be-uth-shoes-princess-mu-nau-nâu-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-nau-nâu-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-nau-nâu-main.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-nau-nâu-detail.jpg"]', 1, 52);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Princess Màu Xám', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 437575, 546968, 26, N'Giày Búp Bê UTH Shoes Princess với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Xám nữ tính.', N'/images/products/giy-bp-be-uth-shoes-princess-mu-xm-xám-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-xm-xám-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-xm-xám-main.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-xm-xám-detail.jpg"]', 1, 80);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Princess Màu Tím', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 542125, 677656, 34, N'Giày Búp Bê UTH Shoes Princess với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Tím nữ tính.', N'/images/products/giy-bp-be-uth-shoes-princess-mu-tm-tím-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-tm-tím-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-princess-mu-tm-tím-main.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-princess-mu-tm-tím-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Queen Màu Vàng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 408221, 510276, 27, N'Giày Búp Bê UTH Shoes Queen với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Vàng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-queen-mu-vng-vàng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-vng-vàng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-vng-vàng-main.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-vng-vàng-detail.jpg"]', 1, 65);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Queen Màu Hồng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 561335, 701668, 37, N'Giày Búp Bê UTH Shoes Queen với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Hồng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-queen-mu-hng-hồng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-hng-hồng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-hng-hồng-main.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-hng-hồng-detail.jpg"]', 1, 82);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Queen Màu Nâu', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 442171, 552713, 31, N'Giày Búp Bê UTH Shoes Queen với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Nâu nữ tính.', N'/images/products/giy-bp-be-uth-shoes-queen-mu-nau-nâu-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-nau-nâu-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-nau-nâu-main.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-nau-nâu-detail.jpg"]', 1, 83);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Queen Màu Xám', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 562312, 702890, 20, N'Giày Búp Bê UTH Shoes Queen với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Xám nữ tính.', N'/images/products/giy-bp-be-uth-shoes-queen-mu-xm-xám-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-xm-xám-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-xm-xám-main.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-xm-xám-detail.jpg"]', 1, 67);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Queen Màu Tím', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 444714, 555892, 23, N'Giày Búp Bê UTH Shoes Queen với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Tím nữ tính.', N'/images/products/giy-bp-be-uth-shoes-queen-mu-tm-tím-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-tm-tím-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-queen-mu-tm-tím-main.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-queen-mu-tm-tím-detail.jpg"]', 1, 89);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Angel Màu Vàng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 508447, 635558, 32, N'Giày Búp Bê UTH Shoes Angel với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Vàng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-angel-mu-vng-vàng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-vng-vàng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-vng-vàng-main.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-vng-vàng-detail.jpg"]', 1, 77);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Angel Màu Hồng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 551591, 689488, 22, N'Giày Búp Bê UTH Shoes Angel với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Hồng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-angel-mu-hng-hồng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-hng-hồng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-hng-hồng-main.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-hng-hồng-detail.jpg"]', 1, 56);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Angel Màu Nâu', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 528022, 660027, 38, N'Giày Búp Bê UTH Shoes Angel với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Nâu nữ tính.', N'/images/products/giy-bp-be-uth-shoes-angel-mu-nau-nâu-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-nau-nâu-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-nau-nâu-main.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-nau-nâu-detail.jpg"]', 1, 70);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Angel Màu Xám', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 565153, 706441, 21, N'Giày Búp Bê UTH Shoes Angel với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Xám nữ tính.', N'/images/products/giy-bp-be-uth-shoes-angel-mu-xm-xám-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-xm-xám-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-xm-xám-main.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-xm-xám-detail.jpg"]', 1, 97);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Angel Màu Tím', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 478731, 598413, 27, N'Giày Búp Bê UTH Shoes Angel với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Tím nữ tính.', N'/images/products/giy-bp-be-uth-shoes-angel-mu-tm-tím-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-tm-tím-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-angel-mu-tm-tím-main.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-angel-mu-tm-tím-detail.jpg"]', 1, 94);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Fairy Màu Vàng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 557810, 697262, 31, N'Giày Búp Bê UTH Shoes Fairy với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Vàng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-fairy-mu-vng-vàng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-vng-vàng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-vng-vàng-main.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-vng-vàng-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Fairy Màu Hồng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 458373, 572966, 22, N'Giày Búp Bê UTH Shoes Fairy với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Hồng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-fairy-mu-hng-hồng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-hng-hồng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-hng-hồng-main.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-hng-hồng-detail.jpg"]', 1, 84);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Fairy Màu Nâu', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 417673, 522091, 29, N'Giày Búp Bê UTH Shoes Fairy với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Nâu nữ tính.', N'/images/products/giy-bp-be-uth-shoes-fairy-mu-nau-nâu-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-nau-nâu-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-nau-nâu-main.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-nau-nâu-detail.jpg"]', 1, 55);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Fairy Màu Xám', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 591632, 739540, 25, N'Giày Búp Bê UTH Shoes Fairy với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Xám nữ tính.', N'/images/products/giy-bp-be-uth-shoes-fairy-mu-xm-xám-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-xm-xám-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-xm-xám-main.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-xm-xám-detail.jpg"]', 1, 53);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Fairy Màu Tím', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 491212, 614015, 37, N'Giày Búp Bê UTH Shoes Fairy với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Tím nữ tính.', N'/images/products/giy-bp-be-uth-shoes-fairy-mu-tm-tím-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-tm-tím-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-fairy-mu-tm-tím-main.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-fairy-mu-tm-tím-detail.jpg"]', 1, 54);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Star Màu Vàng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 448578, 560722, 30, N'Giày Búp Bê UTH Shoes Star với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Vàng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-star-mu-vng-vàng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-star-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-vng-vàng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-star-mu-vng-vàng-main.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-vng-vàng-detail.jpg"]', 1, 60);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Star Màu Hồng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 566542, 708177, 39, N'Giày Búp Bê UTH Shoes Star với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Hồng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-star-mu-hng-hồng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-star-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-hng-hồng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-star-mu-hng-hồng-main.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-hng-hồng-detail.jpg"]', 1, 72);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Star Màu Nâu', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 420067, 525083, 21, N'Giày Búp Bê UTH Shoes Star với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Nâu nữ tính.', N'/images/products/giy-bp-be-uth-shoes-star-mu-nau-nâu-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-star-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-nau-nâu-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-star-mu-nau-nâu-main.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-nau-nâu-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-nau-nâu-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-nau-nâu-detail.jpg"]', 1, 50);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Star Màu Xám', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 551674, 689592, 25, N'Giày Búp Bê UTH Shoes Star với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Xám nữ tính.', N'/images/products/giy-bp-be-uth-shoes-star-mu-xm-xám-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-star-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-xm-xám-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-star-mu-xm-xám-main.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-xm-xám-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-xm-xám-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-xm-xám-detail.jpg"]', 1, 98);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Star Màu Tím', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 514108, 642635, 34, N'Giày Búp Bê UTH Shoes Star với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Tím nữ tính.', N'/images/products/giy-bp-be-uth-shoes-star-mu-tm-tím-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-star-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-tm-tím-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-star-mu-tm-tím-main.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-tm-tím-side.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-tm-tím-top.jpg","/images/products/giy-bp-be-uth-shoes-star-mu-tm-tím-detail.jpg"]', 1, 86);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Moon Màu Vàng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 552237, 690296, 26, N'Giày Búp Bê UTH Shoes Moon với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Vàng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-moon-mu-vng-vàng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-moon-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-vng-vàng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-moon-mu-vng-vàng-main.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-vng-vàng-side.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-vng-vàng-top.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-vng-vàng-detail.jpg"]', 1, 64);
INSERT INTO [dbo].[Products] ([Name], [BrandID], [CategoryID], [Price], [OriginalPrice], [Discount], [Description], [MainImage], [ThumbnailImages], [DetailImages], [InStock], [StockQuantity])
VALUES (N'Giày Búp Bê UTH Shoes Moon Màu Hồng', (SELECT [BrandID] FROM [dbo].[Brands] WHERE [Name] = N'UTH Shoes'), (SELECT [CategoryID] FROM [dbo].[Categories] WHERE [Name] = N'Giày búp bê'), 569861, 712326, 23, N'Giày Búp Bê UTH Shoes Moon với thiết kế dễ thương, phù hợp cho các cô gái trẻ. Màu Hồng nữ tính.', N'/images/products/giy-bp-be-uth-shoes-moon-mu-hng-hồng-main.jpg', N'["/images/products/giy-bp-be-uth-shoes-moon-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-hng-hồng-detail.jpg"]', N'["/images/products/giy-bp-be-uth-shoes-moon-mu-hng-hồng-main.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-hng-hồng-side.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-hng-hồng-top.jpg","/images/products/giy-bp-be-uth-shoes-moon-mu-hng-hồng-detail.jpg"]', 1, 75);