1

I want to know the time when my table is last modified ,whether it may insertion,deletion,update or structure change.

1 Answers1

0

You can use the following query if your db uses the MyISAM storage engine

SELECT UPDATE_TIME
FROM   information_schema.tables
WHERE  TABLE_SCHEMA = 'dbname'
   AND TABLE_NAME = 'tabname'
G-Man
  • 7,232
  • 18
  • 72
  • 100