自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 SQLZOO练习笔记-USING NULL

List the teachers who have NULL for their department. SELECT name FROM teacher WHERE dept IS NULL Note the INNER JOIN misses the teachers with no department and the departments with no teacher. ...

2018-10-06 18:34:43 183

原创 SQLZOO练习笔记-MORE JOIN OPERATIONS

List the films where the yr is 1962 [Show id, title] SELECT id, title FROM movie WHERE yr=1962 Give year of ‘Citizen Kane’. select yr from movie where title = ‘Citizen Kane’ 3.List all of the ...

2018-10-06 17:29:23 324

原创 SQLZOO练习笔记-the join operation

Modify it to show the matchid and player name for all goals scored by Germany. To identify German players, check for: teamid = ‘GER’ SELECT matchid, player FROM goal WHERE teamid = ‘GER’ 2.Show id...

2018-10-05 22:24:25 353

原创 SQLZOO练习笔记-SUM AND COUNT

SELECT SUM(population) FROM world select distinct continent from world select sum(gdp) from world where continent = ‘Africa’ select count(distinct name) from world where area >= ...

2018-10-05 17:11:47 154

原创 SQLZOO练习笔记-Select within select tutorial

SELECT name FROM world WHERE population > (SELECT population FROM world WHERE name=‘Russia’) select name from world where continent = ‘Europe’ and gdp/population > (select gdp/populatio...

2018-10-05 16:40:58 203

原创 SQLZOO练习笔记-select from nobel tutorial

SELECT yr, subject, winner FROM nobel WHERE yr = 1950 SELECT winner FROM nobel WHERE yr = 1962 AND subject = ‘Literature’ select yr, subject from nobel where winner = ‘Albert Einstein’ ...

2018-10-05 16:34:49 149

原创 SQLZOO练习笔记-Select from World Tutorial

SQLZOO练习笔记-Select from World Tutorial 小白头一次在CSDN上发博客…这个系列主要是想记录一下自己的DQLZOO练习,也希望大家不吝赐教~哪里写错了或者有更好的方法还请多多指教啦。

2018-10-05 16:30:18 229

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除