if exists(select name from sysobjects where name='GetRecord' and type = 'p') drop procedure GetRecord GO create procedure GetRecord @id int output, --输出p_id和p_path @path nvarchar(255) output as select top 1 @id = p_id, @path = p_path from n_project where p_flag = '0'; if(@id 0) ...[ 查看全文 ]
SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO --名称:分页存储过程 --使用示例 EXEC sp_PageIndex '*',' FROM StuSources ',2,10 --注意 --目前还没有对输入的参数进行严格的验证 --默认为输入都是合法有效的 ALTER PROC sp_PageIndex @sqlSelect varchar(800) --SELECT 后面 FROM 前面 的 字段 不用包含SELECT ,@sqlFrom varchar(800) --FROM 后面 的 字段 包含FROM ,@countPerPage...[ 查看全文 ]