Menu
×
×
Correct!
Exercise:Select all customers where the ('Norway', 'Sweden', 'Denmark')
SELECT * FROM customers
WHERE country @(34);
SELECT * FROM customers
WHERE country IN ('Norway', 'Sweden', 'Denmark');
SELECT * FROM customers
WHERE country IN ('Norway','Sweden','Denmark');
SELECT * FROM customers
WHERE country IN ('Norway', 'Sweden','Denmark');
SELECT * FROM customers
WHERE country IN ('Norway','Sweden', 'Denmark');
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 41 exercises.
Are you sure you want to continue?