0

我尝试使用此查询添加外键:

ALTER TABLE `StripeBilling`
        ADD CONSTRAINT `StripeBillingPatientRef`
         FOREIGN KEY (PatientRef)
          REFERENCES `Patient`(`PatientId`)
            ON DELETE SET NULL;

我的表 mysql_dump 是:

CREATE TABLE IF NOT EXISTS `StripeBilling` (
  ...
  `PatientRef` int(10) unsigned DEFAULT NULL,
  ...
) ENGINE=InnoDB AUTO_INCREMENT=10000000 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
ALTER TABLE `StripeBilling`
  ADD PRIMARY KEY (`StripeBillingId`), ADD KEY `StripeBillingAgentRef` (`AgentRef`), ADD KEY `PatientRef` (`PatientRef`);
ALTER TABLE `StripeBilling`
  MODIFY `StripeBillingId` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=10000000;
ALTER TABLE `StripeBilling`
ADD CONSTRAINT `StripeBillingAgentRef` FOREIGN KEY (`AgentRef`) REFERENCES `Agent` (`AgentId`) ON DELETE SET NULL;

患者的表格是:

CREATE TABLE IF NOT EXISTS `Patient` (
  `PatientId` int(10) unsigned NOT NULL,
  ...
) ENGINE=InnoDB AUTO_INCREMENT=10000000 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
ALTER TABLE `Patient`
  ADD PRIMARY KEY (`PatientId`), ADD UNIQUE KEY `PatientSerial` (`PatientSerial`);
ALTER TABLE `Patient`
  MODIFY `PatientId` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=10000000;

但是 MySQL 返回一个错误:

无法添加或更新子行:外键约束失败(newportal_enc. #sql-3863_9f, CONSTRAINT StripeBillingPatientRef FOREIGN KEY ( PatientRef) REFERENCES Patient( PatientId) ON DELETE SET NULL)

我很困惑,因为newportal_enc.#sql-3863_9f我的数据库中不存在表。

这不是由于索引的存在,PatientRef因为删除此索引后我的问题仍然存在。

为什么我会收到此错误,我该如何解决?

4

0 回答 0