创建 SQL 身份作为主键?

Create SQL identity as primary key?(创建 SQL 身份作为主键?)
本文介绍了创建 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 身份作为主键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)