
数据库
yaci1994
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQLZOO Using_Null 答案
题目网址:https://sqlzoo.net/wiki/Using_Null select name from teacher where dept is null SELECT teacher.name, dept.name FROM teacher INNER JOIN dept ON (teacher.dept=dept.id) select ...原创 2020-04-25 20:33:35 · 266 阅读 · 0 评论 -
SQLZOO More_JOIN_operations 答案 电影数据库
题目网址:https://sqlzoo.net/wiki/More_JOIN_operations/zh SELECT id, title FROM movie WHERE yr=1962 select yr from movie where title='Citizen Kane' select id,title,yr from movie where title lik...原创 2020-04-22 22:08:16 · 373 阅读 · 0 评论 -
SQLZOO The_JOIN_operation 答案 UEFA EURO数据库
SQLZOO The_JOIN_operation 答案 题目网址:https://sqlzoo.net/wiki/The_JOIN_operation/zh SELECT matchid,player FROM goal WHERE teamid = 'GER' SELECT id,stadium,team1,team2 FROM game WHERE id='1012' ...原创 2020-04-21 23:41:28 · 281 阅读 · 0 评论