Reputation: 3502
Is there a simple way of triggering the update of a "ON UPDATE CURRENT_TIMESTAMP" column without actually updating data in the row?
Upvotes: 0
Views: 67
Reputation: 781804
You can simply update the timestamp directly:
UPDATE yourTable SET timestamp_column = NOW()
Upvotes: 1