Зміст курсу
Вступ до SQL
Вступ до SQL
Перевірка діапазону значень
Щоб перевірити діапазон значень, ми повинні використовувати оператор BETWEEN
. Цей оператор вимагає два значення: початкове значення та кінцеве значення діапазону. Також, ключове слово AND
повинно бути розміщене між цими значеннями.
Давайте розглянемо приклад:
SELECT name, population FROM country WHERE population BETWEEN 100000 AND 3000000;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query that returns the name
, capital
, and population
columns from the country
table (please retrieve these columns in this order), for all countries with a population
between 6000000 and 80000000. Then sort the result by capital
from A to Z.
Дякуємо за ваш відгук!
Перевірка діапазону значень
Щоб перевірити діапазон значень, ми повинні використовувати оператор BETWEEN
. Цей оператор вимагає два значення: початкове значення та кінцеве значення діапазону. Також, ключове слово AND
повинно бути розміщене між цими значеннями.
Давайте розглянемо приклад:
SELECT name, population FROM country WHERE population BETWEEN 100000 AND 3000000;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query that returns the name
, capital
, and population
columns from the country
table (please retrieve these columns in this order), for all countries with a population
between 6000000 and 80000000. Then sort the result by capital
from A to Z.
Дякуємо за ваш відгук!
Перевірка діапазону значень
Щоб перевірити діапазон значень, ми повинні використовувати оператор BETWEEN
. Цей оператор вимагає два значення: початкове значення та кінцеве значення діапазону. Також, ключове слово AND
повинно бути розміщене між цими значеннями.
Давайте розглянемо приклад:
SELECT name, population FROM country WHERE population BETWEEN 100000 AND 3000000;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query that returns the name
, capital
, and population
columns from the country
table (please retrieve these columns in this order), for all countries with a population
between 6000000 and 80000000. Then sort the result by capital
from A to Z.
Дякуємо за ваш відгук!
Щоб перевірити діапазон значень, ми повинні використовувати оператор BETWEEN
. Цей оператор вимагає два значення: початкове значення та кінцеве значення діапазону. Також, ключове слово AND
повинно бути розміщене між цими значеннями.
Давайте розглянемо приклад:
SELECT name, population FROM country WHERE population BETWEEN 100000 AND 3000000;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query that returns the name
, capital
, and population
columns from the country
table (please retrieve these columns in this order), for all countries with a population
between 6000000 and 80000000. Then sort the result by capital
from A to Z.