DROP TRIGGER
Sintassi
DROP TRIGGER [IF EXISTS] [nome_schema.]nome_trigger
Spiegazione
Questa istruzione elimina un Trigger. Il nome dello schema (database) è opzionale. Se è omesso, il trigger viene eliminato dal database corrente. Richiede il privilegio TRIGGER
sulla tabella associata al trigger.
Usando la clausola IF EXISTS
che un errore venga prodotto nel caso in cui un trigger non esista; invece, viene generata una NOTE
. Si veda SHOW WARNINGS.
Nota: Quando una tabella viene eliminata, anche i Trigger associati ad essa vengono rimossi.
Esempio
DROP TRIGGER test.example_trigger;
IF EXISTS:
DROP TRIGGER IF EXISTS test.example_trigger; Query OK, 0 rows affected, 1 warning (0.01 sec) SHOW WARNINGS; +-------+------+------------------------+ | Level | Code | Message | +-------+------+------------------------+ | Note | 1360 | Trigger does not exist | +-------+------+------------------------+
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.