sql server存储过程使用实例

来源:互联网 发布:矩阵应用题 编辑:程序博客网 时间:2024/06/06 18:04

使用sql server存储过程,可以在数据库中实现多种功能,下面就为您介绍其中的一种,供您参考,希望对您学习sql server存储过程的使用有所帮助。

如果需要同时插入N条数据,不想在程序里控制,但是SQL Sever又不支持数组参数.所以只能用变通的办法了.利用SQL Server强大的字符串处理传把数组格式化为类似"1,2,3,4,5,6",然后在sql server存储过程中用SubString配合CharIndex把分割开来。

详细的sql server存储过程:

CREATE PROCEDURE dbo.ProductListUpdateSpecialList  

    @ProductId_Array varChar(800),  

    @ModuleId int  

AS  

    DECLARE @PointerPrev int  

    DECLARE @PointerCurr int  

    DECLARE @TId int  

    Set @PointerPrev=1 

    set @PointerCurr=1 

10       

11     begin transaction  

12     Set NoCount ON  

13     delete  from ProductListSpecial where ModuleId=@ModuleId  

14       

15     Set @PointerCurr=CharIndex(',',@ProductId_Array,@PointerPrev+1)  

16     set @TId=cast(SUBSTRING(@ProductId_Array,@PointerPrev,@PointerCurr-@PointerPrev) as int)  

17     Insert into ProductListSpecial (ModuleId,ProductId) Values(@ModuleId,@TId)  

18     SET @PointerPrev = @PointerCurr  

19     while (@PointerPrev+1 < LEN(@ProductId_Array))  

20     Begin  

21         Set @PointerCurr=CharIndex(',',@ProductId_Array,@PointerPrev+1)  

22         if(@PointerCurr>0)  

23         Begin  

24             set @TId=cast(SUBSTRING(@ProductId_Array,@PointerPrev+1,@PointerCurr-@PointerPrev-1) as int)  

25             Insert into ProductListSpecial (ModuleId,ProductId) Values(@ModuleId,@TId)  

26             SET @PointerPrev = @PointerCurr  

27         End  

28         else  

29             Break  

30     End  

31       

32     set @TId=cast(SUBSTRING(@ProductId_Array,@PointerPrev+1,LEN(@ProductId_Array)-@PointerPrev) as int)  

33     Insert into ProductListSpecial (ModuleId,ProductId) Values(@ModuleId,@TId)  

34     Set NoCount OFF  

35     if @@error=0 

36     begin  

37         commit transaction  

38     end  

39     else  

40     begin  

41         rollback transaction  

42     end  

43 GO