sqlzoo专题

8 Using Null Quiz-SQLZoo

1. Select the code which uses an outer join correctly SELECT teacher.name, dept.name FROM teacher LEFT OUTER JOIN dept ON (teacher.dept = dept.id) 2. Select the

6 JOIN Quiz-SQLZoo

1. You want to find the stadium where player ‘Dimitris Salpingidis’ scored. Select the JOIN condition to use: game JOIN goal ON (id=matchid) 2. You JOIN the tables goal and eteam in an SQL state

4 SELECT within SELECT Tutorial-SQLZoo

1. List each country name where the population is larger than that of 'Russia’ SELECT name FROM worldWHERE population >(SELECT population FROM worldWHERE name='Russia'); 2. Show the countries in E

0 SELECT basics-SQLZoo

1. Modify it to show the population of Germany SELECT population FROM worldWHERE name = 'Germany'; 2. Show the name and the population for ‘Sweden’, ‘Norway’ and 'Denmark’ SELECT name, population

SQLZoo:SELECT from WORLD Tutorial/zh

name continent area population gdp Afghanistan Asia 652230 25500100 20343000000 Albania Europe 28748 2831741 12960000000 … name:國家名稱 continent:洲份 area:面積 population:人口 gdp:國內生產總值 Country Profile 在這教程

SQLZOO答案--SUM and COUNT

1.展示世界的總人口。 SELECT sum(population)FROM world   2.列出所有的洲份, 每個只有一次。 SELECT DISTINCT continent FROM world   3.找出非洲(Africa)的GDP總和。 SELECT SUM(gdp)FROM worldWHERE continent = 'Africa'   4.有

SQLZOO答案-The nobel table can be used to practice more subquery

1.紅十字國際委員會 (International Committee of the Red Cross) 曾多次獲得和平獎。 試找出與紅十字國際委員會同年得獎的文學獎(Literature)得獎者和年份。 SELECT * FROM nobel where winner = 'International Committee of the Red Cross' 2.日本物理學家益川敏英 (T

SQLZOO答案-SELECT within SELECT Tutorial2

上次那篇没有写完,此版是补充版   6.哪些國家的GDP比Europe歐洲的全部國家都要高呢? [只需列出 name 。] (有些國家的記錄中,GDP是NULL,沒有填入資料的。) SELECT name FROM worldWHERE gdp >ALL (SELECT gdp FROM world WHERE continent = 'Europe' AND gdp > 0); 注

SQLZOO教程答案-2  SELECT from World

1.閱讀此表的注意事項 觀察運行一個簡單的SQL命令的結果。 SELECT name, continent, population FROM world   2.如何使用WHERE來篩選記錄。 顯示具有至少2億人口的國家名稱。 2億是200000000,有八個零。 SELECT name FROM worldWHERE population >=200000000   3.找出

sqlzoo-SUM and COUNT参考答案

对应链接:https://sqlzoo.net/wiki/SUM_and_COUNT 1.Show the total population of the world. (译:查询世界总人口数) SELECT SUM(population)FROM world 2.List all the continents - just once each. (译:查询所有的大洲名称-只查询一次)

SQL——sqlzoo实例练习

title: SQL-Learning date: 2019-03-12 20:37:21 tags: SQL adv:解决了网页翻译不佳的问题,使得题目更加清晰明了 一、Select基础 name:国家名称 continent:洲份 1、%是万用字元,可以用代表任何字元。 找出以Y 为开首的国家。 从世界各地选择名称, 名字LIK E’Y %’ SELECT name F

sqlzoo刷题——SELECT within SELECT Tutorial/zh(子查询)

前言 本文章记录sqlzoo刷题过程以及解题思路,每个小节不仅包含练习,还有选择题(quiz)部分的实现思路 网址:sqlzoo_SELECT within SELECT Tutorial/zh 一、代码练习部分 列出每個國家的名字 name,當中人口 population 是高於俄羅斯’Russia’的人口。 查询结果列——国家名,人口 条件——人口>俄罗斯人口(子查询) 查询逻辑

SQLZOO刷题记录4——SELECT within SELECT Tutorial

本章节主要训练SELECT语句的嵌套使用。 题目3:Neighbours of Argentina and Australia List the name and continent of countries in the continents containing either Argentina or Australia. Order by name of the country.

SQLZOO——苏格兰议会数据

1.一個成員被工黨逐出黨,現沒屬任何黨。找出他。 select name from msp where party is null; 2.列出每個黨及其領導人。 select name,Leader from party group by name 3.列出每個黨及其領導人,這些黨其實是沒有領導人的。 SELECT NAME,leaderFROM partyWHERE LEA

SQLZOO及经典面试50题刷题记录

文章目录 SQLZOOSELECT names1.顯示所有國家名字,其首都和國家名字是相同的。2.“Mexico 墨西哥”的首都是”Mexico City”。3.找出所有首都和其國家名字,而首都要有國家名字中出現4.找出所有首都和其國家名字,而首都是國家名字的延伸。5.“Monaco-Ville"是合併國家名字 “Monaco” 和延伸詞”-Ville". 顯示國家名字,及其延伸詞,如首都是

SQLZOO练习-- More JOIN operations(含题目翻译)

知识点 join on连接(两个表、三个表),join+子查询   数据表 表的连接关系 movie.id = casting.movieidactor.id = casting.actorid 说明 movie:电影id、电影名称、上映年份、导演、预算、票房actor:演员id、演员casting:电影id、演员id、主演标识(1代表主演)   题目内容 1.List t