For AI agents: the complete documentation index is at llms.txt. Every page is also available as markdown by appending .md to its URL, or by sending an Accept: text/markdown request header.

UUID functions

This page describes the available functions related to UUID data type.

to_uuid

to_uuid(value, value) combines two 64-bit long into a single 128-bit uuid.

Arguments

  • value is any long

Return value

Return value type is uuid.

Examples

SELECT to_uuid(2, 1)
AS uuid FROM long_sequence(1);

Returns:

00000000-0000-0001-0000-000000000002