oracle 行级触发器 update某个字段触发create table test(id int,name varchar2(10),money int);insert into test values (1,'张三',100);insert into test values (2,'李四',29);insert into test values (3,'王五',50);insert into test values (4,'赵六',56);commit;