Skip to content

Instantly share code, notes, and snippets.

@aykuttasil
Created March 25, 2016 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aykuttasil/cc2b26a19df6d4751803 to your computer and use it in GitHub Desktop.
Save aykuttasil/cc2b26a19df6d4751803 to your computer and use it in GitHub Desktop.
Convert SQL Column MD5
SELECT TOP 10
'http://localhost:51376/?q='
+ CONVERT(VARCHAR(32), HASHBYTES('MD5',
CAST(qwerty.Gonderi_No AS NVARCHAR(250))), 2)
FROM ( SELECT gnd.Gonderi_No
FROM dbo.Gonderiler AS gnd
) AS qwerty
ORDER BY qwerty.Gonderi_No;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment