• SELECT name as Name, SUM(population) as Popualtion

    FROM bbc

    WHERE population >1000

    GROUP BY name

    If you aggregate the specific column then other remaining column in the select list should be group by...