Зміст курсу
Вступ до SQL
Вступ до SQL
Використання оператора AND
Щоб фільтрувати за кількома стовпцями, ви повинні використовувати оператор AND
, щоб додати умови до клаузи WHERE
. Давайте розглянемо приклад:
SELECT name, population, region FROM country WHERE population >= 1000000 AND continent ='Europe';
Цей запит отримує лише ті рядки, які відповідають обом умовам: країни, де населення більше або дорівнює 1,000,000 і континент - Європа.
Here is the country
table we are working with:
Swipe to show code editor
From the country
table, retrieve only countries' names (column name
) from Asia
(can be checked in column continent
) with a population greater than 1000000
(can be checked in column population
).
Дякуємо за ваш відгук!
Використання оператора AND
Щоб фільтрувати за кількома стовпцями, ви повинні використовувати оператор AND
, щоб додати умови до клаузи WHERE
. Давайте розглянемо приклад:
SELECT name, population, region FROM country WHERE population >= 1000000 AND continent ='Europe';
Цей запит отримує лише ті рядки, які відповідають обом умовам: країни, де населення більше або дорівнює 1,000,000 і континент - Європа.
Here is the country
table we are working with:
Swipe to show code editor
From the country
table, retrieve only countries' names (column name
) from Asia
(can be checked in column continent
) with a population greater than 1000000
(can be checked in column population
).
Дякуємо за ваш відгук!