Зміст курсу
Вступ до SQL
Вступ до SQL
Використання оператора NOT
Щоб скасувати умову, потрібно використовувати ключове слово NOT
. Спочатку розглянемо приклад:
SELECT name, capital FROM country WHERE NOT continent='Asia';
Пояснення: Оператор NOT
відхиляє умову тут; отже, він співставляє континент з чимось, що не є Азією.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the name
and capital
columns from the country
table (please retrieve these columns in this order). These countries must be not from the 'South America' continent
.
Note
Pay attention to the fact that the names of the continents begin with a capital letter and not a lowercase one; this is very important.
Дякуємо за ваш відгук!
Використання оператора NOT
Щоб скасувати умову, потрібно використовувати ключове слово NOT
. Спочатку розглянемо приклад:
SELECT name, capital FROM country WHERE NOT continent='Asia';
Пояснення: Оператор NOT
відхиляє умову тут; отже, він співставляє континент з чимось, що не є Азією.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the name
and capital
columns from the country
table (please retrieve these columns in this order). These countries must be not from the 'South America' continent
.
Note
Pay attention to the fact that the names of the continents begin with a capital letter and not a lowercase one; this is very important.
Дякуємо за ваш відгук!