mysql查询某个表操作记录
select table_name, create_time, update_time, table_comment from information_schema.tables t where t.table_schema = 'mallerpcrm' order by update_time desc limit 100;

select table_name, create_time, update_time, table_comment from information_schema.tables t where t.table_schema = 'mallerpcrm' order by update_time desc limit 100;
