如何驗證主鍵和外鍵約束
要確保主鍵和外鍵關係已正確設置,您可以使用SHOW CREATE TABLE 命令。
範例:
要驗證credentialing1 資料庫中的practices 和cred_insurances 表的約束,請使用下列指令:
SHOW CREATE TABLE credentialing1.practices;
輸出:
... ALTER TABLE `practices` ADD CONSTRAINT `FK_cred_insurances` FOREIGN KEY (`cred_insurance_id`) REFERENCES `cred_insurances` (`id`), ALTER TABLE `cred_insurances` ADD CONSTRAINT `FK_practices` FOREIGN KEY (`practice_id`) REFERENCES `practices` (`id`) ...
以上是如何使用 SHOW CREATE TABLE 驗證主鍵和外鍵約束?的詳細內容。更多資訊請關注PHP中文網其他相關文章!