mysql - Where is the syntax error on my create trigger command? -


i don't see syntax probleme on following command :

create trigger trig_apres_delete_filecache  after delete on oc_filecache begin  if ( old.path not '%update%' ) or (old.path not '%thumbnails%')       insert histo_filecache (action,date_action,path)      values ('delete', now(), old.path); end if ;  end ;; 

thanks help


Comments

Popular posts from this blog

minify - Minimizing css files -

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -