sql存儲進程幾個簡略例子。本站提示廣大學習愛好者:(sql存儲進程幾個簡略例子)文章只能為提供參考,不一定能成為您想要的結果。以下是sql存儲進程幾個簡略例子正文
sql存儲是數據庫操作進程中比擬主要的一個環節,關於一些初學者來講也是比擬籠統難懂得的,本文我將經由過程幾個實例來解析數據庫中的sql存儲進程,如許就將籠統的事物抽象化,比擬輕易懂得。
例1:
create proc proc_stu @sname varchar(20), @pwd varchar(20) as select * from ren where sname=@sname and pwd=@pwd go
檢查成果:proc_stu 'admin','admin'
例2:
上面的存儲進程完成用戶驗證的功效,假如不勝利,前往0,勝利則前往1.
CREATE PROCEDURE VALIDATE @USERNAME CHAR(20),@PASSWORD CHAR(20),@LEGAL BIT OUTPUT AS IF EXISTS(SELECT * FROM REN WHERE SNAME = @USERNAME AND PWD = @PASSWORD) SELECT @LEGAL = 1 ELSE SELECT @LEGAL = 0
在法式中挪用該存儲進程,並依據@LEGAL參數的值斷定用戶能否正當。
例3:一個高效的數據分頁的存儲進程 可以輕松敷衍百萬數據
CREATE PROCEDURE pageTest --用於翻頁的測試 --須要把排序字段放在第一列 ( @FirstID nvarchar(20)=null, --以後頁面裡的第一筆記錄的排序字段的值 @LastID nvarchar(20)=null, --以後頁面裡的最初一筆記錄的排序字段的值 @isNext bit=null, --true 1 :下一頁;false 0:上一頁 @allCount int output, --前往總記載數 @pageSize int output, --前往一頁的記載數 @CurPage int --頁號(第幾頁)0:第一頁;-1最初一頁。 ) AS if @CurPage=0--表現第一頁 begin --統計總記載數 select @allCount=count(ProductId) from Product_test set @pageSize=10 --前往第一頁的數據 select top 10 ProductId, ProductName, Introduction from Product_test order by ProductId end else if @CurPage=-1--表現最初一頁 select * from (select top 10 ProductId, ProductName, Introduction from Product_test order by ProductId desc ) as aa order by ProductId else begin if @isNext=1 --翻到下一頁 select top 10 ProductId, ProductName, Introduction from Product_test where ProductId > @LastID order by ProductId else --翻到上一頁 select * from (select top 10 ProductId, ProductName, Introduction from Product_test where ProductId < @FirstID order by ProductId desc) as bb order by ProductId end
上文中講到的這三個例子都是sql存儲進程比擬典范的例子,願望年夜家好勤學習,都可以或許學到年夜家各自須要的器械。