Зміст курсу
Вступ до SQL
Вступ до SQL
Сортування за кількома стовпцями
Ми також можемо сортувати за декількома колонками. Нам потрібно вказати назви колонок розділені комами. Давайте розглянемо приклад, який отримує три колонки і сортує результати за двома з них: спочатку за population
, а потім за capital
.
SELECT ID, population, capital FROM country ORDER BY population, capital;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve four columns using the SELECT
statement, namely: continent
, region
, population
, and capital
(please retrieve these columns in this order). Then, sort the result by two of them: first by continent
, then by population
.
Дякуємо за ваш відгук!
Сортування за кількома стовпцями
Ми також можемо сортувати за декількома колонками. Нам потрібно вказати назви колонок розділені комами. Давайте розглянемо приклад, який отримує три колонки і сортує результати за двома з них: спочатку за population
, а потім за capital
.
SELECT ID, population, capital FROM country ORDER BY population, capital;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve four columns using the SELECT
statement, namely: continent
, region
, population
, and capital
(please retrieve these columns in this order). Then, sort the result by two of them: first by continent
, then by population
.
Дякуємо за ваш відгук!