SQLZOO_9 SELF JOIN

1.How many stops are in the database.

select count(*) from stops;

2.Find the id value for the stop ‘Craiglockhart’

select id from stops
where name='Craiglockhart';

3.Give the id and the name for the stops on the ‘4’ ‘LRT’ service.

select id,name from stops
join route on stops.id=route.stop
where num=4 and company='LRT'
order by pos;

4.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.

SELECT company, num, COUNT(*)
FROM route WHERE stop=149 OR stop=53
GROUP BY company, num
having count(*)=2;

5.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 to London Road.

select a.company,a.num,a.stop as 'start',b.stop as 'end' from route a
join route b 
on (a.company=b.company and a.num=b.num)
where a.stop=(select id from stops where name='Craiglockhart')
and b.stop=(select id from stops where name='London Road');

6.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’

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';

7.Give a list of all the services which connect stops 115 and 137 (‘Haymarket’ and ‘Leith’)

select distinct(company),num from route a
join stops
on a.stop=stops.id

where 115 in (select stop from route b where b.company=a.company and b.num=a.num)
and 137 in (select stop from route b where b.company=a.company and b.num=a.num);
8.Give a list of the services which connect the stops ‘Craiglockhart’ and ‘Tollcross’

select distinct(a.company),a.num from route a
join stops stopa on (a.stop=stopa.id)
join route b on (a.company=b.company and a.num=b.num)
join stops stopb on (b.stop=stopb.id)
where (stopa.name='Craiglockhart' and stopb.name='Tollcross')
or (stopb.name='Craiglockhart' and stopa.name='Tollcross')
order by a.num
select distinct(a.company),a.num from route a 
join stops on a.stop=stops.id
where 'Craiglockhart' in (select name from route
join stops on route.stop=stops.id where route.company=a.company and route.num=a.num)
and  'Tollcross' in (select name from route
join stops on route.stop=stops.id where route.company=a.company and route.num=a.num)

9.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.

select distinct(stopa.name),a.company,a.num from route a
join stops stopa on a.stop=stopa.id
join route b on (a.company=b.company and a.num=b.num)
join stops stopb on b.stop=stopb.id
where stopb.name='Craiglockhart' 
and a.company='LRT'

10.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.

select a.num,a.company,s.name,d.num,d.company from route a
join route b on(a.company=b.company and a.num=b.num)
join route c on(b.stop=c.stop)
join route d on(c.company=d.company and c.num=d.num)
join stops s on b.stop=s.id
where a.stop=(select id from stops where name='Craiglockhart')
and d.stop=(select id from stops where name='Lochend')
order by a.num,a.company,s.name,d.num;
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值