现在的位置: 首页 > 综合 > 正文

触发器点滴触发器点滴

2011年05月12日 ⁄ 综合 ⁄ 共 332字 ⁄ 字号 评论关闭

触发器点滴

判断操作类型

if exists (select 1 from inserted) and exists (select 1 from deleted)
begin
   
-- update
end

if exists (select 1 from inserted) and not exists (select 1 from deleted)
begin
   
--insert
end

 

判断操作类型

if exists (select 1 from inserted) and exists (select 1 from deleted)
begin
   
-- update
end

if exists (select 1 from inserted) and not exists (select 1 from deleted)
begin
   
--insert
end

抱歉!评论已关闭.