利用trigger实现oracle记录插入时为时间戳赋值
create table timestamp_test(a timestamp,b varchar2(10));create or replace trigger ins_timestampbefore inserton timestamp_testfor each rowbegin :new.a := sysdate;end;/insert into t...