数据库
首页 > 数据库> > MySQL:如何获取最后一次插入数据库的时间戳

MySQL:如何获取最后一次插入数据库的时间戳

作者:互联网

我如何检查上次写入数据库的时间(时间戳),与插入的数据库表无关?

解决方法:

原来不是答案(不能删除为已接受).请参阅此答案下方的评论.

我无法使用information_schema.tables update_time,因为该列没有被更新,但是对于create_time来说,它可以工作.如果update_time得到更新(在您的设置中可能为true),它将适用于update_time(如果已更改).

select table_schema,table_name,max_time from information_schema.tables t1 JOIN 
 (select MAX(t2.create_time) AS max_time FROM 
  information_schema.tables t2 where  
  table_schema ='test') as t3  
on t1.create_time = t3.max_time;

标签:information-schema,database-schema,timestamp,mysql,database
来源: https://codeday.me/bug/20191201/2082203.html