Customers
table with columns like CustomerID
, Name
, and Email
.Customers
table representing a specific customer.Name
column in the Customers
table.CustomerID
in the Customers
table.OrderID
in the Orders
table, referencing CustomerID
in the Customers
table.Customers
, Orders
, and Products
tables.SELECT * FROM Customers WHERE CustomerID = 1;
INSERT INTO Customers (Name, Email) VALUES ('Raj', 'raj@example.com');
SELECT * FROM Customers WHERE Name = 'Raj';
UPDATE Customers SET Email = 'raj@example.com' WHERE CustomerID = 1;
DELETE FROM Customers WHERE CustomerID = 1;