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

SQL Server第四堂课 :视图查询方法,分页查询方法

时间:2015-04-27 23:09:44      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

create view view_1        --建立一个新的视图名
as                         --建立视图的函数
select student.sno,sname,cno,DEGREE from  student join score on student.sno=score.sno    
go
select *from view_1 where sno=1

select *from
(select student.sno,sname,cno,DEGREE from  student join score on student.sno=score.sno) as table 2 where sno=101
--用as定义成一个临时表,然后从表中再查询记结果。也是子查询的一种,将子查询查询出的结果集,当做一个临时表使用。
--视图只有查询作用。当对子查询中的结果进行反复查询的时候,可以减少写代码的工作量

 --分页查询,查询一个表中第几条和第几条的信息
 select*from student 
 select top 2* from student where sno not in(select top 3 sno from student)
 --后面not in是屏蔽掉当前页的前面页的内容,前面top是取屏蔽之后的数据的一页显示条数
 --两行为一页
 --分页的存储过程
 create proc fenye  ----用函数来查询分页。查询一个表中第几条和第几条的信息
 @nowye int, --当前页
 @number int --显示行数
 as          
 select top (@number) *from dingdanbiao where sno not in(select top((@nowye -1)*@number) sno from student )
 go
 exec fenye 2, 3

 

SQL Server第四堂课 :视图查询方法,分页查询方法

标签:

原文地址:http://www.cnblogs.com/275147378abc/p/4461545.html

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