SELECT HASHBYTES('MD5','123')
This select above returns me the following result: 0x202CB962AC59075B964B07152D234B70
But when I do an update to the table using the same hashbytes
UPDATE USUARIOSLOGADOS SET TOKENSESSAO = HASHBYTES('MD5','123') WHERE CODIGOUSUARIO = 1
The value that is saved is this: ,¹b¬Y[–K-#Kp
It was to record the same result as the first example, but that's not how it rolls ... Does anyone know why?