0

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

我正在寻找类似的东西

SHOW TABLES FROM MY_DATABASE;
4

1 回答 1

0

You can query the tables with information_schema.tables

select table_name, 
       coalesce(update_time, create_time) as last_modified
from information_schema.tables
于 2015-01-26T13:10:01.813 回答