SQL触发器写法

我想写一个触发器,当table表中的a,b,c字段为True时,使得d字段更新为true,在线等... 我想写一个触发器,当table表中的a,b,c字段为True时,使得d字段更新为true,在线等 展开
 我来答
在物理学之后
2011-04-19 · TA获得超过110个赞
知道小有建树答主
回答量:88
采纳率:0%
帮助的人:101万
展开全部
create trigger dbo.SetTrue
on YourTable for update
as
if exists (select 'True'
from inserted as i
where i.a = true and i.b = true and i.c = true )
update YourTable
set YourTable.d = true
where YourTable.a = true and YourTable.b = true and YourTable.c = true
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友2dca20d
2014-12-18 · TA获得超过4036个赞
知道大有可为答主
回答量:2638
采纳率:77%
帮助的人:1034万
展开全部
ALTER trigger [dbo].[trg_allwage]
on [dbo].[Factory]
after insert
as
begin
declare @allwages float
select @allwages=sum(wages) from dbo.employee
update dbo.Factory set allwages=@allwages where factory='A1001'
end

这样改试一下。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
用户ID以注销
2014-12-18 · TA获得超过156个赞
知道小有建树答主
回答量:388
采纳率:0%
帮助的人:137万
展开全部
declare @wages float,@allwages float
select @wages=sum(wages) from dbo.employee
print @allwages
update dbo.Factory set allwages=@wages where factory='A1001'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Ice_swordman
2011-04-19 · 超过14用户采纳过TA的回答
知道答主
回答量:35
采纳率:0%
帮助的人:36.5万
展开全部
create trigger t_update on [table]
for update
as
update [table] set d=1 where a=1 and b=1 and c=1
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式