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

最佳答案

您可以运行此查询:

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

10-06 05:52