-- Using IN SELECT customer_name, country FROM Customers WHERE country IN ('Germany', 'France', 'Spain'); -- The equivalent OR version SELECT customer_name, country FROM Customers WHERE country = 'Germany' OR country = 'France' OR country = 'Spain';
Click Run to execute this code.