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存储过程:

  1. CREATE PROCEDURE dbo.ProductListUpdateSpecialList  
  2.     @ProductId_Array varChar(800),  
  3.     @ModuleId int  
  4. AS  
  5.     DECLARE @PointerPrev int  
  6.     DECLARE @PointerCurr int  
  7.     DECLARE @TId int  
  8.     Set @PointerPrev=1 
  9.     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  

 

 

 

【编辑推荐】
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存

2011-03-24 13:38:47

SQL Server 存储分页

2010-11-12 09:46:55

Sql Server存

2010-09-14 10:36:23

sql server存

2011-03-28 10:46:36

sql server存储分页

2010-09-27 16:10:42

SQL Server游

2011-08-11 09:49:33

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

2010-11-16 14:30:32

Oracle存储过程

2010-07-06 14:06:52

SQL Server存

2010-11-10 13:03:15

SQL Server存

2010-07-05 10:06:51

SQL Server扩

2010-10-22 11:47:30

sql server存

2010-06-28 09:21:04

SQL Server存

2010-09-06 11:05:05

SQL SERVER语句

2009-08-04 10:29:06

在C#中使用存储过程

2010-10-26 14:50:11

oracle存储过程

2010-11-12 12:01:08

Oracle存储过程
点赞
收藏

51CTO技术栈公众号