Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我的表最后一次修改的时间,是否可以插入、删除、更新或结构更改。
如果您的数据库使用 MyISAM 存储引擎,您可以使用以下查询
SELECT UPDATE_TIME FROM information_schema.tables WHERE TABLE_SCHEMA = 'dbname' AND TABLE_NAME = 'tabname'