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.
在 MySQL 中,我可以获得表的校验和,例如:
CHECKSUM TABLE 'TableName'
如何计算 SQLite 中表的校验和?有没有其他选择?
编辑:SQLite 校验和(手动计算)是否等于 MySQL 校验和?
SQLite 没有内置的校验和功能。
您可以从表中读取所有数据并自己计算数据的哈希值,或者在每个表上安装触发器以更新表校验和。