目录
1、创建class数据库
2、创建student和score表
3、向student表插入记录的insert语句
4、向score表插入记录的insert语句
5、查询student表的所有记录
6、查询student表的第2条到4条记录
7、从student表查询所有学生的学号(id)、姓名(name)和院系(department)的信息
8、从student表中查询计算机系和英语系的学生的信息
9、从student表中查询年龄30~35岁的学生信
10、从student表中查询每个院系有多少人
11、从score表中查询每个科目的最高分
12、查询李四的考试科目(c_name)和考试成绩(grade)
13、用连接的方式查询所有学生的信息和考试信息
14、计算每个学生的总成绩
15、计算每个考试科目的平均成绩
16、查询计算机成绩低于95的学生信息
17、查询同时参加计算机和英语考试的学生的信息
18、将计算机考试成绩按从高到低进行排序
19、从student表和score表中查询出学生的学号,然后合并查询结果
20、查询姓张或者姓王的同学的姓名、院系和考试科目及成绩
21、查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩
1、创建class数据库
/*创建class数据库*/
create database class;
执行结果:
2、创建student和score表
/*创建student和score表*/
create table student(
id int(10) not null unique primary key,
name varchar(20) not null,
sex varchar(4),
birth year,
department varchar(20),
address varchar(50)
);engine=innodb default charset=utf8 collate=utf8_unicode_ci;
create table score(
id int(10) not null unique primary key auto_increment,
stu_id int(10) not null,
c_name varchar(20),
grade int(10)
);engine=innodb default charset=utf8 collate=utf8_unicode_ci;
执行结果:
3、向student表插入记录的insert语句
/*向student表插入记录的insert语句*/
insert into student values( 901,'张老大', '男',1985,'计算机系', '北京市海淀区');
insert into student values( 902,'张老二', '男',1986,'中文系', '北京市昌平区');
insert into student values( 903,'张三', '女',1990,'中文系', '湖南省永州市');
insert into student values( 904,'李四', '男',1990,'英语系', '辽宁省阜新市');
insert into student values( 905,'王五', '女',1991,'英语系', '福建省厦门市');
insert into student values( 906,'王六', '男',1988,'计算机系', '湖南省衡阳市');
执行结果:
4、向score表插入记录的insert语句
/*向score表插入记录的insert语句*/
insert into score values(null,901, '计算机',98);
insert into score values(null,901, '英语', 80);
insert into score values(null,902, '计算机',65);
insert into score values(null,902, '中文',88);
insert into score values(null,903, '中文',95);
insert into score values(null,904, '计算机',70);
insert into score values(null,904, '英语',92);
insert into score values(null,905, '英语',94);
insert into score values(null,906, '计算机',90);
insert into score values(null,906, '英语',85);
执行结果:
5、查询student表的所有记录
/*查询student表的所有记录*/
select * from student;
执行结果:
6、查询student表的第2条到4条记录
/*查询student表的第2条到4条记录*/
select * from student limit 1,3;
执行结果:
7、从student表查询所有学生的学号(id)、姓名(name)和院系(department)的信息
/*从student表查询所有学生的学号(id)、姓名(name)和院系(department)的信息*/
select id,name,department from student;
执行结果:
8、从student表中查询计算机系和英语系的学生的信息
/*从student表中查询计算机系和英语系的学生的信息*/
select * from student where department='计算机系' or department='英语系';
执行结果:
9、从student表中查询年龄30~35岁的学生信息
/*从student表中查询年龄30~35岁的学生信息*/
select *,year(now())-birth age from student where (year(now())-birth) between 30 and 35;
执行结果:
10、从student表中查询每个院系有多少人
/*从student表中查询每个院系有多少人*/
select department,count(id) 人数 from student group by department;
执行结果:
11、从score表中查询每个科目的最高分
/*从score表中查询每个科目的最高分*/
select c_name,max(grade) from score group by c_name;
执行结果:
12、查询李四的考试科目(c_name)和考试成绩(grade)
/*查询李四的考试科目(c_name)和考试成绩(grade)*/
select s.`c_name`,s.`grade` from score s left outer join student st on s.stu_id = st.id where name = '李四';
执行结果:
13、用连接的方式查询所有学生的信息和考试信息
/*用连接的方式查询所有学生的信息和考试信息*/
select * from score s left outer join student st on s.stu_id = st.id;
执行结果:
14、计算每个学生的总成绩
/*计算每个学生的总成绩*/
select st.name,sum(s.grade) as 学生总成绩 from score s left join student st on s.stu_id = st.id group by st.id;
执行结果:
15、计算每个考试科目的平均成绩
/*计算每个考试科目的平均成绩*/
select c_name,avg(grade) as 科目平均成绩 from score group by c_name;
执行结果:
16、查询计算机成绩低于95的学生信息
/*查询计算机成绩低于95的学生信息*/
select st.* from score s left join student st on s.stu_id = st.id where s.c_name='计算机' and s.grade<95;
执行结果:
17、查询同时参加计算机和英语考试的学生的信息
/*查询同时参加计算机和英语考试的学生的信息*/
select st.* from student st ,score s ,score s1 where st.id=s.stu_id and s.c_name='计算机' and st.id=s1.stu_id and s1.c_name='英语';
执行结果:
18、将计算机考试成绩按从高到低进行排序
/*将计算机考试成绩按从高到低进行排序*/
select grade from score where c_name='计算机' order by grade desc;
执行结果:
19、从student表和score表中查询出学生的学号,然后合并查询结果
/*从student表和score表中查询出学生的学号,然后合并查询结果*/
select group_concat(s.`stu_id`,st.`id`) from score s left join student st on s.stu_id = st.id;
执行结果:
20、查询姓张或者姓王的同学的姓名、院系和考试科目及成绩
/*查询姓张或者姓王的同学的姓名、院系和考试科目及成绩*/
select name,department,c_name,grade from score,(select * from student where name like '张%' or name like '王%')st where stu_id=st.id;
执行结果:
21、查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩
/*查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩*/
select name,(year(now())-birth)as'age',department,c_name,grade from score,(select * from student where address like'湖南%')st where stu_id=st.id;
执行结果: