码迷,mamicode.com
首页 > 其他好文 > 详细

存储过程并批量添加数据

时间:2018-08-13 19:39:12      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:批量   cmd   alter   comm   过程   erro   rollback   his   存储   

 1 ALTER proc [dbo].[Dki_GBC_DownloadHistory]
 2 (
 3    @CMD varchar(20),  
 4    @ContactPersonID int=0,
 5    @UserID int=0            ---用户  
 6 )
 7 as 
 8 if @CMD is null
 9  begin
10   print Nparam @CMD can not is null!
11   return 0
12  end 
13 begin tran
14 -----------------------------------
15 --用途:增加下载历史!并批量录入数据。   
16 --时间:2011-1-23 8:18:31
17 ------------------------------------  
18 if(@CMD =insert) 
19  --if(select count(*) from GBCDownloadHistory where 0">ContactPersonID=@ContactPersonID)>0                     
20  --   return 0 
21     insert into GBCDownloadHistory (ContactPersonID,UserID,Download_Date)
22     select ContactPersonID,@UserID,getdate()from GBClist where   
23 ----gbc详细显示
24 else if(@CMD=view)
25  begin
26     select gbc.*,hist.Download_Date from gbclist as gbc
27     Left join GBCDownloadHistory as hist ON hist.ContactPersonID = gbc.ContactPersonID
28     where 
29  end 
30 if @@error <>0
31  begin 
32     rollback
33     return 0
34  end
35 else
36  begin
37    commit
38    return 1
39  end
40 
41 收藏于 2011-03-09

 

存储过程并批量添加数据

标签:批量   cmd   alter   comm   过程   erro   rollback   his   存储   

原文地址:https://www.cnblogs.com/dqh123/p/9470092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!