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存储过程比较典型的例子,希望大家好好学习,都能够学到大家各自需要的东西。

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐