3

为表执行插入操作时,会根据其父表自动检查外键以确保该值存在。如果它不存在,则插入失败。

我的问题是,仅为了插入数据检查而将值设置为外键是错误的吗?

我正在尝试做的一些书呆子背景:

我正在建立一个摔跤数据库来复习大学以来我忘记的一切。作为一个摔跤迷,我认为把它作为一个话题会保持我的兴趣(而且确实如此)。

Create Table Superstar
(
    Superstar_ID Int Not Null Primary Key Identity (100,1),
    Employee_ID Int Not Null Foreign Key References Employee(Employee_ID),
    Alignment_ID Int Not Null Foreign Key References Alignment(Alignment_ID),
    SuperStar_Name Varchar(50) Not Null,
    SuperStar_Weight Varchar(50) Not Null,
    SuperStar_Height Varchar(50) Not Null,
    Billed_From Varchar(50) Not Null,
    Active Bit Not Null
)

Create Table Title
(
    Title_ID Int Not Null Primary Key Identity(1,1),
    Title_Name Varchar(50) Not Null,
    Title_Description Varchar(50) Not Null,
    **Current_Holder Int Foreign Key References Superstar(Superstar_ID),
    Former_Holder Int Foreign Key References Superstar(Superstar_ID),**
    Active Bit Not Null
)

Create Table Superstar_Title
(
    Superstar_Title_ID Int Not Null Primary Key Identity (1,1),
    Title_ID Int Not Null Foreign Key References Title(Title_ID),
    Superstar_ID Int Not Null Foreign Key References Superstar(Superstar_ID)
)

对于“Title”表,我将 Current_Holder 和Former_Holder 字段设置为外键,以检查Superstar_ID 在插入时实际存在的Superstar 表。

这是非常错误的吗?仅将外键用于内置检查约束?

4

1 回答 1

3

这就是约束的全部意义——检查数据是否一致。所以,不,这完全没问题。实际上,这是鼓励 - 保持您的数据完整性,这样您就不会得到不存在的人“持有”的东西。

编辑:我所说的“鼓励”的意思是,虽然你应该这样做,但技术使你不能这样做。如果您想手动检查,那么您可以自由地不在数据库中强制执行外键关系。但是,您必须在某处执行检查,否则您将得到无用的数据。而且由于您正在复习您的 SQL 技能,那么我想最好利用您正在使用的 RDMBS 的所有功能。

于 2013-02-09T14:20:37.910 回答