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

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -