Write the correct SQL statement to select all records from the customers
table where the city
value is "Berlin".
SELECT * FROM customers
@(21);
SELECT * FROM customers
WHERE city = 'Berlin';
SELECT * FROM customers
WHERE city ='Berlin';
SELECT * FROM customers
WHERE city = 'Berlin';
SELECT * FROM customers
WHERE city ='Berlin';
SELECT * FROM customers
WHERE city LIKE 'Berlin';
SELECT * FROM customers
WHERE city='Berlin';