gpt4 book ai didi

mysql - 如何在 MySQL 中获取最新创建的表?

转载 作者:可可西里 更新时间:2023-11-01 07:47:56 25 4
gpt4 key购买 nike

我有一个 MySQL 数据库,每 6 个月会创建一个包含最新条目的新表。什么 SQL 命令可以获取数据库中最新创建的表?

非常感谢

最佳答案

您可以从 information_schema.TABLES 中选择最后一个 create_time

例如:

select table_name, create_time 
from information_schema.TABLES
where table_schema = 'andomar'
order by CREATE_TIME desc
limit 1

关于mysql - 如何在 MySQL 中获取最新创建的表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1808042/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com