无法在 SQL Server 2008 中创建序列
我尝试使用以下查询在 SQL Server 2008 中创建序列,
CREATE SEQUENCE serial START 100
但出现以下语法错误,
消息 102,级别 15,状态 1,第 1 行
“SEQUENCE”附近的语法不正确。
如何在 SQL Server 2008 中创建序列?
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 error,
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near 'SEQUENCE'.
How to create a sequence in SQL Server 2008?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不能这样做。
SQL Server 2008 没有
SEQUENCE
的概念 - 这是 SQL Server 2012 中的新功能 (此处为 MSDN 文档)。通常,您希望为表创建一个“自动增加”列 - 在这种情况下,请使用
IDENTITY
列属性:You just cannot do this.
SQL Server 2008 does not have the concept of a
SEQUENCE
- this is a new feature in SQL Server 2012 (MSDN documentation here).Typically, you want to create an "auto-increasing" column for your table - in that case, use the
IDENTITY
column attribute instead:利用
IDENTITY
列来完成您的任务。在 msdn 上获取完整详细信息:IDENTITY
Make use of
IDENTITY
column will do your task.Get full details on msdn : IDENTITY
marc_s 是这样写的,SQL Server 2008 还没有序列。
但我们可以使用一些技巧来模仿序列行为。有时我们需要为某些表生成标识符而不插入任何数据。
或者为不同的表生成ID。
在这种情况下我使用这种结构。
创建一个表:
然后我使用此脚本生成 Id:
在我的应用程序中,它看起来像:
How marc_s has wrote, SQL Server 2008 does not have sequences yet.
But we can use some trick to imitate sequences behaviour. Sometimes we need generate identifier for some table without inserting any data.
Or generate IDs for different tables.
In such situation I use this structure.
Create a table:
Then I use this script to generate Id:
In my app it looks like: