oracle - 使用触发器创建自增列时间:2022-12-22 08:14:23 Create Or Replace Trigger "TRIGER" Before Insert On <table_name> Referencing Old As Old New As New For Each Row Begin Select SEQ.Nextval Into :new.ID From DUAL; End;