SQL di operator dengan kolom

SELECT first_name, country
FROM Customers
WHERE 'USA' in (country);
SAMER SAEID