SHOW CREATE TRIGGER
Sintassi
SHOW CREATE TRIGGER nome_trigger
Spiegazione
Restituisce l'istruzione CREATE TRIGGER
necessaria per ricreare il trigger specificato, oltre all'SQL_MODE che era attivo al momento della creazione e il set di caratteri che era usato dalla connessione.
L'output di questa istruzione è influenzato in maniera inaffidabile dalla variabile sql_quote_show_create - si veda http://bugs.mysql.com/bug.php?id=12719 in proposito.
Esempi
SHOW CREATE TRIGGER esempio\G *************************** 1. row *************************** Trigger: esempio sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,STRICT_ALL_TABLES ,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ ENGINE_SUBSTITUTION SQL Original Statement: CREATE DEFINER=`root`@`localhost` TRIGGER esempio BEFORE INSERT ON t FOR EACH ROW BEGIN SET NEW.c = NEW.c * 2; END character_set_client: cp850 collation_connection: cp850_general_ci Database Collation: utf8_general_ci
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.