无法在 SQL Server 2008 中创建序列

发布于 2024-12-02 04:35:04 字数 240 浏览 0 评论 0原文

我尝试使用以下查询在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寒尘 2024-12-09 04:35:04

你不能这样做。

SQL Server 2008 没有 SEQUENCE 的概念 - 这是 SQL Server 2012 中的新功能 (此处为 MSDN 文档)

通常,您希望为表创建一个“自动增加”列 - 在这种情况下,请使用 IDENTITY 列属性:

CREATE TABLE dbo.YourTable
( TableID INT 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:

CREATE TABLE dbo.YourTable
( TableID INT IDENTITY,
 .....
つ可否回来 2024-12-09 04:35:04

利用 IDENTITY 列来完成您的任务。

在 msdn 上获取完整详细信息:IDENTITY

Make use of IDENTITY column will do your task.

Get full details on msdn : IDENTITY

蘑菇王子 2024-12-09 04:35:04

marc_s 是这样写的,SQL Server 2008 还没有序列。
但我们可以使用一些技巧来模仿序列行为。有时我们需要为某些表生成标识符而不插入任何数据。
或者为不同的表生成ID。
在这种情况下我使用这种结构。

创建一个表:

create table IdSequence (id int identity(1,1))

然后我使用此脚本生成 Id:

begin tran 
 insert into IdSequence output inserted.id default values 
rollback tran

在我的应用程序中,它看起来像:

    public Int32 GetNextId()
    {
        Int32 id = 0;
        using (var transaction = Session.BeginTransaction())
        {
            id = Session.CreateSQLQuery("insert IdSequence output inserted.id default values").UniqueResult<Int32>();
            transaction.Rollback();
        }

        return 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:

create table IdSequence (id int identity(1,1))

Then I use this script to generate Id:

begin tran 
 insert into IdSequence output inserted.id default values 
rollback tran

In my app it looks like:

    public Int32 GetNextId()
    {
        Int32 id = 0;
        using (var transaction = Session.BeginTransaction())
        {
            id = Session.CreateSQLQuery("insert IdSequence output inserted.id default values").UniqueResult<Int32>();
            transaction.Rollback();
        }

        return id;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文