Use the IN
operator to select all the records where Country
is either "Norway" or "France".
SELECT * FROM Customers
@(16)
@(10) 'France'@(1);
SELECT * FROM Customers
WHERE Country IN
('Norway', 'France');
SELECT * FROM Customers
WHERE Country IN
("Norway", 'France');