两个方法:
1.show table status from db_name like '表名';
2. SELECT create_time 表创建时间,update_time 最后更新时间 FROM information_schema.tables WHERE table_schema = 数据库名 AND table_name = 表名 ;
SELECT * FROM information_schema.tables WHERE table_schema = 'db_name' AND table_name = 'table_name' ;