SQL Server 2008 R2。 “AUTO_INCRMENT”附近的语法不正确
时会出现以下错误?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该明确声明
NAME
是NULL
还是NOT NULL
,这样您就不会依赖于当前有效的连接设置。You should explicitly state whether
NAME
isNULL
orNOT NULL
so you are not dependant upon the current connection settings that happen to be in effect.一些评论:
not null
,因为标识列不能为空。ANSI_NULL_DFLT_ON
选项不会影响标识列的“可为空性”。ANSI_NULL_DFLT_ON
值的影响。Some comments:
not null
for identity column as identity column cannot be nullable.ANSI_NULL_DFLT_ON
option does not affect 'nullability' of identity column.ANSI_NULL_DFLT_ON
value.