Rechercher dans le manuel MySQL
13.7.6.38 SHOW TRIGGERS Syntax
SHOW TRIGGERS
lists the triggers
currently defined for tables in a database (the default database
unless a FROM
clause is given). This
statement returns results only for databases and tables for
which you have the TRIGGER
privilege. The LIKE
clause, if
present, indicates which table names (not trigger names) to
match and causes the statement to display triggers for those
tables. The WHERE
clause can be given to
select rows using more general conditions, as discussed in
Section 25.41, “Extensions to SHOW Statements”.
For the ins_sum
trigger defined in
Section 24.3, “Using Triggers”, the output of
SHOW TRIGGERS
is as shown here:
- *************************** 1. row ***************************
- Trigger: ins_sum
- Event: INSERT
- Table: account
- Timing: BEFORE
- Created: 2018-08-08 10:10:12.61
- sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,
- NO_ZERO_IN_DATE,NO_ZERO_DATE,
- ERROR_FOR_DIVISION_BY_ZERO,
- NO_ENGINE_SUBSTITUTION
- Definer: me@localhost
- character_set_client: utf8mb4
- collation_connection: utf8mb4_0900_ai_ci
SHOW TRIGGERS
output has these
columns:
Trigger
The name of the trigger.
Event
The trigger event. This is the type of operation on the associated table for which the trigger activates. The value is
INSERT
(a row was inserted),DELETE
(a row was deleted), orUPDATE
(a row was modified).Table
The table for which the trigger is defined.
Statement
The trigger body; that is, the statement executed when the trigger activates.
Timing
Whether the trigger activates before or after the triggering event. The value is
BEFORE
orAFTER
.Created
The date and time when the trigger was created. This is a
TIMESTAMP(2)
value (with a fractional part in hundredths of seconds) for triggers.sql_mode
The SQL mode in effect when the trigger was created, and under which the trigger executes. For the permitted values, see Section 5.1.11, “Server SQL Modes”.
Definer
The account of the user who created the trigger, in
'
format.user_name
'@'host_name
'character_set_client
The session value of the
character_set_client
system variable when the trigger was created.collation_connection
The session value of the
collation_connection
system variable when the trigger was created.Database Collation
The collation of the database with which the trigger is associated.
Trigger information is also available from the
INFORMATION_SCHEMA
TRIGGERS
table. See
Section 25.33, “The INFORMATION_SCHEMA TRIGGERS Table”.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-show-triggers.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.