This is the best way I could come up with to convert a MySQL GUID/UUID generated by UUID() to a binary(16):
UNHEX(REPLACE(UUID(),'-',''))
And then storing it in a BINARY(16)
Are there any implications of doing it this way that I should know of?
|
3
|
|
|
|
|
|
Not much implications. It will slow down the queries a little, but you will hardly notice it.
If you are going to load the binary into a client and parse it there, note the
|
|||
|
|