mysql

文章展示了如何在stusys数据库中创建、查询、修改和管理视图,包括针对特定专业的学生分数和课程分数的视图,以及对视图的数据插入、更新和删除操作。同时,还涉及到在student表上创建和删除索引的操作。
摘要由CSDN通过智能技术生成

#【例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;
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值