您好,我的兴趣是获取在特定日期创建的所有表,而不管它是何时创建的,以便为我尝试过的表列表获取创建时间:
select table_name,create_time
from information_schema.tables
where table_schema='database_name'
我得到的结果是
| Table_name | 2012-09-13 03:09:50 |
| Table_name | 2012-10-01 08:05:41 |
| Table_name | 2012-10-01 08:05:41 |
| temp | 2011-05-25 03:05:50 |
现在我需要获取在 2012 年 10 月 1 日为此创建的表,我已经尝试过:
select table_name,create_time
from information_schema.tables
where table_schema='database_name' and create_time='2012-10-01'
我得到了结果Empty set (5.09 sec)
。
在这里,无论时间如何,我都需要获取在 2012-10-01 创建的所有表。