如何在預存程序中實現插入更新資料

來源:互聯網
上載者:User

預存程序的功能非常強大,在某種程度上甚至可以替代商務邏輯層,接下來就一個小例子來說明,用預存程序插入或更新語句。

1、資料庫表結構

所用資料庫為Sql Server2008。

2、建立預存程序

(1)實現功能:

    • 有相同的資料,直接返回(傳回值:0);
    • 有主鍵相同,但是資料不同的資料,進行更新處理(傳回值:2);
    • 沒有資料,進行插入資料處理(傳回值:1)。

根據不同的情況設定預存程序的傳回值,調用預存程序的時候,根據不同的傳回值,進行相關的處理。

(2)下面編碼只是實現的基本的功能,具體的Sql代碼如下:

 
  1. Create proc sp_Insert_Student 
  2.     @No char(10), 
  3.     @Name varchar(20), 
  4.     @Sex char(2), 
  5.     @Age int, 
  6.     @rtn int output 
  7. as 
  8. declare 
  9.     @tmpName varchar(20), 
  10.     @tmpSex char(2), 
  11.     @tmpAge int 
  12.      
  13.     if exists(select * from Student where No=@No) 
  14.         begin 
  15.             select @tmpName=Name,@tmpSex=Sex,@tmpAge=Age from Student where No=@No 
  16.             if ((@tmpName=@Name) and (@tmpSex=@Sex) and (@tmpAge=@Age)) 
  17.                 begin 
  18.                     set @rtn=0   --有相同的資料,直接傳回值 
  19.                 end 
  20.             else 
  21.                 begin 
  22.                     update Student set Name=@Name,Sex=@Sex,Age=@Age where No=@No 
  23.                     set @rtn=2   --有主鍵相同的資料,進行更新處理 
  24.                 end 
  25.         end 
  26.     else 
  27.         begin 
  28.             insert into Student values(@No,@Name,@Sex,@Age) 
  29.             set @rtn=1    --沒有相同的資料,進行插入處理 
  30.         end 
3、調用預存程序

這裡在Sql Server環境中簡單的實現了調用,在程式中調用也很方便。

具體的代碼如下:

 
  1. declare @rtn int 
  2. exec sp_Insert_Student '1101','張三','男',23,@rtn output 
  3.  
  4. if @rtn=0 
  5.     print '已經存在相同的。' 
  6. else if @rtn=1 
  7.     print '插入成功。' 
  8. else 
  9.     print '更新成功' 

一個預存程序就實現了3中情況,而且效率很高,使用靈活。 希望對大家有所協助。

在成長學習的過程中,我會不斷髮一些自己的心得體會,和大家共用。

編輯精選】

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.