Only output some rows

You can add a WHERE column with a condition to avoid listing all rows.

Change the select below to only list the name and population of 'France'.

SELECT name, population FROM world WHERE name='France'