What does SELECT * FROM Customers; do?
Retrieves all columns and rows from the Customers table.
Write an SQL query to find customers in ‘London’.
SELECT * FROM Customers WHERE City = ‘London’;
What does UPDATE do in SQL?
Modifies existing data in a table.
What does DELETE FROM Orders WHERE OrderID = 101; do?
Deletes the order with OrderID 101 from the Orders table.
What does JOIN do in SQL?
Combines rows from two or more tables based on a related column.