I want to update image_updated_at field of recycle_center table if there is any insertion or update on image_url field of same table(recycle_center). I have tried this one::
CREATE OR REPLACE TRIGGER my_trigger
AFTER INSERT OR UPDATE OF image_url ON recycle_center
BEGIN
UPDATE recycle_center SET image_updated_at=NOW()
WHERE old.id=new.id
END
But, it shows an error message. How to fix it??

TIMESTAMPnot suffice? – eggyal Jan 23 at 11:52