前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >sqlzoo练习8-self-join

sqlzoo练习8-self-join

作者头像
皮大大
发布2021-03-02 16:34:00
3200
发布2021-03-02 16:34:00
举报

sqlzoo练习16-self-join

连接查询包含3种方式:

  • 内联结
  • 外联结
  • 交叉联结

本文中学习的是自连接self-join。涉及到的两个表及其相关的字段

代码语言:javascript
复制
stops(id, name)
route(num, company, pos, stop)
stops表

This is a list of areas served by buses. The detail does not really include each actual bus stop - just areas within Edinburgh and whole towns near Edinburgh.

route表

A route is the path through town taken by a bus.

练习

所有的题目运行都出问题,提示表是非法,不存在,why?

  1. How many stops are in the database.
代码语言:javascript
复制
select count(stops.id)
from stops;
  1. Find the id value for the stop ‘Craiglockhart’
代码语言:javascript
复制
select id
from stops
where name='Craiglockhart';
  1. Give the id and the name for the stops on the ‘4’ ‘LRT’ service.
代码语言:javascript
复制
select id, name
from stops
join route on stops.id=route.stop
where num=4
and company='LRT';
  1. The query shown gives the number of routes that visit either London Road (149) or Craiglockhart (53). Run the query and notice the two services that link these stops have a count of 2. Add a HAVING clause to restrict the output to these two routes.

笔记:

  1. 显示了两条路线的总数
  2. 分组和过滤
  3. 要求:添加1个having子句来将结果限制成2条线路
代码语言:javascript
复制
select company, num, count(*)
from route
where stop=149 or stop=53
group by company, num
having count(*) = 2;  -- 添加语句,过滤结果
  1. Execute the self join shown and observe that b.stop gives all the places you can get to from Craiglockhart, without changing routes. Change the query so that it shows the services from Craiglockhart(53) to London Road(149).
代码语言:javascript
复制
select a.company, a.num, a.stop, b.stop
from route a
join route b on (a.company=b.company and a.num=b.num)
where a.stop=53
and b.stop=149;

下面的部分需要重新做,参考了两个博主:

https://github.com/edsfocci/SQL-SQL_Zoo/blob/master/09_self_join.sql

https://github.com/jisaw/sqlzoo-solutions/blob/master/self-join.sql

  1. The query shown is similar to the previous one, however by joining two copies of the stops table we can refer to stops by name rather than by number. Change the query so that the services between ‘Craiglockhart’ and ‘London Road’ are shown. If you are tired of these places try ‘Fairmilehead’ against 'Tollcross’
代码语言:javascript
复制
select a.company, a.num, stopa.name, stopb.name
from route a
join route b on (a.company=b.company and a.num=b.num)
join stops stopa on (a.stop=stopa.id)
join stops stopb on (b.stop=stopb.id)
where stopa.name='Craiglockhart'
and stopb.name='London Road';
  1. Give a list of all the services which connect stops 115 and 137 (‘Haymarket’ and ‘Leith’)

列出连接两个站点的全部服务信息

代码语言:javascript
复制
select distinct a.company, a.num
from route a
    join route b on (a.num=b.num and a.company=b.company)
    join stops stopa on (a.stop=stopa.id)
    join stops stopb on (b.stop=stopb.id)
where a.stop=115
and b.stop=137;
  1. Give a list of the services which connect the stops ‘Craiglockhart’ and ‘Tollcross’
代码语言:javascript
复制
select distinct a.company, a.num
from route a
    join route b on (a.num=b.num and a.company=b.company)
    join stops stopa on (a.stop=stopa.id)
    join stops stopb on (b.stop=stopb.id)
where stopa.name='Craiglockhart'
and stopb.name='Tollcross';
  1. Give a distinct list of the stops which may be reached from ‘Craiglockhart’ by taking one bus, including ‘Craiglockhart’ itself, offered by the LRT company. Include the company and bus no. of the relevant services.
代码语言:javascript
复制
select stopa.name, a.company, a.num
from route a
   join route b on (a.num=b.numa and a.company=b.company)
   join stops stopa on (a.stop=stopa.id)
   join stops stopa on (b.stop=stopb.id)
where stopb.name='Craiglockhart';
  1. Find the routes involving two buses that can go from Craiglockhart to Lochend.Show the bus no. and company for the first bus, the name of the stop for the transfer, and the bus no. and company for the second bus.
代码语言:javascript
复制
select stopa.name, stopb.name
from route a
join route b on (a.num=b.num)
join stops stopa on (a.stop=stopa.id)
join stops stopb on (b.stop=stopb.id)
where stopa.name = 'Craiglockhart'
and stopb.name = 'Sighthill';

self join quiz

  1. Select the code that would show it is possible to get from Craiglockhart to Haymarket
代码语言:javascript
复制
select distinct a.name, b.name
from stops a 
   join route z on a.id=z.stop
   join route y on y.num=z.num
   join stops b on y.stop=b.id
where a.name='Craiglockhart' and b.name='Haymarket';
  1. Select the code that shows the stops that are on route.num ‘2A’ which can be reached with one bus from Haymarket?
代码语言:javascript
复制
select s2.id, s2.name, r2.company, r2.num
from stops s1, stops s2, route r1, route r2
where s1.name='Haymarket' and s1.id=r1.stop
and r1.company=r2.company 
and r1.num=r2.num
and r2.stop=r2.id
and r2.num='2A';
  1. Select the code that shows the services available from Tollcross?
代码语言:javascript
复制
select a.company, a.num, stopa.name, stopb.name
from route a
join route b on (a.company=b.company and a.num=b.num)
join stops stopa on (a.stop=b.stop)
join stops stopb on (b.stop=stopb.id)
where stopa.name='Tollcross';

demo

油管上看到的一个例子,讲解如何通过不同的方式实现自连接。

  • 内联结:inner join,忽略空行
  • 外联结:left/right/full join,保留空行;
  • 交叉联结:cross join,保留空行

Oracle数据库支持full join,mysql是不支持full join的

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-1-31,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • sqlzoo练习16-self-join
    • stops表
      • route表
      • 练习
      • self join quiz
      • demo
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档