Can there be constraints with the same name in a DB?

后端 未结 6 1265
逝去的感伤
逝去的感伤 2020-12-10 00:39

This is a follow-on question from the one I asked here.

Can constraints in a DB have the same name?

Say I have:

CREATE TABLE Employer
(
    E         


        
6条回答
  •  伪装坚强ぢ
    2020-12-10 01:11

    No - a constraint is a database object as well, and thus its name needs to be unique.

    Try adding e.g. the table name to your constraint, that way it'll be unique.

    CREATE TABLE BankAccount
    (
        BankAccountID   INT            PRIMARY KEY,
        EmployerCode    VARCHAR(20)    NOT NULL,
        Amount          MONEY          NOT NULL,
        CONSTRAINT FK_BankAccount_Employer 
            FOREIGN KEY (EmployerCode) REFERENCES Employer
    )
    

    We basically use "FK_"(child table)_(parent table)" to name the constraints and are quite happy with this naming convention.

    Information from MSDN

    That constraint names have to be unique to the schema (ie. two different schemas in the same database can both contain a constraint with the same name) is not explicitly documented. Rather you need to assume the identifiers of database objects must be unique within the containing schema unless specified otherwise. So the constraint name is defined as:

    Is the name of the constraint. Constraint names must follow the rules for identifiers, except that the name cannot start with a number sign (#). If constraint_name is not supplied, a system-generated name is assigned to the constraint.

    Compare this to the name of an index:

    Is the name of the index. Index names must be unique within a table or view but do not have to be unique within a database. Index names must follow the rules of identifiers.

    which explicitly narrows the scope of the identifier.

提交回复
热议问题