| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.tools -> Re: Trigger
Hello,
try this:
CREATE TRIGGER my_trigger
BEFORE
UPDATE OF my_col1, my_col2 ON my_table
FOR EACH ROW
BEGIN
:new.my_col3 := :new.my_col1 + :new.my_col2 ;
END;
Ales
kpdp <kpdp_at_nowhere.com> wrote in message
news:3B3C919D.648E3F62_at_nowhere.com...
> Hello,
>
> I want to make a trigger which does in a table :
> Colunm 3 = Colunm 2 + Colunm 1 each time I update Column 2 or Column 1
>
> If tried without success:
>
> CREATE TRIGGER my_trigger
> AFTER
> UPDATE OF my_col1, my_col2 ON my_table
> FOR EACH ROW
> BEGIN
> UPDATE my_table SET my_col3 = my_col1 + my_col2 ;
> END;
>
> It doesn't work, do you have an idea ?
>
> Thanks in advance
>
Received on Fri Jun 29 2001 - 09:43:45 CDT
![]() |
![]() |