在 PHPMyAdmin 中显示最新的表

Display newest tables in PHPMyAdmin

我似乎找不到识别数据库中创建的最新表的方法。这可能使用 PHPMyAdmin 吗?

您可以运行这个查询:

select table_name, create_time 
from information_schema.TABLES
where table_schema = 'andomar'
order by CREATE_TIME desc
limit 1