I have a mySQL statement which ends in:
ON DUPLICATE KEY UPDATE ....
And then I go and update all my values in my row. My issue is in my table when I created it I have a date column with data type:
TIMESTAMP
And default entry is:
CURRENT_TIMESTAMP
My issue is that I need the timestamp to update too. Is there a way to have mySQL auto update the time stamp when I update everything else manually?