CREATE DATABASE GroupsDb
CREATE TABLE ProductCategories (
Id INT PRIMARY KEY IDENTITY(1,1),
CategoryName NVARCHAR(255)
);
INSERT INTO ProductCategories (CategoryName) VALUES
('Electronics'),
('Mobile Phones'),
('Tablets'),
('Laptops'),
('Desktops'),
('Cameras'),
('Headphones'),
('Smartwatches'),
('Televisions'),
('Gaming Consoles'),
('Home Audio Systems'),
('Home Appliances'),
('Refrigerators'),
('Washing Machines'),
('Microwaves'),
('Ovens'),
('Vacuum Cleaners'),
('Air Conditioners'),
('Water Heaters'),
('Dishwashers'),
('Furniture'),
('Sofas'),
('Beds'),
('Tables'),
('Chairs'),
('Wardrobes'),
('Cabinets'),
('Shelves'),
('Desks'),
('Clothing and Accessories'),
('Men''s Clothing'),
('Women''s Clothing'),
('Kids'' Clothing'),
('Footwear'),
('Bags'),
('Jewelry'),
('Watches'),
('Sunglasses'),
('Beauty and Personal Care'),
('Skincare'),
('Haircare'),
('Makeup'),
('Fragrances'),
('Personal Hygiene'),
('Grooming Tools'),
('Health and Wellness'),
('Supplements'),
('Fitness Equipment'),
('Medical Devices'),
('Health Monitors'),
('First Aid Kits'),
('Toys and Games'),
('Action Figures'),
('Board Games'),
('Puzzles'),
('Educational Toys'),
('Outdoor Toys'),
('Dolls'),
('Sports and Outdoors'),
('Camping Gear'),
('Sports Equipment'),
('Bicycles'),
('Fitness Apparel'),
('Swimwear'),
('Outdoor Furniture'),
('Automotive'),
('Car Accessories'),
('Motorcycle Accessories'),
('Tires and Wheels'),
('Vehicle Electronics'),
('Maintenance and Repair'),
('Books and Media'),
('Fiction'),
('Non-Fiction'),
('eBooks'),
('Magazines'),
('Music'),
('Movies'),
('Office Supplies'),
('Stationery'),
('Office Furniture'),
('Printers'),
('Office Electronics'),
('Organizational Tools'),
('Food and Beverages'),
('Groceries'),
('Snacks'),
('Beverages'),
('Gourmet Foods'),
('Health Foods'),
('Pet Supplies'),
('Pet Food'),
('Pet Toys'),
('Pet Grooming'),
('Pet Health'),
('Garden and Outdoor'),
('Gardening Tools'),
('Outdoor Furniture'),
('Barbecues'),
('Plants and Seeds'),
('Outdoor Decor'),
('Home Decor'),
('Wall Art'),
('Lighting'),
('Rugs'),
('Curtains'),
('Clocks'),
('Decorative Accessories'),
('Baby and Kids'),
('Baby Clothing'),
('Nursery Furniture'),
('Strollers'),
('Car Seats'),
('Baby Toys');