name_id(INT)(PRIMARY) name(VARCHAR(50)) add_time(DATETIME)
1 stuff 2015-10-22 10:55:41
2 stuff 2015-11-25 14:54:20
I have table main
as shown. User can add new stuff into this table.I want a trigger event that:
runs 10 minutes after the new row has been added into
main
gets
name_id
for that newname
I now i need a MySql Event
rather than a trigger
since i want to wait 10 minutes. However i couldn't understand how i am gonna trigger this new event for a specific row rather than a whole table. Thanks.