开发者

MySQL, get the last created table name

开发者 https://www.devze.com 2023-01-03 04:34 出处:网络
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 lim

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;
0

精彩评论

暂无评论...
验证码 换一张
取 消