SQLZOO练习
1.select Basics 1.Modify it to show the population of Germany SELECT population FROM world WHERE name ='Germany' 2.Show the name and the population for 'Sweden', 'Norway' and 'Denmark'. SELECT name,population FROM world WHERE name in ('Sweden','Norway','Denmark') 3. Modify it to show the country and the area for countries with an area between 200,000 and 250,000. SELECT name,area FROM world WHERE area BETWEEN 200000 AND 250000 2.SELECT from WORLD Tutorial 1.Read the notes about this table. Observe the result of running this SQL command to show the name, continent and population of all