码迷,mamicode.com
首页 > 数据库 > 详细

15、SQL基础整理(视图)

时间:2014-12-15 17:13:20      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   sp   strong   on   2014   log   

视图

即虚拟表

系统-右键-新建视图

bubuko.com,布布扣

 bubuko.com,布布扣

 

编辑前200行

 bubuko.com,布布扣

 

select *from studentscore

 bubuko.com,布布扣

 

代码创建法:

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基础整理(视图)

标签:style   blog   http   color   sp   strong   on   2014   log   

原文地址:http://www.cnblogs.com/wleaves/p/4165129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!