Skip to content

Instantly share code, notes, and snippets.

@Tolerant
Created May 3, 2018 11:17
Show Gist options
  • Save Tolerant/1f63f3b6c11ae4e2aad5de15d4625d81 to your computer and use it in GitHub Desktop.
Save Tolerant/1f63f3b6c11ae4e2aad5de15d4625d81 to your computer and use it in GitHub Desktop.
Convert 1с guid to HEX string
SELECT TOP 10
CONVERT(UNIQUEIDENTIFIER, CONVERT(BINARY(16), Fld)) AS guid
FROM [DATABASE]..[Info]
ORDER BY _Period DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment