Skip to content

Instantly share code, notes, and snippets.

@zonky2
zonky2 / sql.sql
Last active April 16, 2020 15:31
unpack uuid to UUID tl_files
# V1 Sven
LCASE(CONCAT_WS('-',
HEX(SUBSTR(uuid, 1, 4)),
HEX(SUBSTR(uuid, 5, 2)),
HEX(SUBSTR(uuid, 7, 2)),
HEX(SUBSTR(uuid, 9, 2)),
HEX(SUBSTR(uuid, 11))
))
# V2 Ingolf