SQL Server 2008 R2。 “AUTO_INCRMENT”附近的语法不正确

发布于 2024-11-06 02:53:45 字数 249 浏览 0 评论 0原文

时会出现以下错误?

Incorrect syntax near 'AUTO_INCREMENT'.

为什么我在尝试执行

CREATE TABLE Person
(
    P_Id int NOT NULL AUTO_INCREMENT,
    Name varchar(255),

    PRIMARY KEY (P_Id)
)

正确的语法

Why do i get the following error

Incorrect syntax near 'AUTO_INCREMENT'.

while trying to execute

CREATE TABLE Person
(
    P_Id int NOT NULL AUTO_INCREMENT,
    Name varchar(255),

    PRIMARY KEY (P_Id)
)

What is the correct syntax?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

狼亦尘 2024-11-13 02:53:45
CREATE TABLE Person(
P_Id int NOT NULL IDENTITY(1,1) PRIMARY KEY,
Name varchar(255))

您应该明确声明NAMENULL还是NOT NULL,这样您就不会依赖于当前有效的连接设置

CREATE TABLE Person(
P_Id int NOT NULL IDENTITY(1,1) PRIMARY KEY,
Name varchar(255))

You should explicitly state whether NAME is NULL or NOT NULL so you are not dependant upon the current connection settings that happen to be in effect.

迷爱 2024-11-13 02:53:45
create table Person
(
    PersonId int identity(1,1) 
        constraint PK_Person primary key,
    Name varchar(255) not null
)

一些评论:

  1. 不需要为标识列指定not null,因为标识列不能为空。 ANSI_NULL_DFLT_ON 选项不会影响标识列的“可为空性”。
  2. 另一方面,为名称列指定“not null / null”非常重要,因为它将受到 ANSI_NULL_DFLT_ON 值的影响。
  3. 显式指定约束名称始终是一个好主意。因为如果不这样做,将会生成名称约束名称。如果稍后需要删除约束,则必须找出自动生成的名称。
create table Person
(
    PersonId int identity(1,1) 
        constraint PK_Person primary key,
    Name varchar(255) not null
)

Some comments:

  1. It is not needed to specify not null for identity column as identity column cannot be nullable. ANSI_NULL_DFLT_ON option does not affect 'nullability' of identity column.
  2. On other hand it is important to specify 'not null / null' for Name column, as it will be affected by ANSI_NULL_DFLT_ON value.
  3. It is always a good idea to explicitly specify names for constraints. Because if you don't, name constraint name will be generated. If you need to delete the constraint later, you will have to find out the auto-generated name.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文