1
/*
2
说明:
3
(1)这里以northwind数据库中products表为例子(SQL2000)
4
(2)关于排序的功能没有完成
5
(3)数据库动态改变没有完成
6
*/
7
8
--分页存储过程
9
alter procedure SplitPage
10
@PageSize int,--每页大小
11
@PageIndex int --当前页
12
as
13
declare @totalrecord int --总的记录数
14
declare @totalpage int --总的页数
15
select @totalrecord=count(*) from products
16
set @totalpage=ceiling(cast(@totalrecord as float)/@PageSize)
17
if @PageIndex<=@totalpage
18
begin
19
declare @Sql varchar(1000)
20
if(@PageIndex=1)
21
begin
22
set @Sql='select top '+cast(@PageSize as varchar(100))+' * from products
23
order by productid asc'
24
execute(@Sql)
25
end
26
else
27
begin
28
set @PageIndex=(@PageIndex-1)*@PageSize
29
print @PageIndex
30
set @Sql='select top '+cast(@PageSize as varchar(100))+' * from products
31
where productid>all(select top '+cast(@PageIndex as varchar(100))+
32
' productid from products order by productid asc) order by productid
33
asc'
34
execute(@Sql)
35
end
36
37
end
38
else
39
begin
40
41
print '超出范围'
42
end
43
44
联系我,QQ:271059875

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44
