#【例7.1】在stusys数据库中创建V_StudentScore视图,包括学号、姓名、性别、专业、课程号、成绩,且专业为计算机。
use stusys;
alter view V_StudentScore
as
select a.sno,
a.sname,
a.ssex,
a.speciality,
b.cno,
b.grade
from student a,score b
where a.speciality ='计算机' and a.sno=b.sno;
select * from V_StudentScore;
#【例7.2】在stusys数据库中创建V_StudentCourseScore视图,包括学号、姓名、性别、课程名、成绩,按学号升序排列,且专业为计算机。
use stusys;
create view V_StudentCourseScore
as
select a.sno,a.sname,a.ssex,b.cname,c.grade
from student a,course b ,score c
where a.sno=c.sno and b.cno=c.cno and a.speciality='计算机'
order by a.sno;
select * from V_StudentCourseScore;
#【例7.3】 分别查询V_StudentScore视图、V_StudentCourseScore视图。
select * from V_StudentScore;
select * from V_StudentCourseScore;
#【例7.4】 查询计算机专业学生的学号、姓名、性别、课程名。
select sno,sname,ssex,cname from V_StudentCourseScore;
#【例7.5】在stusys数据库中,以student为基表,创建专业为通信的可更新视图
use stusys;
create view V_StudentSpecialityComm
as
select *from student
where speciality='通讯';
#【例7.6】 向V_StudentSpecialityComm视图中插入一条记录:('196006','程超','男','1998-04-28','通信', 50)。
use stusys;
insert into V_StudentSpecialityComm
values('196006','程超','男','1998-04-28','通信', 50);
select * from V_StudentSpecialityComm;
#【例7.7】 将V_StudentSpecialityComm视图中学号为196006的学生的总学分增加2分。
use stusys;
update V_StudentSpecialityComm set tc=tc+2
where sno='196006';
#【例7.8】 删除V_StudentSpecialityComm视图中学号为196006的记录。
use stusys;
delete from V_StudentSpecialityComm
where sno='196006';
#【例7.9】 将例7.1定义的视图V_StudentScore视图进行修改,取消专业为计算机的要求。
#【例7.10】修改例7.2创建的视图V_StudentCourseScore,学号以降序排列。
#【例7.11】 在stusys数据库中,将视图V_StudentCourseScore删除。
use stusys;
drop view V_StudentSpecialityComm;
#【例7.12】 在stusys数据库中student表的sname列上,创建一个普通索引I_studentSname。
use stusys;
create index I_studentSname
on student(sname);
show index from student;
drop index I_studentSname on student;