sql >> Database >  >> Database Tools >> phpMyAdmin

Zelfreferentiële tabelvelden in MySQL

Een optie is om uw veld NULL . te maken -able, en stel de oudersleutel van het rootrecord in op NULL :

CREATE TABLE tb_1 (
   id       int   NOT NULL  PRIMARY KEY,
   value    int   NOT NULL,
   parent   int   NULL,
   FOREIGN KEY (parent) REFERENCES tb_1(id)
) ENGINE=INNODB;
Query OK, 0 rows affected (0.43 sec)

-- This fails:
INSERT INTO tb_1 VALUES (1, 1, 0);
ERROR 1452 (23000): A foreign key constraint fails.

-- This succeeds:
INSERT INTO tb_1 VALUES (1, 1, NULL);
Query OK, 1 row affected (0.08 sec)

Anders zou je nog steeds een NOT NULL kunnen gebruiken bovenliggende sleutel en verwijs het naar het root-record zelf:

CREATE TABLE tb_2 (
   id       int   NOT NULL  PRIMARY KEY,
   value    int   NOT NULL,
   parent   int   NOT NULL,
   FOREIGN KEY (parent) REFERENCES tb_2(id)
) ENGINE=INNODB;
Query OK, 0 rows affected (0.43 sec)

-- This fails:
INSERT INTO tb_2 VALUES (1, 1, 0);
ERROR 1452 (23000): A foreign key constraint fails.

-- This succeeds:
INSERT INTO tb_2 VALUES (1, 1, 1);
Query OK, 1 row affected (0.08 sec)


  1. MSSQL Server Management Studio (SSMS) 2005 Nieuwe querysjabloon

  2. Wat is de juiste syntaxis van de if-clausule voor een opgeslagen MySQL-functie?

  3. #1146 - Tabel 'phpmyadmin.pma_recent' bestaat niet

  4. phpMyAdmin-fout:tabel bestaat niet in engine