Skip to content

Instantly share code, notes, and snippets.

@ArtemAvramenko
Created February 8, 2022 11:15
Show Gist options
  • Save ArtemAvramenko/e910b31f7f72f22baec300ff97e89740 to your computer and use it in GitHub Desktop.
Save ArtemAvramenko/e910b31f7f72f22baec300ff97e89740 to your computer and use it in GitHub Desktop.
T/SQL Generate Gravatar url from email
SELECT GravatarUrl =
'https://www.gravatar.com/avatar/' +
LOWER(CONVERT(VARCHAR(32), HashBytes('MD5', '[email protected]'), 2)) +
'?s=48&d=https%3A%2F%2Fmyserver.test%2Fdefault.png'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment