在 SQL Server 中创建外键
数据库管理涉及在表之间创建互连以维护数据完整性。实现此目的的一种方法是使用外键。 SQL Server 使用特定的语法来声明外键约束,这将其与 PostgreSQL 等其他数据库系统区分开来。
语法问题和解决方案
提供的 SQL 脚本旨在创建三个表:exams、question_bank 和 anwser_bank,其中 Question_bank 表使用外键约束引用 exams 表。但是,执行时会出现错误:
Msg 8139, Level 16, State 0, Line 9 Number of referencing columns in foreign key differs from number of referenced columns, table 'question_bank'.
错误解释
此错误表示外键声明中引用的列数与引用表中的列数。在提供的脚本中,表 Question_bank 中的外键约束引用了 exams 中的 exam_id 列,但引用的表没有名为 exam_id 的列。
更正外键约束
要解决此问题,必须更新外键声明以引用正确的列,即表中的 exam_id
create table question_bank ( question_id uniqueidentifier primary key, question_exam_id uniqueidentifier not null, -- References "exam_id" in table "exams" question_text varchar(1024) not null, question_point_value decimal, constraint FK_question_bank_exam_id foreign key references exams(exam_id) );
替代语法
如果需要,可以使用 ALTER TABLE 语句创建外键约束,该语句可以灵活地在之后添加约束表已创建:
alter table question_bank add constraint FK_question_bank_exam_id FOREIGN KEY ( question_exam_id ) references exams(exam_id)
此方法允许对约束命名和时间安排进行更精细的控制创作。
以上是如何解决SQL Server建表时出现外键约束错误?的详细内容。更多信息请关注PHP中文网其他相关文章!