SQL di operator dengan nilai duplikat

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