Only output some columns

The world table has many columns, so we might need to scroll horizontally to see them all in the result pane. And easier way would be to restrict the output to only what we need. This can be achieved by specifying columns in the SELECT clause.

Change the select below to only list the name and population of each country.

SELECT name, population FROM world

The "Next exercise" button will only light up once you run the correct query and get the correct result. Here you need to remove the ", continent" part of the query.