嗨,欢迎来到异星球,我是小怪同志。这篇文章主要讲MySQL,请一起学习吧。
一、命令
2.查course表中前10门课程的课号,课程,名称, 开设学期
4.查student表中所有姓‘刘’的学生信息
6.查student表中“计算机工程系”学生的平均年龄
8.查sc表中选修‘c03’课程的学生的学号及其成绩,查询结果按分数降序排列
10.统计sc表中选修了3门以上课程的学生的学号
12.查询选修数据库原理及应用课程且考试成绩不及格的学生学号及成绩
14.查询sc表中同时选修了c04和c02课程的学生学号和成绩
16.向student表中插入学号为215101002,姓名为李四的学生信息
18.将sc表中所有不及格课程的成绩改为60
20.删除sc表中的所有记录
二、命令
2.select * from course;
4.select * from student
where sname like‘刘%’;
6.select avg(sage)from student
where sdept=‘计算机工程系’;
8.select sno,degree from sc
where cno=‘c03’
order by degree desc;
10.select sno
from sc
group by sno having count(*)>3;
12.select sno,degree
from sc,course
where sc.cno=course.cno and cname=‘数据库原理及应用’and degree<60;
14.select a.sno,a.cno,a.degrer,b.cno,b.degree
from sc a,sc b
where a.sno=b.sno and a.cno=‘co4’andb.cno=‘c
02’;
16.insert into student(sno,sname)
values(‘2151011102’,‘李四’);
18update sc
set degree=60
where degree<60;
20.delete from sc;