Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

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
 
PREVIOUS NEXT
Tagged: #finding #created #table #mysql
ADD COMMENT
Topic
Name
9+6 =