摘要: ALTER PROCEDURE pager( @pagesize int, --每页行数 @pageindex int, --当前页码 @type int)AS declare @total int --总行数 declare @totalpage int --总页数 select @total = count(*) from 主题表 where 类别 = @type--求知一类别的总主题数 s... 阅读全文
posted @ 2007-01-02 15:00 花香的蜂 阅读(214) 评论(0) 推荐(0)