mysql如何创建查询语句_MySQL数据库,创建表,查询语句练习

MySQL创建表:

表(一)Student (学生表):

CREATE TABLE`Student` (

`sno`VARCHAR(10) DEFAULT NULL,

`sname`VARCHAR(10) DEFAULT NULL,

`sbrithday`DATETIME DEFAULT NULL,

`ssex`VARCHAR(10) DEFAULT NULL,

`class`VARCHAR(10) DEFAULT NULL) ENGINE=INNODB DEFAULT CHARSET=utf8

执行以下代码,插入数据;

INSERT INTOStudent ( Sno, Sname, Ssex, Sbirthday, class )VALUES('108', '曾华', '男', '1977/09/01', '95033'),

('105', '匡明', '男', '1975/10/02', '95031'),

('107', '王丽', '女', '1976/01/23', '95033'),

('101', '李军', '男', '1976/02/20', '95033'),

('109', '王芳', '女', '1975/02/10', '95031'),

('103', '陆君', '男', '1974/06/03', '95031' );

===================

表(二)Course(课程表):

CREATE TABLE`Course` (

`cno`VARCHAR(10) DEFAULT NULL,

`cname`VARCHAR(10) DEFAULT NULL,

`tno`VARCHAR(10) DEFAULT NULL) ENGINE=INNODB DEFAULT CHARSET=utf8

执行以下代码,插入数据;

INSERT INTOCourse (Cno, Cname, Tno)VALUES ('3-105', '计算机导论', '825' ), ('3-245', '操作系统', '804' ),('6-166', '数字电路', '856' ),('9-888', '高等数学', '831');

===================

表(三)Score(成绩表)

CREATE TABLE`Score` (

`sno`VARCHAR(10) DEFAULT NULL,

`cno`VARCHAR(10) DEFAULT NULL,

`degree`DECIMAL(18,1) DEFAULT NULL) ENGINE=INNODB DEFAULT CHARSET=utf8

执行以下代码,插入数据;

INSERT INTOScore (Sno, Cno, Degree)VALUES('103', '3-245', '86'),

('105', '3-245', '75'),

('109', '3-245', '68'),

('103', '3-105', '92'),

('105', '3-105', '88'),

('109', '3-105', '76'),

('101', '3-105', '64'),

('107', '3-105', '91'),

('108', '3-105', '78'),

('101', '6-166', '85'),

('107', '6-166', '79'),

('108', '6-166', '81');

===================

表(四)Teacher(教师表)

CREATE TABLE`Teacher` (

`tno`VARCHAR(10) DEFAULT NULL,

`tname`VARCHAR(10) DEFAULT NULL,

`tsex`VARCHAR(10) DEFAULT NULL,

`tbirthday` DATEDEFAULT NULL,

`prof`VARCHAR(20) DEFAULT NULL,

`depart`VARCHAR(20) DEFAULT NULL) ENGINE=INNODB DEFAULT CHARSET=utf8

执行以下代码,插入数据;

INSERT INTOTeacher ( Tno, Tname, Tsex, Tbirthday, Prof, Depart )VALUES('804', '李诚', '男', '1958/12/02', '副教授', '计算机系'),

('856', '张旭', '男', '1969/03/12', '讲师', '电子工程系'),

('825', '王萍', '女', '1972/05/05', '助教', '计算机系'),

('831', '刘冰', '女', '1977/08/14', '助教', '电子工程系' );

1、查询Student表中的所有记录的Sname、Ssex和Class列。

select sname, ssex, class from Student;

36d6aef74dcf171b22eb405e7b6e0854.png

2、查询教师所有的单位即不重复的Depart列。

select distinct depart fromTeacher;--select distinct 语句用于返回唯一不同的值。--distinct:(抵死真可特)

a3fe96b3ec29e4e8657cf2db02f15903.png

3、查询 Student 表的所有记录。

select * from Student;

1fbe3765d1b22e2fdc96e7429dd4bc6b.png

4、 查询Score表中成绩在60到80之间的所有记录。

不知道结果为什么是这样的,有待查看理解

select * from Score where degree between 60 and 80;--between 操作符:选取介于两个值之间的数据范围内的值。这些值可以是数值、文本或者日期。--between:(比图问)

3f3e0a606e86cf180d4c18c3f50fb49f.png-----

685cf51e8ff590b7aa299f5eff4b2ed2.png

5、查询Score表中成绩为85,86或88的记录。

select * from Score where degree = 85 or degree = 86 or degree =88 ;

a1780d93ad0e8a024eaa819744c468d9.png

6、 查询Student表中“95031”班或性别为“女”的同学记录。

select * from Student where sclass=95031 or ssex='女';--SQL AND & OR 运算符--如果第一个条件和第二个条件都成立,则 AND 运算符显示一条记录。--如果第一个条件和第二个条件中只要有一个成立,则 OR 运算符显示一条记录。

27f64e1a3a57351e0d9b02f45108a119.png

7、 以Class降序查询Student表的所有记录。

select * from Student order by sno desc;--select 查询字段名 from 表名 order by 字段名 asc 或 desc;--order by 字段名 asc 或 desc;--asc:升序(默认)--desc:降序

de23c1f368eeee2105c57bc01e1b2c29.png

8、 以Cno升序、Degree降序查询Score表的所有记录。

select * from Score order by cno asc , degree desc;--如果有两个条件进行升序或降序排序,则以逗号','隔开--order by 字段名1 asc , 字段名2 desc;--asc:升序(默认)--desc:降序

58cd0b60abac7d58e1c367ef9585eab9.png

9、 查询“95031”班的学生人数。

select count(sno) from Student a where a.sclass = '95031';--count():函数返回匹配指定条件的行数(NULL 不计入)--count:(凯欧特)

b4c8dd0880e14df93947a8d08c46a3e1.png

10、 查询Score表中的最高分的学生学号和课程号。(子查询或者排序)

select sno as '学号', cno as '课程号' from Score where degree=(select max(degree) from Score)

bbcadce8715a24f6d2a2a13cded11258.png

11、 查询每门课的平均成绩。

select t.cno as '课程',avg(degree) as '平均成绩' from Score t group by cno ;

b7edb01d548e8b5f71628a41672a792f.png

12、查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。

select t.cno as '课程号',avg(t.degree) as '平均成绩'

from Score t where t.cno like '3%' group by t.cno having count(t.cno)>5;

61f0e59f670adec29e6bc0b2965a4762.png

13、查询分数大于70,小于90的Sno列。

select a.sno as '学号' from Score a where degree>70 and degree<90 ;

b0fe643097020e245654df7471dbe1ed.png

14、查询所有学生的Sname、Cno和Degree列。

select a.sname,b.cno,b.degree from Student a, Score b where a.sno =b.sno ;--表(一)Student (学生表):sname--表(三)Score(成绩表):cno,degree--关联条件为:sno:学号

66c5182c17dcebc712428ca63dea3e72.png

15、查询所有学生的Sno、Cname和Degree列。

select a.cname,b.sno,b.degree from Course a, Score b where a.cno =b.cno ;--表(二)Course(课程表):cname(课程名称)--表(三)Score(成绩表):sno(学号),degree(成绩)--关联条件为:cno:学号

a1e6e4b1ca4bdb39811f93d286a2ec17.png

16、查询所有学生的Sname、Cname和Degree列。

select a.sname,b.cname,c.degree from Student a, Course b, Score c where a.sno=c.sno and b.cno=c.cno ;--表(一)Student (学生表) :sname(学生姓名)--表(二)Course(课程表):cname(课程名称)--表(三)Score(成绩表):degree (成绩)--关联条件为:一表和三表关联:sno(学号),二表和三表关联:cno

56764ee8a4148aa1896c0a6001fd9d25.png

17、 查询“95033”班学生的平均分。

select a.*,avg(degree) from Student a, Score b where a.sclass='95033';--表(一)Student (学生表):class--表(三)Score(成绩表):degree

e94da3659c3c4c31fb455be7b6dba1ea.png

18、 假设使用如下命令建立了一个grade表:

create table grade(low  number(3),upp  number (3),rank  char(1))

insert into grade values(90,100,’A’)

insert into grade values(80,89,’B’)

insert into grade values(70,79,’C’)

insert into grade values(60,69,’D’)

insert into grade values(0,59,’E’)

现查询所有同学的Sno、Cno和rank列。

19、  查询选修“3-105”课程的成绩高于“109”号同学成绩的所有同学的记录。

20、查询score中选学多门课程的同学中分数为非最高分成绩的记录。

21、查询成绩高于学号为“109”、课程号为“3-105”的成绩的所有记录。

22、查询和学号为108的同学同年出生的所有学生的Sno、Sname和Sbirthday列。

23、查询“张旭“教师任课的学生成绩。

24、查询选修某课程的同学人数多于5人的教师姓名。

25、查询95033班和95031班全体学生的记录。

26、  查询存在有85分以上成绩的课程Cno.

27、查询出“计算机系“教师所教课程的成绩表。

28、查询“计算机系”与“电子工程系“不同职称的教师的Tname和Prof。

29、查询选修编号为“3-105“课程且成绩至少高于选修编号为“3-245”的一名同学的Cno、Sno和Degree,并按Degree从高到低次序排序。(两种写法)

30、查询选修编号为“3-105”且成绩高于选修编号为“3-245”课程的同学的Cno、Sno和Degree.

31、 查询所有教师和同学的name、sex和birthday.

32、查询所有“女”教师和“女”同学的name、sex和birthday.

33、 查询成绩比该课程平均成绩低的同学的成绩表。

34、 查询所有任课教师的Tname和Depart.

35 、 查询所有未讲课的教师的Tname和Depart.

36、查询至少有2名男生的班号。

37、查询Student表中不姓“王”的同学记录。

38、查询Student表中每个学生的姓名和年龄。

39、查询Student表中最大和最小的Sbirthday日期值。

40、以班号和年龄从大到小的顺序查询Student表中的全部记录。

41、查询“男”教师及其所上的课程。

42、查询最高分同学的Sno、Cno和Degree列。

43、查询和“李军”同性别的所有同学的Sname.

44、查询和“李军”同性别并同班的同学Sname.

45、查询所有选修“计算机导论”课程的“男”同学的成绩表。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值