Course Content
Introduction to SQL
Introduction to SQL
1. Retrieving Data
Retrieving Individual ColumnsRetrieving Multiple Columns Retrieving All ColumnsRetrieving Distinct RowsLimiting ResultsChallenge: Find the Population of the CountriesChallenge: Find All CountriesChallenge: Find All Countries With Their IDsChallenge: Find Country CapitalsChallenge: Find the Regions in Which All Countries Are Located
2. Sorting Retrieved Data
Sorting DataChallenge: Population SortSorting by Multiple ColumnsChallenge: Dual-Sort QuerySpecifying Sort DirectionChallenge: Sort the Countries by Region and CapitalChallenge: Sort Capitals in Descending OrderChallenge: Sort Countries in Ascending OrderChallenge: Find Countries, Their IDs, and Their PopulationsChallenge: Find Countries, IDs, Populations, Regions, and Sort ThemChallenge: Find All Continents and Sort Them in Ascending Order
Challenge: Find Countries, IDs, Populations, Regions, and Sort Them
Here is the country
table we are working with:
Task
Swipe to show code editor
Write an SQL query to get all id
, name
, and population
, region
columns from the country
table (please retrieve these columns in this order). Then, sort the results first by region
from Z to A and then by population
from lowest to highest.
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 10
Challenge: Find Countries, IDs, Populations, Regions, and Sort Them
Here is the country
table we are working with:
Task
Swipe to show code editor
Write an SQL query to get all id
, name
, and population
, region
columns from the country
table (please retrieve these columns in this order). Then, sort the results first by region
from Z to A and then by population
from lowest to highest.
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 10
Switch to desktop for real-world practiceContinue from where you are using one of the options below