-- SELECT query: Retrieve all customers from Pakistan
SELECT * FROM Customers WHERE Country='Pakistan';
-- UPDATE query
UPDATE Customers SET Country='Canada' WHERE Country='Pakistan';
-- INSERT query: Insert a new row into the Customers table
INSERT INTO Customers ( Country) VALUES ('Pakistan');
-- DELETE query: Delete customers from Pakistan
DELETE FROM Customers WHERE Country='Pakistan';