Hello!
I would like to create insert-trigger on table A1, that will update the value in table A2. The value is intermed. I should update only 1 cell in A2, not column..
How can I do it?
for example,
CREATE TRIGGER My_INSERT
AFTER INSERT ON A1
FOR EACH ROW MODE DB2SQL
BEGIN ATOMIC
....
SET ???? = intermed;
END@
Thanks!