Hi everyone!
In my project, I'm in a point that is lack of knowledge of sql programming. I have a tbUsers with a passowrd field. But, now I have to trasnform them to hash MD5, so far so good for the hash.
But, how can I select all passwords recorded and update them with its hashvalue? I don't really need the hashvalue part, just the select all and update each single row.
And since the HashBytes code is
HashBytes('MD5', 'MyPassword')
I need to take each row 'MyPassword' and do the hash part;
Thanks!!