Menemukan tabel terakhir yang dibuat mysql
select table_name, create_time
from information_schema.TABLES
where table_schema = 'andomar'
order by CREATE_TIME desc
limit 1
Famous Ferret