创建 SQL 身份作为主键?

时间:2022-11-24
本文介绍了创建 SQL 身份作为主键?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

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

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

推荐答案

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

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).

这篇关于创建 SQL 身份作为主键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

上一篇:包含列的索引,有什么区别? 下一篇:如何使用一个命令删除 SQL 数据库中的所有索引

相关文章

最新文章