日期:2014-05-17 浏览次数:20663 次
create tigger test on tb for update as begin if update(a) or update(b) or update(c) update tb set d='xx' end
------解决方案--------------------
--写一个逆向逻辑不可以吗?
CREATE TRIGGER tt ON TB
FOR UPDATE
AS
BEGIN
    IF NOT UPDATE(d)
    BEGIN 
        .......
    END 
END