according to this article
http://decipherinfosys.wordpress.com/2007/05/18/checksum-functions-in-sql-server-2005/
they say that
BINARY_CHECKSUM() returns the same value if the elements of two expressions have the same type and byte representation. So, “2Volvo Director 20″ and “3Volvo Director 30″ will yield the same value
my question is what is byte representation?
and why
SELECT BINARY_CHECKSUM('2Volvo Director 20' )// -1356512636
SELECT BINARY_CHECKSUM('3Volvo Director 30' )// -1356512636
gives the same results ?
the byte of '2' is not as the byte of '3'