Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以列出给定 MySQL 数据库中的所有表,修改日期在右侧?
我正在寻找类似的东西
SHOW TABLES FROM MY_DATABASE;
You can query the tables with information_schema.tables
information_schema.tables
select table_name, coalesce(update_time, create_time) as last_modified from information_schema.tables