This post is excellent and shows when last time your table changed How can I tell when a MySQL table was last updated?
but I need to find out the changes and times in last 24h since there was more than one change
This post is excellent and shows when last time your table changed How can I tell when a MySQL table was last updated?
but I need to find out the changes and times in last 24h since there was more than one change
You can try like this:
SELECT *
FROM information_schema.tables
WHERE UPDATE_TIME >= DATE_SUB(CURDATE(), INTERVAL 1 DAY)
Or,
SELECT *
FROM information_schema.tables
WHERE UPDATE_TIME >= SYSDATE() - INTERVAL 1 DAY