Tagged Questions
2
votes
2answers
3k views
Convert binary string to bigint in MySQL?
I am attempting to hash a string to a 64-bit value (bigint) in MySQL. I am aware of the MD5() function, which returns a 128-bit hash as a binary string. I'd be happy to just take the bottom or top 64 ...