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:sql存储过程实例
下⾯的存储过程实现⽤户验证的功能,如果不成功,返回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, --true1 :下⼀页;false0:上⼀页
@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
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论