SQL Zoo 练习题答案—Using Null & Self join

Using Null

1.List the teachers who have NULL for their department.

SELECT name FROM teacher WHERE dept is NULL

2.Note the INNER JOIN misses the teachers with no department and the departments with no teacher.

SELECT teacher.name, dept.name FROM teacher INNER JOIN dept ON (teacher.dept=dept.id)

3.Use a different JOIN so that all teachers are listed.

SELECT teacher.name, dept.name FROM teacher LEFT JOIN dept ON (teacher.dept=dept.id)

4.Use a different JOIN so that all departments are listed.

SELECT teacher.name, dept.name FROM teacher RIGHT JOIN dept ON (teacher.dept=dept.id)

5.Use COALESCE to print the mobile number. Use the number '07986 444 2266' if there is no number given. Show teacher name and mobile number or '07986 444 2266'

SELECT name, COALESCE(mobile, '07986 444 2266') FROM teacher

6.Use the COALESCE function and a LEFT JOIN to print the teacher name and department name. Use the string 'None' where there is no department.

SELECT teacher.name, COALESCE(dept.name, 'None') FROM teacher LEFT JOIN dept ON dept.id=dept

7.Use COUNT to show the number of teachers and the number of mobile phones.

SELECT COUNT(name), COUNT(mobile) FROM teacher

8.Use COUNT and GROUP BY dept.name to show each department and the number of staff. Use a RIGHT JOIN to ensure that the Engineering department is listed.

SELECT dept.name, COUNT(teacher.name) FROM teacher RIGHT JOIN dept ON teacher.dept=dept.id GROUP BY dept.name

9.Use CASE to show the name of each teacher followed by 'Sci' if the teacher is in dept 1 or 2 and 'Art' otherwise.

SELECT name, CASE WHEN dept=1 or dept=2 THEN 'Sci' ELSE 'Art' END FROM teacher

10.Use CASE to show the name of each teacher followed by 'Sci' if the teacher is in dept 1 or 2, show 'Art' if the teacher's dept is 3 and 'None' otherwise.

SELECT name, CASE WHEN dept=1 or dept=2 THEN 'Sci' WHEN dept=3 THEN 'Art' ELSE 'None' END FROM teacher

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 id=stop WHERE company='LRT' AND num=4

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, 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

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 a.company, a.num FROM route a JOIN route b ON (a.num=b.num AND a.company=b.company) WHERE a.stop=115 AND b.stop=137

8.Give a list of the services which connect the stops 'Craiglockhart' and 'Tollcross'

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

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 name, company, num FROM route JOIN stops ON stop=id WHERE num IN (SELECT num FROM route JOIN stops ON stop=id WHERE name='Craiglockhart') AND company='LRT'

10.Find the routes involving two buses that can go from Craiglockhart to Sighthill.
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.
Hint
Self-join twice to find buses that visit Craiglockhart and Sighthill, then join those on matching stops.

10题暂时没做出来。

答案参考链接1:https://github.com/jisaw/sqlzoo-solutions/blob/master/self-join.sql

答案参考链接2:https://blog.csdn.net/bestallen/article/details/54407879

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,452评论 0 10
  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,959评论 0 23
  • 第七章重点词是证据,你写一篇文章就要用很多的证据去证明你的观点,尽可能让读者信服你的结论,文章中提到如果你...
    jh小关阅读 299评论 0 0
  • 温馨提示:请带着文学化、戏剧性、美学欣赏眼光,以及社会主义核心价值观,过硬的政治素养和法律素养,尤其是奇强无比的脑...
    萌小人儿阅读 259评论 2 1
  • 作业:列出金钱观Bug 1:工资野心太小,没有主动提出加薪,沉迷工作奉献却太过谦虚没有感主动争取提出工资加薪。 危...
    Sunnyshen阅读 191评论 0 1