首页 > 代码库 > 15、SQL基础整理(视图)
15、SQL基础整理(视图)
视图
即虚拟表
系统-右键-新建视图
编辑前200行
select *from studentscore
代码创建法:
create view studentscore
as
select student.sno,sname,ssex,sbirthday,class,cno,degree from student
join score on student.Sno=score.sno
删除视图:
drop view studentscore
修改视图:
alter view cts
as
select student.sno,score.cno,sname,sbirthday,class,cname,tno,degree from student,course,score
where score.Cno=course.Cno and score.sno=student.Sno
Notice:
1、一个视图不能引用另一视图(不能用join链接)
2、order by前面必须写上top
15、SQL基础整理(视图)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。