09 2013 档案
摘要:1 create proc GetItems 2 ( 3 @id int 4 ,@cid int 5 ,@PageIndex int = 0 6 ,@PageSize int = 20 7 ,@TotalRecords int output 8 ) 9 as10 begin11 declare @ResultTable table12 (13 RowIndex int14 ,[id] int 15 ,[title] varchar(25) not null ...
阅读全文