Conteúdo do Curso
Introdução ao SQL
Introdução ao SQL
Ordenação por Múltiplas Colunas
Também podemos classificar por várias colunas. Precisamos especificar os nomes das colunas separados por vírgulas. Vamos ver o exemplo que recupera três colunas e classifica os resultados por duas delas: primeiro por population
e depois por 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
.
Obrigado pelo seu feedback!
Ordenação por Múltiplas Colunas
Também podemos classificar por várias colunas. Precisamos especificar os nomes das colunas separados por vírgulas. Vamos ver o exemplo que recupera três colunas e classifica os resultados por duas delas: primeiro por population
e depois por 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
.
Obrigado pelo seu feedback!
Ordenação por Múltiplas Colunas
Também podemos classificar por várias colunas. Precisamos especificar os nomes das colunas separados por vírgulas. Vamos ver o exemplo que recupera três colunas e classifica os resultados por duas delas: primeiro por population
e depois por 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
.
Obrigado pelo seu feedback!
Também podemos classificar por várias colunas. Precisamos especificar os nomes das colunas separados por vírgulas. Vamos ver o exemplo que recupera três colunas e classifica os resultados por duas delas: primeiro por population
e depois por 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
.