Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Find the Regions in Which All Countries Are Located | Retrieving Data
Introduction to SQL

book
Challenge: Find the Regions in Which All Countries Are Located

Here is the country table we are working with:

Task

Swipe to start coding

Write an SQL query to retrieve 4 unique region values from the country table.

Solution

SELECT DISTINCT region
FROM country
LIMIT 4;

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 10

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