数据库
首页 > 数据库> > SQLZOO练习-Part1: SELECT basics

SQLZOO练习-Part1: SELECT basics

作者:互联网

Part1: SELECT basics 

1.  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.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

标签:basics,name,area,Part1,world,WHERE,SELECT,population
来源: https://blog.csdn.net/fuli0120/article/details/118753870