存儲(chǔ)過(guò)程的功能非常強(qiáng)大,在某種程度上甚至可以替代業(yè)務(wù)邏輯層,
接下來(lái)就一個(gè)小例子來(lái)說(shuō)明,用存儲(chǔ)過(guò)程插入或更新語(yǔ)句。
1、數(shù)據(jù)庫(kù)表結(jié)構(gòu)
所用數(shù)據(jù)庫(kù)為Sql Server2008。
2、創(chuàng)建存儲(chǔ)過(guò)程
(1)實(shí)現(xiàn)功能:1)有相同的數(shù)據(jù),直接返回(返回值:0);
2)有主鍵相同,但是數(shù)據(jù)不同的數(shù)據(jù),進(jìn)行更新處理(返回值:2);
3)沒(méi)有數(shù)據(jù),進(jìn)行插入數(shù)據(jù)處理(返回值:1)。
根據(jù)不同的情況設(shè)置存儲(chǔ)過(guò)程的返回值,調(diào)用存儲(chǔ)過(guò)程的時(shí)候,根據(jù)不同的返回值,進(jìn)行相關(guān)的處理。
(2)下面編碼只是實(shí)現(xiàn)的基本的功能,具體的Sql代碼如下:
Create proc sp_Insert_Student
@No char(10),
@Name varchar(20),
@Sex char(2),
@Age int,
@rtn int output
as
declare
@tmpName varchar(20),
@tmpSex char(2),
@tmpAge int
if exists(select * from Student where No=@No)
begin
select @tmpName=Name,@tmpSex=Sex,@tmpAge=Age from Student where No=@No
if ((@tmpName=@Name) and (@tmpSex=@Sex) and (@tmpAge=@Age))
begin
set @rtn=0 --有相同的數(shù)據(jù),直接返回值
end
else
begin
update Student set Name=@Name,Sex=@Sex,Age=@Age where No=@No
set @rtn=2 --有主鍵相同的數(shù)據(jù),進(jìn)行更新處理
end
end
else
begin
insert into Student values(@No,@Name,@Sex,@Age)
set @rtn=1 --沒(méi)有相同的數(shù)據(jù),進(jìn)行插入處理
end
3、調(diào)用存儲(chǔ)過(guò)程
這里在Sql Server環(huán)境中簡(jiǎn)單的實(shí)現(xiàn)了調(diào)用,在程序中調(diào)用也很方便。
具體的代碼如下:
declare @rtn int
exec sp_Insert_Student '1101','張三','男',23,@rtn output
if @rtn=0
print '已經(jīng)存在相同的。'
else if @rtn=1
print '插入成功。'
else
print '更新成功'
一個(gè)存儲(chǔ)過(guò)程就實(shí)現(xiàn)了3中情況,而且效率很高,使用靈活。 希望對(duì)大家有所幫助。
您可能感興趣的文章:- SQL Server 批量插入數(shù)據(jù)的完美解決方案
- Python實(shí)現(xiàn)讀取SQLServer數(shù)據(jù)并插入到MongoDB數(shù)據(jù)庫(kù)的方法示例
- SQLServer中防止并發(fā)插入重復(fù)數(shù)據(jù)的方法詳解
- 詳解C#批量插入數(shù)據(jù)到Sqlserver中的四種方式
- SQL Server批量插入數(shù)據(jù)案例詳解