使用SQL语句创建存储的具体过程如下:
1、首先,打开企业管理器,选择【工具】-【查询分析器】:
❷ SQL SERVER2000 存储过程 教程
学习存储过程,看几个实例就可以了。很好上手的。接下来就是多看多写。。。
我当初就是看了下面的例子。然后就进项目写了。
包含事务,参数,嵌套调用,游标,循环等
drop procere if exists pro_rep_shadow_rs
delimiter |
----------------------------------
-- rep_shadow_rs
-- 用来处理信息的增加,更新和删除
-- 每次只更新上次以来没有做过的数据
-- 根据不同的标志位
-- 需要一个输出的参数,
-- 如果返回为0,则调用失败,事务回滚
-- 如果返回为1,调用成功,事务提交
--
-- 测试方法
-- call pro_rep_shadow_rs( rtn)
-- select rtn
----------------------------------
create procere pro_rep_shadow_rs(out rtn int)
begin
-- 声明变量,所有的声明必须在非声明的语句前面
declare ilast_rep_sync_id int default -1
declare imax_rep_sync_id int default -1
-- 如果出现异常,或自动处理并rollback 但不再通知调用方了
-- 如果希望应用获得异常,需要将下面这一句,以及启动事务和提交事务的语句全部去掉
declare exit handler for sqlexception rollback
-- 查找上一次的
select eid into ilast_rep_sync_id from rep_de_proc_log where tbl=' rep_shadow_rs'
-- 如果不存在,则增加一行
if ilast_rep_sync_id=-1 then
insert into rep_de_proc_log(rid eid tbl) values(0 0 ' rep_shadow_rs' )
set ilast_rep_sync_id = 0
end if
-- 下一个数字
set ilast_rep_sync_id=ilast_rep_sync_id+1
-- 设置默认的返回值为0:失败
set rtn=0
-- 启动事务
start transaction
-- 查找最大编号
select max(rep_sync_id) into imax_rep_sync_id from rep_shadow_rs
-- 有新数据
if imax_rep_sync_id> =ilast_rep_sync_id then
-- 调用
call pro_rep_shadow_rs_do(ilast_rep_sync_id imax_rep_sync_id)
-- 更新日志
update rep_de_proc_log set rid=ilast_rep_sync_id eid=imax_rep_sync_id where tbl=' rep_shadow_rs'
end if
-- 运行没有异常,提交事务
commit
-- 设置返回值为1
set rtn=1
end
|
delimiter
drop procere if exists pro_rep_shadow_rs_do
delimiter |
---------------------------------
-- 处理指定编号范围内的数据
-- 需要输入2个参数
-- last_rep_sync_id 是编号的最小值
-- max_rep_sync_id 是编号的最大值
-- 无返回值
---------------------------------
create procere pro_rep_shadow_rs_do(last_rep_sync_id int max_rep_sync_id int)
begin
declare irep_operationtype varchar(1)
declare irep_status varchar(1)
declare irep_sync_id int
declare iid int
-- 这个用于处理游标到达最后一行的情况
declare stop int default 0
-- 声明游标
declare cur cursor for select id rep_operationtype irep_status rep_sync_id from rep_shadow_rs where rep_sync_id between last_rep_sync_id and max_rep_sync_id
-- 声明游标的异常处理,设置一个终止标记
declare continue handler for sqlstate ' 02000' set stop=1
-- 打开游标
open cur
-- 读取一行数据到变量
fetch cur into iid irep_operationtype irep_status irep_sync_id
-- 这个就是判断是否游标已经到达了最后
while stop < > 1 do
-- 各种判断
if irep_operationtype=' i' then
insert into rs0811 (id fnbm) select id fnbm from rep_shadow_rs where rep_sync_id=irep_sync_id
elseif irep_operationtype=' u' then
begin
if irep_status=' a' then
insert into rs0811 (id fnbm) select id fnbm from rep_shadow_rs where rep_sync_id=irep_sync_id
elseif irep_status=' b' then
delete from rs0811 where id=iid
end if
end
elseif irep_operationtype=' d' then
delete from rs0811 where id=iid
end if
-- 读取下一行的数据
fetch cur into iid irep_operationtype irep_status irep_sync_id
end while -- 循环结束
close cur -- 关闭游标
end
|
drop procere if exists pro_rep_shadow_rs
delimiter |
----------------------------------
-- rep_shadow_rs
-- 用来处理信息的增加,更新和删除
-- 每次只更新上次以来没有做过的数据
-- 根据不同的标志位
-- 需要一个输出的参数,
-- 如果返回为0,则调用失败,事务回滚
-- 如果返回为1,调用成功,事务提交
--
-- 测试方法
-- call pro_rep_shadow_rs( rtn)
-- select rtn
----------------------------------
create procere pro_rep_shadow_rs(out rtn int)
begin
-- 声明变量,所有的声明必须在非声明的语句前面
declare ilast_rep_sync_id int default -1
declare imax_rep_sync_id int default -1
-- 如果出现异常,或自动处理并rollback 但不再通知调用方了
-- 如果希望应用获得异常,需要将下面这一句,以及启动事务和提交事务的语句全部去掉
declare exit handler for sqlexception rollback
-- 查找上一次的
select eid into ilast_rep_sync_id from rep_de_proc_log where tbl=' rep_shadow_rs'
-- 如果不存在,则增加一行
if ilast_rep_sync_id=-1 then
insert into rep_de_proc_log(rid eid tbl) values(0 0 ' rep_shadow_rs' )
set ilast_rep_sync_id = 0
end if
-- 下一个数字
set ilast_rep_sync_id=ilast_rep_sync_id+1
-- 设置默认的返回值为0:失败
set rtn=0
-- 启动事务
start transaction
-- 查找最大编号
select max(rep_sync_id) into imax_rep_sync_id from rep_shadow_rs
-- 有新数据
if imax_rep_sync_id> =ilast_rep_sync_id then
-- 调用
call pro_rep_shadow_rs_do(ilast_rep_sync_id imax_rep_sync_id)
-- 更新日志
update rep_de_proc_log set rid=ilast_rep_sync_id eid=imax_rep_sync_id where tbl=' rep_shadow_rs'
end if
-- 运行没有异常,提交事务
commit
-- 设置返回值为1
set rtn=1
end
|
delimiter
drop procere if exists pro_rep_shadow_rs_do
delimiter |
---------------------------------
-- 处理指定编号范围内的数据
-- 需要输入2个参数
-- last_rep_sync_id 是编号的最小值
-- max_rep_sync_id 是编号的最大值
-- 无返回值
---------------------------------
create procere pro_rep_shadow_rs_do(last_rep_sync_id int max_rep_sync_id int)
begin
declare irep_operationtype varchar(1)
declare irep_status varchar(1)
declare irep_sync_id int
declare iid int
-- 这个用于处理游标到达最后一行的情况
declare stop int default 0
-- 声明游标
declare cur cursor for select id rep_operationtype irep_status rep_sync_id from rep_shadow_rs where rep_sync_id between last_rep_sync_id and max_rep_sync_id
-- 声明游标的异常处理,设置一个终止标记
declare continue handler for sqlstate ' 02000' set stop=1
-- 打开游标
open cur
-- 读取一行数据到变量
fetch cur into iid irep_operationtype irep_status irep_sync_id
-- 这个就是判断是否游标已经到达了最后
while stop < > 1 do
-- 各种判断
if irep_operationtype=' i' then
insert into rs0811 (id fnbm) select id fnbm from rep_shadow_rs where rep_sync_id=irep_sync_id
elseif irep_operationtype=' u' then
begin
if irep_status=' a' then
insert into rs0811 (id fnbm) select id fnbm from rep_shadow_rs where rep_sync_id=irep_sync_id
elseif irep_status=' b' then
delete from rs0811 where id=iid
end if
end
elseif irep_operationtype=' d' then
delete from rs0811 where id=iid
end if
-- 读取下一行的数据
fetch cur into iid irep_operationtype irep_status irep_sync_id
end while -- 循环结束
close cur -- 关闭游标
end
❸ 谁有数据库Sql 存储过程 类似的教程么
SQL SERVER例子
CREATE PROCEDURE 存储过程名?--创建
ALTER PROCEDURE 存储过程名?--修改
CREATE PROCEDURE INSERT_AreaCategory
@CategoryNumber varchar(1000),
@CategoryName varchar(100),
@Code varchar(50),
@Description varchar(1000),
@ParentId int,
@Layer int,
@ServicePrice decimal(18,2),
@ShowType smallint,
@IsIndexShow smallint,
@SortInfo varchar(50),
@OrderIndex int,
@UrlLink varchar(200),
@CategoryIco varchar(500),
@CreateOn datetime,
@CreateBy int,
@IntField int,
@VarcharField varchar(1000),
@Res VARCHAR(10) OUTPUT
AS
SET NOCOUNT ON
BEGIN
BEGIN TRANSACTION
DECLARE @CategoryCount INT
SELECT @CategoryCount=COUNT(*) FROM AreaCategory WHERE CategoryName=@CategoryName AND ParentId=@ParentId AND DeletionStateCode=0
IF @CategoryCount=0
BEGIN
INSERT INTO
AreaCategory
([CategoryNumber],[CategoryName],[Code],[Description],[ParentId],[Layer],[ServicePrice],[ShowType],[IsIndexShow],[SortInfo],[OrderIndex],[UrlLink],[CategoryIco],[CreateOn],[CreateBy],[IntField],[VarcharField])
VALUES
(@CategoryNumber,@CategoryName,@Code,@Description,@ParentId,@Layer,@ServicePrice,@ShowType,@IsIndexShow,@SortInfo,@OrderIndex,@UrlLink,@CategoryIco,@CreateOn,@CreateBy,@IntField,@VarcharField)
SET @Res='0' --0表示添加目录成功
END
ELSE
BEGIN
SET @Res='2' --2表示父目录下已经存在此目录
END
IF @@ERROR !=0
BEGIN
ROLLBACK TRANSACTION
RAISERROR 20000 'INSERT_OrganizationCategory: Cannot insert data into OrganizationCategory'
SET @Res='1' --1表示添加失败
RETURN(1)
END
COMMIT TRANSACTION
END
SET NOCOUNT OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
ORACLE 里面存储过程相对来说比较复杂点,基本上ORACLE里面的存储过程,函数,之类的都要放在一个包里面
首先定义包,包里面要定义个游标,用于返回数据集,还有其他包中存在的存储过程,函数等。
接着就是定义包体了,包体里面就是实实在在的存储过程和函数的实现形式。
下面写个例子
oracle返回结果集,需要用包来实现。
包的作用是定义一个游标类型,以返回结果。
下面给一个最简单的例子,你可以研究一下,很容易看懂。
CREATE OR REPLACE PACKAGE pkg_clsb
AS
--定义返回值(游标类型)
TYPE myrctype IS REF CURSOR;
--定义查询过程
PROCEDURE pro_emp (cur_result OUT myrctype);
END pkg_clsb;
/
CREATE OR REPLACE PACKAGE BODY pkg_clsb
AS
--查询过程
PROCEDURE pro_emp (cur_result OUT myrctype)
IS
sqlstr VARCHAR2 (500);
BEGIN
OPEN cur_result FOR
select * from emp ;
END pro_emp ;
END pkg_clsb;
/
❹ 怎样学习存储过程比较好
首先要学习一下相关的数据语言了解各种语言的结构,参照样例尝试学习各类操作以实践为主这样学习比较实用一些
❺ 提供一些关于SQL 存储过程 的视频教程
我这有一些自己写的存储过程的总结。
其实你自己动手写几个就清楚了。
存储过程,其实就是讲一些数据库操作封装起来,对外不可见而已。
如果你需要,我可以把我的资料给你