Can't create sequence in SQL Server 2008

前端 未结 3 2125
感动是毒
感动是毒 2020-12-21 00:08

I have tried to create a sequence in SQL Server 2008 using the following query,

CREATE SEQUENCE serial START 100

I got the following syntax

3条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-21 00:20

    Make use of IDENTITY column will do your task.

    Get full details on msdn : IDENTITY

提交回复
热议问题