The query to find recently created tables in mysql
select table_schema, table_name, create_time
from information_schema.TABLES
where table_schema not in ('information_schema', 'mysql')
order by CREATE_TIME desc
The query to find recently created tables in mysql
select table_schema, table_name, create_time
from information_schema.TABLES
where table_schema not in ('information_schema', 'mysql')
order by CREATE_TIME desc