• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

创建 SQL 身份作为主键?

用户头像
it1352
帮助1

问题说明

create table ImagenesUsuario
{
    idImagen int primary key not null IDENTITY
}

这不起作用.我该怎么做?

This doesn't work. How can I do this?

正确答案

#1

只需对语法进行简单的更改即可:

Simple change to syntax is all that is needed:

 create table ImagenesUsuario (
   idImagen int not null identity(1,1) primary key
 )

通过显式使用constraint"关键字,您可以为主键约束指定一个特定名称,而不是依赖 SQL Server 自动分配名称:

By explicitly using the "constraint" keyword, you can give the primary key constraint a particular name rather than depending on SQL Server to auto-assign a name:

 create table ImagenesUsuario (
   idImagen int not null identity(1,1) constraint pk_ImagenesUsario primary key
 )

如果根据您对表的使用情况最有意义,请添加CLUSTERED"关键字(即,搜索特定 idImagen 和写入量的平衡超过了通过其他索引对表进行聚类的好处).

Add the "CLUSTERED" keyword if that makes the most sense based on your use of the table (i.e., the balance of searches for a particular idImagen and amount of writing outweighs the benefits of clustering the table by some other index).

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tangibjgb
系列文章
更多 icon
同类精品
更多 icon
继续加载