编写SQL语句(快速回顾)
注:源自于《Java程序员面试秘笈》!
1.创建数据库MYDB
create database MYDB
2.创建学生表student (sno,sname,ssex,sage,sclass)
create table student(
sno int primary key,
sname varchar(8),
ssex varchar(3),
sage int,
scalss varchar(6)
)
3.创建课程表course(cno,cname,ccredit)
create table course(
cno int primary key,
cname varchar(20),
ccredit int
)
4.创建选课表SC(sno,cno,grade)
create table SC(
sno int foreign key references student(sno),
cno int foreign key references course(cno),
grade int
)
5.添加数据
insert into student values (1,'李勇','男',20, 'y01')
insert into student values (2,'刘晨','男',21, 'y02')
insert into student values (3,'王敏','女',19, 'y02')
insert into student values (4,'张力','男',20, 'y05')
6.添加数据
insert into course values (1, '数据库', 5)
insert into course values (2, 'C语言', 5)
insert into course values (3, '开发模式', 5)
7.添加数据
insert into SC values (1,1,5)
insert into SC values (1,2,5)
insert into SC values (1,1,5)
insert into SC values (1,3,5)
8.查询全体同学的学号、姓名
select sno, sname
from student
9.查询全体同学的姓名学号班级(按顺序输出)
select sname,snao,sclass
from student
10.查询全体同学的记录(显示所有行)
select * from student
11.查询全体同学的姓名及出生年份
select sname , 2017 - sage
from student
12.查询全体同学姓名、出生年份、班级(班级要用小写字母LOWER函数)
select sname , 2017 - sage 出生年份, lower(sclass)
from student
13.查询全体同学的姓名、出生年份、所在班级,列为YearOfBirth
select sname, 2017 - sage YearOfBirth, sclass
from student
14.查询选课中学员的学号,并且去掉重复行,用distinct
select distinct sno
from sc
15.查询Y02班全体同学名单
select *
from student
where sclass = 'Y02'
16.查询考试不及格的同学学号
select sno
from sc
where grade < 60
17.查询所有年龄在20岁以下的同学的姓名及年龄
select sname,sage
from student
where sage < 20
18.查询年龄在1920岁(包括1920)之间的同学姓名、班级、年龄。
select sname,sclass,sage
from student
where sage>=19 and sage<=20
where between 19 and 20
19.查询年龄不在19~20岁之间的同学的姓名、班级、年龄。
select sname,sclass,sage
from student
where sage not between 19 and 20
20.查询不是Y02班和Y05班的同学的姓名、性别。
select sname,ssex
from student
where not sclass = 'Y02' and not sclass = 'Y05'
21.查询Y02班和Y05班的同学姓名、性别
select sname , ssex
from student
where sclass = 'Y02' or sclass = 'Y05'
22.查询所有姓刘的同学的姓名、学号、性别。
select sname, sno, ssex
from student
where sname like '刘%'
23.查询所有姓张且全名为2个汉字的学生姓名
select sname
from student
where sname like '张_'
24.某些学生未考试,查询缺少成绩的同学的学号和课程号
select sno,cno
from sc
where grade is null
25.查询所有有成绩的同学的学号、课程号和成绩
select sno,cno
from sc
where grade is not null
26.查询Y02班年龄在20岁以下的学生的姓名和年龄
select sname, sage
from student
where sclass = 'Y02' and sage < 20
27.查询选修1号课程的同学的学号和成绩,按降序排列。
select sno,grade
from sc
where cno = 1
order by grade desc
28.查询全体同学信息查询结果,按所在班级的班级名称降序排列,同级同学按年龄升序排列。
select *
from student
order by sclass desc , sage asc
29.查询学员总人数
select count(*) from student
30.查询选修课程学员人数。
select count(*) from sc
31.统计1号课的学员平均成绩。
select avg(grade)
from sc
where cno = 1
32.求各个课程号及相应的选课人数 (重点)
select count(*)
from sc
group by cno
33.查询选修1号课的同学的最高成绩
select max(grade)
from sc
where cno = 1
34.查询选取1门以上课程的同学学号
select sno
from sc
group by sno having count(cno) > 1
35.查询每个学员及其选修课程情况
select sno,cno
from sc
36.查询每个学员及其选修课情况,对没有选课的也要输出其名字、学号、性别、班级
select a.sno, a.sname, a.sage, a.ssex, a.sclass, sc.cno, sc.grade
from student a left outer join sc
on a.sno = sc.sno order by a.sname
37.查询选取2号课程且成绩在90分以上的同学。
select *
from sc
where cno = 2 and grade > 90
38.查询每个同学学号姓名、选修课程名及成绩。
select a.sno, a.sname, sc.cno, sc.grade
from student a left outer join sc
on a.sno = sc.sno
order by sc.sno
39.查询与刘晨在一个班的同学
select sname from student
where sclass in (
select sclass
from student
where sname = '刘晨'
)
40.选取C语言的同学学号和姓名
select sno , sname
from student
where sno in (
select sno
from sc
where cno in (
select cno
from course
where cname = 'C语言'
)
)
41.查询其他班中比Y02班某一同学大的同学姓名和年龄。
select sname , sage
from student
where sage > any (
select sage
from student
where sclass = 'Y02'
) and sclass <> 'Y02'
42.查询其他班中比Y02班同学全部都大的同学姓名和年龄。
select sname , sage
from student
where sage > all (
select sage
from student
where sclass = 'Y02'
) and sclass <> 'Y02'
43.查询选取1号课程的学员的姓名。
select sname
from student
where sno in(
select sno
from sc
where cno = 1
)
44.查询没有选取1号课程的学员的姓名。
select sname
from student
where sno not in (
select sno
from sc
where cno = 1
)
45.查询Y02班同学及年龄不大于19的学员(union)。
select *
from student
where sclass = 'Y02' union
select *
from student
where sage <= 19
46.查询选取1号课程或者2号课程的同学学号
select distinct sno
from sc
where cno = 1 or cno = 2
47.将4号学员的年龄改为23岁。
update student set sage = 23 where sno = 4
48.将所有同学的年龄增加1岁
update student set sage = sage + 1
49.Y02班同学的成绩改为100分
update sc set grade = 100
where sno in (
select sno
from student
where sclass = 'y02'
)
50.删除学号为1的同学记录。
delete from student where sno = 1
编写SQL语句(快速回顾)的更多相关文章
- 使用Sql语句快速将数据表转换成实体类
开发过程中经常需要根据数据表编写对应的实体类,下面是使用sql语句快速将数据表转换成对应实体类的代码,使用时只需要将第一行'TableName'引号里面的字母换成具体的表名称就行了: declare ...
- 缓存策略 半自动化就是mybaitis只支持数据库查出的数据映射到pojo类上,而实体到数据库的映射需要自己编写sql语句实现,相较于hibernate这种完全自动化的框架我更喜欢mybatis
springboot入门(三)-- springboot集成mybatis及mybatis generator工具使用 - FoolFox - CSDN博客 https://blog.csdn.net ...
- 如果一条SQL语句太长,我们可以通过回车键来创建一个新行来编写SQL语句,SQL语句的命令结束符为分号(;)。
1.如果一条SQL语句太长,我们可以通过回车键来创建一个新行来编写SQL语句,SQL语句的命令结束符为分号(;). 2.select查询的多个字段之间要用逗号“,”分割,如果查询涉及多个表,那多个表之 ...
- [转载]编写SQL语句查询出每个各科班分数最高的同学的名字,班级名称,课程名称,分数
[转载]编写SQL语句查询出每个各科班分数最高的同学的名字,班级名称,课程名称,分数 转载自:https://blog.csdn.net/one_money/article/details/56921 ...
- mysql 常用 sql 语句 - 快速查询
Mysql 常用 sql 语句 - 快速查询 1.mysql 基础 1.1 mysql 交互 1.1.1 mysql 连接 mysql.exe -hPup ...
- SQL 语句快速参考
来自 W3CSchool 的 SQL 快速参考 SQL 语句 语法 AND / OR SELECT column_name(s)FROM table_nameWHERE conditionAND|OR ...
- Mysql编写sql语句的小技巧
1.查询数据(保证查询性能) SELECT * 和 SELECT t.id , t.name:后者性能其实总体优于前者. 2.在查询的时候最好给表起个 别名,方便找到表中要查询的字段.执行sql的进行 ...
- MSSql使用SQL语句快速查看表对的就说明,及表字段描述及字段类型
--表描述 SELECT tbs.name 表名,ds.value 描述 FROM sys.extended_properties ds LEFT JOIN sysobjects tbs ON ds. ...
- 用sql语句,快速备份表数据
1.SqlServer数据库 --DataTable 原数据表 --DataTable_20150717 要备份的新表名 select * into DataTable_20150717 from D ...
随机推荐
- 2017CCPC杭州(ABCDJ)
所有的题目在这里<--- 待补... Problem A. HDU6264:Super-palindrome 题意: 题目定义了一个超级回文串,这个串满足:它的任一奇数长度的串都是回文串. 现在 ...
- 天梯 L2 这是二叉搜索树吗?
L2-004 这是二叉搜索树吗? (25 分) 一棵二叉搜索树可被递归地定义为具有下列性质的二叉树:对于任一结点, 其左子树中所有结点的键值小于该结点的键值: 其右子树中所有结点的键值大于等于该结点的 ...
- Hexo 中使用 emoji 和 tasks
替换为 markdown-it 今天在迁移博客项目的时候,发现原来在 hugo 中可以使用的 Emoji 和 tasks 功能都不能正常使用了,查询了一下原因,主要是因为 hexo 默认的解析器是 h ...
- springboot整合apache ftpserver详细教程(看这一篇就够了)
原创不易,如需转载,请注明出处https://www.cnblogs.com/baixianlong/p/12192425.html,否则将追究法律责任!!! 一.Apache ftpserver相关 ...
- js的alert()
效果图: 图一: 图二: 图三: 代码: <script type="text/javascript"> // alert() ; 只允许一个参数,如果有多个参数只显示 ...
- BigDecimal的加减乘除,比较,小数保留
关于BigDecimal的一些常用基本操作记录 1 BigDecimal b1 = new BigDecimal("1.124"); 2 BigDeci ...
- NOI2019 酱油记
今天是 \(7.18\) ,考完二试炸的很惨-于是我就来写游记了. DAY 0 签到日(7.14) 还没起床,原先定的飞机就被取消了,只好改签. 然而还是很早到的机场,等了好久好久. 到广州咯~下大雨 ...
- python条件与循环-条件
1.条件和循环 主要讨论:if.while.for以及相关的搭配else.elif.break.continue和pass语句. 1.1 if语句 if语句由三部分组成:关键字本身.用于判断结果真假的 ...
- 传递额外的值 Passing Extra Values |在视图中生成输出URL | 高级路由特性 | 精通ASP-NET-MVC-5-弗瑞曼
结果呢 <a href="/App/DoCustomVariable?id=Hello">This is an outgoing URL</a> 理解片段变 ...
- golang中基本类型存储大小和转换
Go语言的基本类型有: bool string int.int8.int16.int32.int64 uint.uint8.uint16.uint32.uint64.uintptr byte // u ...