title: SQL-Learning date: 2019-03-12 20:37:21 tags: SQL 这是关于在一个SQL学习网站的练习题答案记录:SQL教程 SQL基础 由一些简单的查询开始 这里的默认表格为WORLD表格 。 name ...
.sqlzoo https: sqlzoo.net .select Basics .Modify it to show the population of Germany .Show the name and the population for Sweden , Norway and Denmark . . Modify it to show the country and the area ...
2020-03-25 21:29 0 7417 推荐指数:
title: SQL-Learning date: 2019-03-12 20:37:21 tags: SQL 这是关于在一个SQL学习网站的练习题答案记录:SQL教程 SQL基础 由一些简单的查询开始 这里的默认表格为WORLD表格 。 name ...
This tutorial looks at how we can use SELECT statements within SELECT statements to perform more ...
1.展示世界的總人口。 SELECT sum(population)FROM world 2.列出所有的洲份, 每個只有一次。 select distinct continentfrom wor ...
1.列出每個國家的名字 name,當中人口 population 是高於俄羅斯'Russia'的人口。 SELECT name FROM world WHERE population > (S ...
表名称 1.列出每個國家的名字 name,當中人口 population 是高於俄羅斯'Russia'的人口。 2.列出歐州每國家的人均GDP,當中人均GDP要高於英國'United King ...
首先查看world表的字段: name continent area population gdp capital tld flag ...
SELECT from Nobel Tutorial 1、Change the query shown so that it displays Nobel prizes for 1950. ...
一、SELECT basics/zh 以顯示德國 Germany 的人口。 查詢面積為 5,000,000 以上平方公里的國家,對每個國家顯示她的名字和人均國內生產總值(gdp/p ...