Зміст курсу
Вступ до SQL
Вступ до SQL
Оператори WHERE Clause
SQL підтримує багато умовних операторів.
Давайте розглянемо приклади:
Цей приклад перелічує всі країни, населення яких менше ніж 2424200:
SELECT name, population FROM country WHERE population < 2424200;
Наступний приклад отримує всі країни з населенням менше або дорівнює 2424200:
SELECT name, population FROM country WHERE population <= 2424200;
Наступний приклад отримує всі неазійські країни:
SELECT name, continent FROM country WHERE continent<>'Asia';
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the name
, population
, region
, and capital
columns from the country
table (please retrieve these columns in this order), returning only the countries with a region
named Southern Europe
.
Дякуємо за ваш відгук!
Оператори WHERE Clause
SQL підтримує багато умовних операторів.
Давайте розглянемо приклади:
Цей приклад перелічує всі країни, населення яких менше ніж 2424200:
SELECT name, population FROM country WHERE population < 2424200;
Наступний приклад отримує всі країни з населенням менше або дорівнює 2424200:
SELECT name, population FROM country WHERE population <= 2424200;
Наступний приклад отримує всі неазійські країни:
SELECT name, continent FROM country WHERE continent<>'Asia';
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the name
, population
, region
, and capital
columns from the country
table (please retrieve these columns in this order), returning only the countries with a region
named Southern Europe
.
Дякуємо за ваш відгук!