Is it possible to 开发者_C百科get the last created table name in a given database ?
select table_name from information_schema.tables where table_schema = 'some_database' order by create_time desc limit 1;
Is it possible to 开发者_C百科get the last created table name in a given database ?
select table_name from information_schema.tables where table_schema = 'some_database' order by create_time desc limit 1;
精彩评论