MySQL,获取最后创建的表名

时间:2010-06-08 09:43:34

标签: mysql

是否可以在给定的数据库中获取最后创建的表名?

1 个答案:

答案 0 :(得分:5)

select table_name from information_schema.tables where table_schema = 'some_database' order by create_time desc limit 1;