首頁 > 資料庫 > mysql教程 > 如何解決SQL Server建表時出現外鍵約束錯誤?

如何解決SQL Server建表時出現外鍵約束錯誤?

Linda Hamilton
發布: 2024-12-30 13:07:10
原創
793 人瀏覽過

How to Resolve Foreign Key Constraint Errors in SQL Server When Creating Tables?

在 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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板