Contenido del Curso
Introducción a SQL
Introducción a SQL
Ordenar por Múltiples Columnas
También podemos ordenar por múltiples columnas. Necesitamos especificar los nombres de las columnas separados por comas. Veamos el ejemplo que recupera tres columnas y ordena los resultados por dos de ellas: primero por population
y luego 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
.
¡Gracias por tus comentarios!
Ordenar por Múltiples Columnas
También podemos ordenar por múltiples columnas. Necesitamos especificar los nombres de las columnas separados por comas. Veamos el ejemplo que recupera tres columnas y ordena los resultados por dos de ellas: primero por population
y luego 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
.
¡Gracias por tus comentarios!
Ordenar por Múltiples Columnas
También podemos ordenar por múltiples columnas. Necesitamos especificar los nombres de las columnas separados por comas. Veamos el ejemplo que recupera tres columnas y ordena los resultados por dos de ellas: primero por population
y luego 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
.
¡Gracias por tus comentarios!
También podemos ordenar por múltiples columnas. Necesitamos especificar los nombres de las columnas separados por comas. Veamos el ejemplo que recupera tres columnas y ordena los resultados por dos de ellas: primero por population
y luego 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
.