> For the complete documentation index, see [llms.txt](https://dshub.gitbook.io/ds-hub/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dshub.gitbook.io/ds-hub/sql/sql-practice/popular-websites-for-sql-practice/sqlzoo/world-bbc-tables/bbc-quiz.md).

# BBC QUIZ

world table

[Link](https://sqlzoo.net/wiki/BBC_QUIZ)

1. Select the code which gives the name of countries beginning with U

   ```sql
   SELECT name
     FROM world
    WHERE name LIKE 'U%'
   ```
2. Select the code which shows just the population of United Kingdom?

   ```sql
   SELECT population
     FROM world
    WHERE name = 'United Kingdom'
   ```
3. Select the answer which shows the problem with this SQL code - the intended result should be the continent of France:

   ```sql
    SELECT continent 
      FROM world 
     WHERE 'name' = 'France'
   ```

&#x20;       **'name'** should be **name**

4. Select the result that would be obtained from the following code:

   ```sql
    SELECT name, population / 10 
     FROM world 
    WHERE population < 10000
   ```

&#x20;        **Nauru 990**

5. Select the code which would reveal the name and population of countries in Europe and Asia

   ```sql
   SELECT name, population
     FROM world
    WHERE continent IN ('Europe', 'Asia')
   ```
6. Select the code which would give two rows

   ```sql
   SELECT name FROM world
    WHERE name IN ('Cuba', 'Togo')
   ```
7. Select the result that would be obtained from this code:<br>

   ```sql
   SELECT name FROM world
    WHERE continent = 'South America'
      AND population > 40000000
   ```

**Brazil**\
**Colombia**

\ <br>
