Rechercher dans le manuel MySQL
1.8.3.1 PRIMARY KEY and UNIQUE Index Constraints
Normally, errors occur for data-change statements (such as
INSERT
or
UPDATE
) that would violate
primary-key, unique-key, or foreign-key constraints. If you
are using a transactional storage engine such as
InnoDB
, MySQL automatically rolls back the
statement. If you are using a nontransactional storage engine,
MySQL stops processing the statement at the row for which the
error occurred and leaves any remaining rows unprocessed.
MySQL supports an IGNORE
keyword for
INSERT
,
UPDATE
, and so forth. If you
use it, MySQL ignores primary-key or unique-key violations and
continues processing with the next row. See the section for
the statement that you are using (Section 13.2.6, “INSERT Syntax”,
Section 13.2.12, “UPDATE Syntax”, and so forth).
You can get information about the number of rows actually
inserted or updated with the
mysql_info()
C API function.
You can also use the SHOW
WARNINGS
statement. See
Section 28.7.7.36, “mysql_info()”, and
Section 13.7.6.40, “SHOW WARNINGS Syntax”.
InnoDB
and NDB
tables
support foreign keys. See
Section 1.8.3.2, “FOREIGN KEY Constraints”.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-constraint-primary-key.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.