sql-server – CHECKSUM()和BINARY_CHECKSUM()之间有什么区别,何时/什么是适当的使用场景?

前端之家收集整理的这篇文章主要介绍了sql-server – CHECKSUM()和BINARY_CHECKSUM()之间有什么区别,何时/什么是适当的使用场景?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
MSDN再也没有真正地用简单的英文解释确切的区别,或者是什么时候选择一个.

CHECKSUM

Returns the checksum value computed over a row of a table,or over a list of expressions. CHECKSUM is intended for use in building hash indexes.

BINARY_CHECKSUM

Returns the binary checksum value computed over a row of a table or over a list of expressions. BINARY_CHECKSUM can be used to detect changes to a row of a table.

提示使用二进制校验和来检测行更改,但不是为什么.

解决方法

原文链接:https://www.f2er.com/mssql/82303.html

猜你在找的MsSQL相关文章