首页 > 开发 > 综合 > 正文

触发器与存储过程互调

2024-07-21 02:06:11
字体:
来源:转载
供稿:网友
注册会员,创建你的web开发资料库,
:)

--触发器如何调用存储过程
create trigger test on table
for insert
as
exec 存储过程名
go

 

--存储过程如何调用触发器
create proc test
as
update table set ...
insert table select ...
delete table ...

 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表