Jump to content

[SOLVED] MySQL - get last modification time of table


iamdaboss

Recommended Posts

Hi you need access to the information_schema schema and query the TABLES table

 

something like

 

SELECT
information_schema.`TABLES`.UPDATE_TIME
FROM
information_schema.`TABLES`
WHERE
information_schema.`TABLES`.TABLE_NAME =  'your_table_name'

 

HTH

Dave

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.