k1
k1
customer table have cid,first name ,last name,email and order table
got oid,cid,order date and total amount creat 2 table
CREATE DATABASE databasename;
UPDATE Customers
SET ContactName = 'Alfred Schmidt', City= 'Frankfurt'
WHERE CustomerID = 1;
Select all customers from Spain that starts with the letter 'G':
SELECT *
FROM Customers
WHERE Country = 'Spain' AND CustomerName LIKE 'G%';