मुझे mysql डेटाबेस में मौजूदा तालिका में एक विदेशी कुंजी बनाने में कुछ समस्याएं आ रही हैं।
मेरे पास तालिका है exp
:
+-------------+------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+------------------+------+-----+---------+-------+
| EID | varchar(45) | NO | PRI | NULL | |
| Comment | text | YES | | NULL | |
| Initials | varchar(255) | NO | | NULL | |
| ExpDate | date | NO | | NULL | |
| InsertDate | date | NO | | NULL | |
| inserted_by | int(11) unsigned | YES | MUL | NULL | |
+-------------+------------------+------+-----+---------+-------+
और मैं sample_df
निम्नलिखित का उपयोग करते हुए इसे संदर्भित करते हुए एक नई तालिका बनाने के लिए तैयार नहीं था :
CREATE TABLE sample_df (
df_id mediumint(5) unsigned AUTO_INCREMENT primary key,
sample_type mediumint(5) unsigned NOT NULL,
df_10 BOOLEAN NOT NULL,
df_100 BOOLEAN NOT NULL,
df_1000 BOOLEAN NOT NULL,
df_above_1000 BOOLEAN NOT NULL,
target INT(11) unsigned NOT NULL,
assay MEDIUMINT(5) unsigned zerofill NOT NULL,
insert_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
inserted_by INT(11) unsigned NOT NULL,
initials varchar(255),
experiment VARCHAR(45),
CONSTRAINT FOREIGN KEY (inserted_by) REFERENCES user (iduser),
CONSTRAINT FOREIGN KEY (target) REFERENCES protein (PID),
CONSTRAINT FOREIGN KEY (sample_type) REFERENCES sample_type (ID),
CONSTRAINT FOREIGN KEY (assay) REFERENCES assays (AID),
CONSTRAINT FOREIGN KEY (experiment) REFERENCES exp (EID)
);
लेकिन मुझे त्रुटि मिलती है:
ERROR 1215 (HY000): Cannot add foreign key constraint
मैंने कुछ और जानकारी प्राप्त करने के लिए:
SHOW ENGINE INNODB STATUS\G
जिससे मुझे मिला:
FOREIGN KEY (experiment) REFERENCES exp (EID)
):
Cannot find an index in the referenced table where the
referenced columns appear as the first columns, or column types
in the table and the referenced table do not match for constraint.
मेरे लिए कॉलम के प्रकार मेल खाते हैं, क्योंकि वे दोनों वर्कर (45) हैं। (मैंने experiment
कॉलम को अशक्त न करने की कोशिश भी की , लेकिन यह ठीक नहीं हुआ) इसलिए मुझे लगता है कि समस्या यही होनी चाहिए Cannot find an index in the referenced table where the referenced columns appear as the first columns
। लेकिन मुझे पूरा यकीन नहीं है कि इसका क्या मतलब है, या इसे कैसे जांचना / ठीक करना है। क्या किसी के पास कोई सुझाव है? और क्या मतलब है first columns
?