Database view a table of the most recent update time

Last updated database to see a list of

SELECT 
    `TABLE_NAME`, `UPDATE_TIME` 
FROM 
    `information_schema`.`TABLES` 
WHERE 
    `information_schema`.`TABLES`.`TABLE_SCHEMA` = 'ieipdb2' (数据库名)
AND
    `information_schema`.`TABLES`.`TABLE_NAME` = 's_index_report'(表名);
Released seven original articles · won praise 0 · Views 90

Guess you like

Origin blog.csdn.net/qq_39052099/article/details/104320475