触发程序

发布于 2024-10-17 19:17:18 字数 76 浏览 0 评论 0原文

当表 X 中的列更新时我需要调用触发器 触发器正在将值从表 X 插入到表 Y 我们可以使用 X 中的列名将 X 中的值插入到 Y 中吗?

I need to call a trigger when a column is updated in table X
Trigger is inserting values from table X to table Y
can we just insert the values in X to Y using the column names in X?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

听风念你 2024-10-24 19:17:18

也许是这样的?

create trigger tr_U_X 
on X
for Update
as
begin
    if update(email)
        insert into Y
            (name, email)
            select i.name, i.email
                from Inserted i
end

Something like this perhaps?

create trigger tr_U_X 
on X
for Update
as
begin
    if update(email)
        insert into Y
            (name, email)
            select i.name, i.email
                from Inserted i
end
浅暮の光 2024-10-24 19:17:18

您可以添加以下代码来添加触发器,

CREATE OR REPLACE TRIGGER Trigger_Name BEFORE 

INSERT OR DELETE OR UPDATE 

ON table_name REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW

BEGIN

if condition > 0 then
         raise_application_error(-20010,'your message');
    end if;

END;

我已经管理了我的财务 ERP,您可以使用它。谢谢 。

You can add below code to add trigger

CREATE OR REPLACE TRIGGER Trigger_Name BEFORE 

INSERT OR DELETE OR UPDATE 

ON table_name REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW

BEGIN

if condition > 0 then
         raise_application_error(-20010,'your message');
    end if;

END;

I have managed it my Financial ERP you can use it . Thank you .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文