如何制作“无重复"SQL Server 2008 中的列?

How to make quot;No Duplicatesquot; column in SQL Server 2008?(如何制作“无重复SQL Server 2008 中的列?)
本文介绍了如何制作“无重复"SQL Server 2008 中的列?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的 SQL Server 数据库中有一个简单的表.该表包含两列:ID int, Name nvarchar(50).ID 列是我的表的主键.

I have a simple table in my SQL Server database. This table contains two columns: ID int, Name nvarchar(50). The ID column is the primary key for my table.

我希望Name"列是(No Duplicates)",就像在 Microsoft Access 中一样,但此列不是主列.我怎么能这样做?

I want the "Name" column to be "(No Duplicates)", like in Microsoft Access, But this column isn't the primary column. How could I do this?

推荐答案

添加 该列的唯一约束:

ALTER TABLE Foo ADD CONSTRAINT UQ_Name UNIQUE (Name)

<小时>

通过 SQL Management Studio UI 添加:


To add it through SQL Management Studio UI:

  1. 打开 SQL Server Management Studio.
  2. 展开要在其中创建约束的数据库的 Tables 文件夹.
  3. 右键单击要添加约束的表,然后单击设计.
  4. 在表设计器中,点击索引/键.
  5. 点击添加.
  6. 在类型下拉列表中选择唯一键.
  1. Open SQL Server Management Studio.
  2. Expand the Tables folder of the database where you wish to create the constraint.
  3. Right-click the table where you wish to add the constraint and click Design.
  4. In Table Designer, click on Indexes/Keys.
  5. Click Add.
  6. Choose Unique Key in the Type drop-down list.

要处理发生唯一约束违反的情况,请参阅错误2601.

To handle a situation where a unique constraint violation occurs, see for error 2601.

这篇关于如何制作“无重复"SQL Server 2008 中的列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

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

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)