Answers for "finding last created table mysql"

SQL
1

finding last created table mysql

select table_name, create_time 
from information_schema.TABLES
where table_schema = 'andomar'
order by CREATE_TIME desc
limit 1
Posted by: Guest on February-14-2022

Code answers related to "finding last created table mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language