Forum Discussion

SezMe's avatar
SezMe
Copper Contributor
Oct 25, 2024

Using a Sequence

Consider this table: CREATE TABLE [Events]( [EventID] [int] NULL, << Other columns >> and this Sequence: CREATE SEQUENCE [NewEventID] AS [int] START WITH 1 INCREMENT BY 1 MINVALUE ...

Resources