Skip to content

Instantly share code, notes, and snippets.

@mdang
Created January 25, 2017 16:04
Show Gist options
  • Select an option

  • Save mdang/9a4a8063ebea3b829b8025746643ade1 to your computer and use it in GitHub Desktop.

Select an option

Save mdang/9a4a8063ebea3b829b8025746643ade1 to your computer and use it in GitHub Desktop.
Exercise: World Lab (MySQL)

World Lab (MySQL)

This lab requires the sample world database found here: https://dev.mysql.com/doc/index-other.html

Let's learn a few things about this crazy world!

Here's a model of what you now have loaded in the world database. The first row is the table name, the second is the primary key and finally the remaining are any additional attributes.

Exercises

  • Using count, get the number of cities in the USA
  • Find out what the population and average life expectancy for people in Argentina (ARG) is
  • Using IS NOT NULL, ORDER BY, LIMIT, what country has the highest life expectancy?
  • Using LEFT JOIN, ON, what is the capital of Spain (ESP)?
  • Using LEFT JOIN, ON, list all the languages spoken in the 'Southeast Asia' region

BONUS

  • Select 25 cities around the world that start with the letter 'F' in a single SQL query.
@Kolasql
Copy link

Kolasql commented Jan 16, 2023

Hey Dear,

You can try out this code for the life expectancy below 50

SELECT Name, LifeExpectancy
FROM country
WHERE LifeExpectancy > 50;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment