Eingabeparameter
(Es gibt keine Eingabeparameter)
Ausgabeparameter
Parameter | Typ | Beschreibung |
---|---|---|
GEN_PTID |
INTEGER |
Der neue Primary Key Wert. |
Beschreibung
Damit erhält man einen neuen Primary Key für die PRESETS Tabelle.
Definition
CREATE PROCEDURE NEW_PTID
RETURNS (
GEN_PTID INTEGER)
AS
BEGIN
GEN_PTID = GEN_ID(PTID_GEN, 2);
END
![]() ![]() ![]() |