sql >> Database >  >> RDS >> Mysql

MySQL-externe sleutels op zichzelf

Wijzig het type uit kolom idParent naar int(10) unsigned . Het is dus hetzelfde type als de kolom waarnaar wordt verwezen idBC .

DROP TABLE IF EXISTS `biological classification`;
CREATE TABLE `biological classification` (
  `idBC` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `idParent` int(10) unsigned DEFAULT NULL,
  `type` varchar(45) DEFAULT NULL,
  `value` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`idBC`),
  UNIQUE KEY `idnew_table_UNIQUE` (`idBC`),
  CONSTRAINT `SelfKey` FOREIGN KEY (`idParent`) REFERENCES `biological classification` (`idBC`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COMMENT='A table that contains the Biological Classification of anima';


  1. MySQL update een samengevoegde tabel

  2. String naar joda LocalDate in de notatie dd-MMM-yy

  3. Standaard MySQL-tekenset wijzigen in UTF-8 in my.cnf?

  4. SHOW TABLES-instructie met meerdere LIKE-waarden