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;

 

 

posted @ 2024-03-04 13:42  西瓜汁拌面  阅读(30)  评论(0编辑  收藏  举报