Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Desafío: Ordenar Capitales en Orden Descendente | Ordenar Datos Recuperados
Introducción a SQL

book
Desafío: Ordenar Capitales en Orden Descendente

Here is the country table we are working with:

Tarea

Swipe to start coding

Write an SQL query to retrieve all capital values from the country table, and display the results sorted in descending order.

Solución

SELECT capital
FROM country
ORDER BY capital DESC;
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 2. Capítulo 7

toggle bottom row
Query ResultQuery Result
No query executed yet...
some-alt