备用sql语句查询

Mysql查询表的最新更新时间

SELECT
	update_time,
	t.* 
FROM
	`information_schema`.`TABLES` t 
WHERE
1=1
-- and table_name LIKE '%log%' 
ORDER BY
	update_time DESC