tags:

views:

23

answers:

1

Is it possible to get the last created table name in a given database ?

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