首页 相关文章 在Access中模拟sql server存储过程翻页

在Access中模拟sql server存储过程翻页

sql server中翻页存储过程:
Create PROC blog_GetPagedPosts
(
@PageIndex int,
@PageSize int,
@BlogID int=0,
@PostType int=-1,
@CategoryID int=-1,
@Hiding bit =0,
@Count int output

)
as
DECLARE @PageLowerBound int
DECLARE @PageUpperBound int
SET @PageLowerBound = @PageSize * @PageIndex - @PageSize
SET @PageUpperBound = @PageLowerBound + @PageSize + 1

Create Table #IDs
(
TempID int IDENTITY (1, 1) NOT NULL,
EntryID int not null
)
Insert into #I...[ 查看全文 ]

2016-02-19 标签:

在Access中模拟sql server存储过程翻页的相关文章

手机页面
收藏网站 回到头部