1 SELECT basic
主要是学习基本的查询
1.1 查询德国Germany的人口
- 英文版
The example uses a WHERE clause to show the population of ‘France’. Note that strings (pieces of text that are data) should be in ‘single quotes’;
Modify it to show the population of Germany
- 中文版
這個例子顯示’France法國’的人口。字串應該在’單引號’中。
修改此例子,以顯示德國 Germany 的人口。
SELECT
population
FROM
world
WHERE
NAME = 'Germany'
1.2 指定数据表字段查询
- 中文版
查詢顯示面積為 5,000,000 以上平方公里的國家,該國家的人口密度(population/area)。人口密度並不是 WORL