Зміст курсу
Вступ до SQL
Вступ до SQL
Використання оператора OR
Оператор OR
використовується для фільтрації записів на основі більше ніж однієї умови, наприклад, якщо ви хочете повернути всі країни з Азії, але також ті, що з Європи:
Давайте розглянемо приклад:
SELECT name, population, continent, region FROM country WHERE continent='Asia' OR continent='Europe';
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the name
of the countries that are from 'Asia' or 'North America' continent.
Note
Note that
north america
is not the same asNorth America
, andasia
is not the same asAsia
. Be careful and write correctly:North America
andAsia
.
Дякуємо за ваш відгук!
Використання оператора OR
Оператор OR
використовується для фільтрації записів на основі більше ніж однієї умови, наприклад, якщо ви хочете повернути всі країни з Азії, але також ті, що з Європи:
Давайте розглянемо приклад:
SELECT name, population, continent, region FROM country WHERE continent='Asia' OR continent='Europe';
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the name
of the countries that are from 'Asia' or 'North America' continent.
Note
Note that
north america
is not the same asNorth America
, andasia
is not the same asAsia
. Be careful and write correctly:North America
andAsia
.
Дякуємо за ваш відгук!