Created
May 3, 2018 11:17
-
-
Save Tolerant/1f63f3b6c11ae4e2aad5de15d4625d81 to your computer and use it in GitHub Desktop.
Convert 1с guid to HEX string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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