Menu
×
×
Correct!
Exercise:Complete the select statement so that it returns all cars with either the brand 'Ford' or the brand 'Volvo'. Hint: Use the logical
SELECT * FROM cars
WHERE brand = @(25);
SELECT * FROM cars
WHERE brand = 'Ford' OR brand = 'Volvo';
SELECT * FROM cars
WHERE brand = 'Ford' OR brand='Volvo';
SELECT * FROM cars
WHERE brand = 'Volvo' OR brand = 'Ford';
SELECT * FROM cars
WHERE brand = 'Volvo' OR brand='Ford';
SELECT * FROM cars
WHERE brand = 'Ford' OR brand LIKE 'Volvo';
SELECT * FROM cars
WHERE brand = 'Volvo' OR brand LIKE 'Ford';
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 41 exercises.
Are you sure you want to continue?