一、表的加法union
1.union的用法,单独用union时,合并后的表会删除重复数据
select <列名1>,<列名2> from <表1>
union
select <列名1>,<列名2> from <表2>;
2、union all的用法,用union all时,合并后的数据保留所有值,不删除重复项
select <列名1>,<列名2> from <表1>
union all
select <列名1>,<列名2> from <表2>;
二、表的联结join
1、交叉联结 cross join
表1中的每一行与表2中的每一行逐行联结,得到的联结后的表的行数=表1的行数*表2的行数
交叉联结是所有联结的基础,但由于联结后的行数较多,在实际应用中使用较少。
2、内联结 inner join
查找出同时存在于两张表中的数据,即两个表重叠的部分
3、左联结 left join
将左边表的数据全部保留,右边表的数据取出与左边表相同部分的数据
4、右联结 right join
将右边表的数据全部保留,左边表的数据取出与右边表相同部分的数据
5、全联结 full join
全联结返回两个表中的所有行,当两个表中有重复的内容时将两个表的内容合并,如果一行的内容在另一张表中没有找到匹配项则会用null来填充。
My SQL 不支持全联结
三、如何用SQL解决业务问题
1、查询所有学生的学号、姓名、选课数和总成绩
分析思路:
- 学号、姓名信息在student表中
- 选课、成绩信息在score表中
- 统计每个学生的信息需要按学号分组
- 选课数需要统计数量,用到count()函数
- 总成绩用到sum()函数
- 需要所有学生的信息,用到左联结left join
2、查询平均成绩大于85的所有学生的学号、姓名和平均成绩
分析思路:
- 学号、姓名信息在student表中
- 选课、成绩信息在score表中
- 统计每个学生的信息需要按学号分组
- 平均成绩要用到avg()函数
- 平均成绩大于85,用到having字句
- 需要左右学生的信息,需要用到左联结left join
3、查询学生的选课情况:学号,姓名,课程号,课程名称
分析思路:
- 学号、姓名在student表中
- 学生的选课情况在score表中
- 课程号、课程名称在course表中
- student表与score表通过‘学号’联结
- score表与course表通过‘课程号’联结
四、case表达式
当when...时执行then后面的表达式,相当于if...then...
case when<判断表达式> then <表达式>
when<判断表达式> then <表达式>
when<判断表达式> then <表达式>
...
else <表达式>
end
1、查询出每门课程的及格人数和不及格人数
分析思路:
- 将成绩<60设定为不及格人数,成绩>=60设为及格人数
- 按每门课程分组group by
- 如果直接统计人数可以用count(学号)函数,但是这里直接用count()函数不能将及格人数和不及格人数区分开,所以这个涉及到了case表达式
- 当when成绩<60时,then后面的值设为1,else则为0,再通过sum()求和函数得出不及格的数量
- 当when成绩>=60时,then后面的值设为1,else则为0,再通过sum()求和函数得出及格的数量
2、使用分段[100-85],[85-70],[70-60],[<60]来统计各科成绩,分别统计:各分数段人数,课程号和课程名称
分析思路:
- 使用case表达式结合sum函数统计各分数段的人数
- 分数在score表中
- 课程号和课程名称在course表中
- 通过join联结两个表
3、注意事项
- case表达式中else部分的内容可以省略,系统能识别,但是建议保持语句的完整
- case表达式中end一定不能省略
- 当用多个列来分组时,这几个列的值全部相同才算一组
五、sqlzoo练习-The JOIN operation
1、The first example shows the goal scored by a player with the last name 'Bender'. The *
says to list all the columns in the table - a shorter way of saying matchid, teamid, player, gtime
Modify it to show the matchid and player name for all goals scored by Germany. To identify German players, check for: teamid = 'GER'
第一个示例显示了姓“ Bender”的球员打进的进球。 *表示列出表中的所有列-一种简短的方式表示matchid,teamid,player,gtime
对其进行修改以显示德国得分的所有进球的比赛编号和球员名称。 要识别德国选手,请检查:teamid ='GER'
2、From the previous query you can see that Lars Bender's scored a goal in game 1012. Now we want to know what teams were playing in that match.
Notice in the that the column matchid
in the goal
table corresponds to the id
column in the game
table. We can look up information about game 1012 by finding that row in the game table.
Show id, stadium, team1, team2 for just game 1012
从上一个查询中,您可以看到Lars Bender在比赛1012中进球了。现在,我们想知道该比赛中有哪些球队在比赛。
请注意,goal表中的列matchid与game表中的id列相对应。 我们可以通过在game表中找到该行来查找有关game1012的信息。
仅显示game1012的显示ID,体育场,Team1,Team2
3、The FROM clause says to merge data from the goal table with that from the game table. The ON says how to figure out which rows in game go with which rows in goal - the matchid from goal must match id from game. (If we wanted to be more clear/specific we could say ON (game.id=goal.matchid)
The code below shows the player (from the goal) and stadium name (from the game table) for every goal scored.
Modify it to show the player, teamid, stadium and mdate for every German goal.
FROM子句表示将goal表中的数据与game表中的数据合并。 ON表示如何确定game中的哪些行与goal中的哪些行相匹配-goal中的matchid必须与game中的id相匹配。 (如果我们想更清晰/更具体,我们可以说
开启(game.id = goal.matchid)
下面的代码显示每个进球的球员(从goal表)和球场名称(从game表)。
对其进行修改,以显示每个德国进球的球员,队友,球场和伙伴。
4、Use the same JOIN
as in the previous question.
Show the team1, team2 and player for every goal scored by a player called Mario player LIKE 'Mario%'
显示一名名叫Mario的球员得分的每个进球的team1,team2和球员
5、The table eteam
gives details of every national team including the coach. You can JOIN
goal
to eteam
using the phrase goal JOIN eteam on teamid=id
Show player
, teamid
, coach
, gtime
for all goals scored in the first 10 minutes gtime<=10
eteam表给出了包括教练在内的所有国家队的信息,可以将goal表和eteam表通过teamid=id联结
显示所有10分钟以内得分的信息包括player,teamid,coach,gtime
6、To JOIN
game
with eteam
you could use eithergame JOIN eteam ON (team1=eteam.id)
or game JOIN eteam ON (team2=eteam.id)
Notice that because id
is a column name in both game
and eteam
you must specify eteam.id
instead of just id
List the the dates of the matches and the name of the team in which 'Fernando Santos' was the team1 coach.
要将game表与eteam表联结可以通过team1=eteam.id或者team2=eteam.id
注意id在game表和eteam表中都是一列,需要区分每个表中的id
显示'Fernando Santos'是team1队的教练的时间、队名
7、List the player for every goal scored in a game where the stadium was 'National Stadium, Warsaw'
显示比赛场地是 'National Stadium, Warsaw'得分的所有player信息
8、The example query shows all goals scored in the Germany-Greece quarterfinal.
Instead show the name of all players who scored a goal against Germany.
示例显示了德国-希腊四分之一决赛中所有进球。
显示所有对德国进球的球员的名字。
9、Showteamnameand the total number of goals scored.
显示队名和总得分
10、Show the stadium and the number of goals scored in each stadium.
显示各个场地的得分数
11、For every match involving 'POL', show the matchid, date and the number of goals scored.
对每一个含有“POL”的比赛,显示matchid, date和得分数
12、For every match where 'GER' scored, show matchid, match date and the number of goals scored by 'GER'
对每一场德国得分的比赛,显示matchid,比赛时间和德国得分数
13、List every match with the goals scored by each team as shown. This will use "CASE WHEN" which has not been explained in any previous exercises.
Notice in the query given every goal is listed. If it was a team1 goal then a 1 appears in score1, otherwise there is a 0. You could SUM this column to get a count of the goals scored by team1.Sort your result by mdate, matchid, team1 and team2.
显示如图示中列出的信息
注意在查询中列出了每个得分。 如果是team1得分,那么team1中将显示1,否则为0。可以对这一列求和以获取team1得分的目标计数。 按mdate,matchid,team1和team2对结果进行分类排序。
作业总结:
- sqlzoo中最后三题原先都因为group by 的问题报错,再审题才发现要按照题目要求,按特定的要求分组。
- 一步一步的分析问题很重要,开始可以先将框架列出来,再一步步解决。