Trigger Previous topic Chapter index Next topic

INSERT_MERKMAL

 

Beschreibung

Trigger um den Primary Key zu setzen.

 

Definition

CREATE TRIGGER INSERT_MERKMAL FOR MERKMAL
ACTIVE BEFORE INSERT POSITION 0
AS
BEGIN
  NEW.MEID = GEN_ID(MEID_GEN, 2);
END

 

     Previous topic Chapter index Next topic