mysql - Receive ERROR 1235 (42000) when only one Trigger exists. How can I fix this? -


i have been trying following trigger run.

delimiter $$ create trigger prevent_value_less_than_6     after insert on t   each row begin     if exists (select * t numberofpeople <= 5)       delete t numberofpeople <= 5;     end if; end; $$ 

i receive following error despite having absolutely no other triggers database.

error 1235 (42000) @ line 26: version of mysql doesn't yet support 'multiple triggers same action time , event 1 table'

how can fix this?


Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -