MySQL:是否可以列出具有修改日期的所有表?

时间:2015-01-26 13:06:37

标签: mysql runtimemodification

是否可以列出给定MySQL数据库中的所有表,并在右侧修改日期?

我正在寻找像

这样的东西
SHOW TABLES FROM MY_DATABASE;

1 个答案:

答案 0 :(得分:0)

您可以使用information_schema.tables

查询表格
select table_name, 
       coalesce(update_time, create_time) as last_modified
from information_schema.tables