标签: mysql
是否可以在给定的数据库中获取最后创建的表名?
答案 0 :(得分:5)
select table_name from information_schema.tables where table_schema = 'some_database' order by create_time desc limit 1;