数据库视图--学生教师信息表为例

--视图,视图就是一个虚拟的表,只能查询,不能修改!只能用作查询!

select *from View_1 

--显示101这个学生的学生sno,sname,cno,degree
create view view 2
as
   select Student.Sno,sname,cno,DEGREE from Student join Score on Student.Sno=Score.Sno
go


select Student.Sno,sname,cno,DEGREE from Student join Score on Student.Sno=Score.Sno
select *from View_2 where Sno=101--视图view_2里面只选择sno,sname,cno,degree


select *from(select Student.Sno,sname,cno,DEGREE from Student join Score on Student.Sno=Score.Sno) as table2 where Sno=101
--select Student.Sno,sname,cno,DEGREE from Student join Score on Student.Sno=Score.Sno当作一个临时表来用,就是子查询

技术分享

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。