Rechercher dans le manuel MySQL

13.7.6.11 SHOW CREATE TRIGGER Syntax

  1. SHOW CREATE TRIGGER trigger_name

This statement shows the CREATE TRIGGER statement that creates the named trigger. This statement requires the TRIGGER privilege for the table associated with the trigger.

  1. mysql> SHOW CREATE TRIGGER ins_sum\G
  2. *************************** 1. row ***************************
  3.                Trigger: ins_sum
  4.               sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,
  5.                         NO_ZERO_IN_DATE,NO_ZERO_DATE,
  6.                         ERROR_FOR_DIVISION_BY_ZERO,
  7.                         NO_ENGINE_SUBSTITUTION
  8. SQL Original Statement: CREATE DEFINER=`me`@`localhost` TRIGGER `ins_sum`
  9.                         BEFORE INSERT ON `account`
  10.                         FOR EACH ROW SET @sum = @sum + NEW.amount
  11.   character_set_client: utf8mb4
  12.   collation_connection: utf8mb4_0900_ai_ci
  13.     Database Collation: utf8mb4_0900_ai_ci
  14.                Created: 2018-08-08 10:10:12.61

SHOW CREATE TRIGGER output has these columns:

  • Trigger: The trigger name.

  • sql_mode: The SQL mode in effect when the trigger executes.

  • SQL Original Statement: The CREATE TRIGGER statement that defines the trigger.

  • 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.

  • 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.

Trigger information is also available from the INFORMATION_SCHEMA TRIGGERS table. See Section 25.34, “The INFORMATION_SCHEMA TRIGGERS Table”.


Find a PHP function

Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-show-create-trigger.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

  1. View the html document Language of the document:en Manuel MySQL : https://dev.mysql.com/

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.

Contents Haut