sql server存储过程使用实例

数据库 SQL Server
sql server存储过程在SQL数据库中非常重要,可以使用sql server存储过程实现一些特有的功能,下面就以一个实例的形式为您介绍其中一种使用方法,供您参考。

使用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 
      
    begin transaction  
    Set NoCount ON  
    delete  from ProductListSpecial where ModuleId=@ModuleId  
      
    Set @PointerCurr=CharIndex(',',@ProductId_Array,@PointerPrev+1)  
    set @TId=cast(SUBSTRING(@ProductId_Array,@PointerPrev,@PointerCurr-@PointerPrev) as int)  
    Insert into ProductListSpecial (ModuleId,ProductId) Values(@ModuleId,@TId)  
    SET @PointerPrev = @PointerCurr  
    while (@PointerPrev+1 < LEN(@ProductId_Array))  
    Begin  
        Set @PointerCurr=CharIndex(',',@ProductId_Array,@PointerPrev+1)  
        if(@PointerCurr>0)  
        Begin  
            set @TId=cast(SUBSTRING(@ProductId_Array,@PointerPrev+1,@PointerCurr-@PointerPrev-1) as int)  
            Insert into ProductListSpecial (ModuleId,ProductId) Values(@ModuleId,@TId)  
            SET @PointerPrev = @PointerCurr  
        End  
        else  
            Break  
    End  
      
    set @TId=cast(SUBSTRING(@ProductId_Array,@PointerPrev+1,LEN(@ProductId_Array)-@PointerPrev) as int)  
    Insert into ProductListSpecial (ModuleId,ProductId) Values(@ModuleId,@TId)  
    Set NoCount OFF  
    if @@error=0 
    begin  
        commit transaction  
    end  
    else  
    begin  
        rollback transaction  
    end  
GO  
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.

 

 

 

【编辑推荐】
sql server还原数据库的方法

sql server create语句实例

视图上定义sql server触发器

sql server数据文件默认路径的查询和修改

教您如何查看Sql Server数据文件

责任编辑:段燃 来源: 互联网
相关推荐

2010-11-10 15:16:14

Sql Server分

2010-10-20 16:17:17

SQL Server角

2009-08-06 16:44:06

2010-07-15 12:38:14

SQL Server存

2010-11-12 09:46:55

Sql Server存

2011-03-24 13:38:47

SQL Server 存储分页

2010-09-14 10:36:23

sql server存

2011-03-28 10:46:36

sql server存储分页

2010-11-16 14:30:32

Oracle存储过程

2011-08-11 09:49:33

SQL Server 存储过程插入更新数据

2010-09-27 16:10:42

SQL Server游

2010-11-10 13:03:15

SQL Server存

2010-07-06 14:06:52

SQL Server存

2010-07-05 10:06:51

SQL Server扩

2010-06-28 09:21:04

SQL Server存

2010-10-22 11:47:30

sql server存

2010-10-26 14:50:11

oracle存储过程

2010-11-12 12:01:08

Oracle存储过程

2009-08-04 10:29:06

在C#中使用存储过程

2010-09-06 11:05:05

SQL SERVER语句
点赞
收藏

51CTO技术栈公众号