0% found this document useful (0 votes)
5 views1 page

32. Lec 32 Create Table

The document outlines the creation of a 'Products' table in a database, including fields for product details such as ID, name, category, price, stock quantity, supplier, and rating. It also includes sample data insertion for ten products across various categories like electronics, furniture, and accessories. Each product entry includes specific attributes such as price and rating.

Uploaded by

koulibalyhamam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

32. Lec 32 Create Table

The document outlines the creation of a 'Products' table in a database, including fields for product details such as ID, name, category, price, stock quantity, supplier, and rating. It also includes sample data insertion for ten products across various categories like electronics, furniture, and accessories. Each product entry includes specific attributes such as price and rating.

Uploaded by

koulibalyhamam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

-- Create the Products table

CREATE TABLE Products (


ProductID INT PRIMARY KEY,
ProductName VARCHAR(50),
Category VARCHAR(20),
Price DECIMAL(10, 2),
StockQuantity INT,
Supplier VARCHAR(50),
Rating DECIMAL(3, 1)
);

-- Insert data into the Products table


INSERT INTO Products (ProductID, ProductName, Category, Price, StockQuantity,
Supplier, Rating) VALUES
(1, 'Wireless Mouse', 'Electronics', 25.99, 150, 'Tech Supplies', 4.5),
(2, 'Office Chair', 'Furniture', 120.00, 85, 'Comfort Co', 4.7),
(3, 'Water Bottle', 'Accessories', 15.00, 250, 'AquaGear', 4.3),
(4, 'Laptop Backpack', 'Accessories', 45.99, 200, 'GearUp', 4.6),
(5, 'Gaming Laptop', 'Electronics', 999.99, 45, 'Tech Supplies', 4.8),
(6, 'Desk Lamp', 'Furniture', 35.00, 120, 'LightHouse', 4.2),
(7, 'Bluetooth Speaker', 'Electronics', 59.99, 95, 'SoundWave', 4.4),
(8, 'Standing Desk', 'Furniture', 250.00, 50, 'Comfort Co', 4.9),
(9, 'Fitness Tracker', 'Electronics', 129.99, 180, 'FitTech', 4.7),
(10, 'Coffee Mug', 'Accessories', 9.99, 300, 'MugMasters', 4.1);

You might also like