Rechercher dans le manuel MySQL
15.6.1.5 InnoDB and FOREIGN KEY Constraints
How the InnoDB
storage engine handles foreign
key constraints is described under the following topics in this
section:
For foreign key usage information and examples, see Section 13.1.20.6, “Using FOREIGN KEY Constraints”.
Foreign Key Definitions
Foreign key definitions for InnoDB
tables are
subject to the following conditions:
InnoDB
permits a foreign key to reference any index column or group of columns. However, in the referenced table, there must be an index where the referenced columns are the first columns in the same order. Hidden columns thatInnoDB
adds to an index are also considered (see Section 15.6.2.1, “Clustered and Secondary Indexes”).InnoDB
does not currently support foreign keys for tables with user-defined partitioning. This means that no user-partitionedInnoDB
table may contain foreign key references or columns referenced by foreign keys.InnoDB
allows a foreign key constraint to reference a nonunique key. This is anInnoDB
extension to standard SQL.
Referential actions for foreign keys of
InnoDB
tables are subject to the following
conditions:
While
SET DEFAULT
is allowed by the MySQL Server, it is rejected as invalid byInnoDB
.CREATE TABLE
andALTER TABLE
statements using this clause are not allowed for InnoDB tables.If there are several rows in the parent table that have the same referenced key value,
InnoDB
acts in foreign key checks as if the other parent rows with the same key value do not exist. For example, if you have defined aRESTRICT
type constraint, and there is a child row with several parent rows,InnoDB
does not permit the deletion of any of those parent rows.InnoDB
performs cascading operations through a depth-first algorithm, based on records in the indexes corresponding to the foreign key constraints.If
ON UPDATE CASCADE
orON UPDATE SET NULL
recurses to update the same table it has previously updated during the cascade, it acts likeRESTRICT
. This means that you cannot use self-referentialON UPDATE CASCADE
orON UPDATE SET NULL
operations. This is to prevent infinite loops resulting from cascaded updates. A self-referentialON DELETE SET NULL
, on the other hand, is possible, as is a self-referentialON DELETE CASCADE
. Cascading operations may not be nested more than 15 levels deep.Like MySQL in general, in an SQL statement that inserts, deletes, or updates many rows,
InnoDB
checksUNIQUE
andFOREIGN KEY
constraints row-by-row. When performing foreign key checks,InnoDB
sets shared row-level locks on child or parent records it has to look at.InnoDB
checks foreign key constraints immediately; the check is not deferred to transaction commit. According to the SQL standard, the default behavior should be deferred checking. That is, constraints are only checked after the entire SQL statement has been processed. UntilInnoDB
implements deferred constraint checking, some things are impossible, such as deleting a record that refers to itself using a foreign key.
A foreign key constraint on a stored generated column cannot use
CASCADE
,SET NULL
, orSET DEFAULT
asON UPDATE
referential actions, nor can it useSET NULL
orSET DEFAULT
asON DELETE
referential actions.A foreign key constraint on the base column of a stored generated column cannot use
CASCADE
,SET NULL
, orSET DEFAULT
asON UPDATE
orON DELETE
referential actions.A foreign key constraint cannot reference a virtual generated column.
Prior to MySQL 8.0, a foreign key constraint cannot reference a secondary index defined on a virtual generated column.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-innodb-foreign-key-constraints.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.