UUID_SHORT
Generate a short 64-bit UUID. This function returns a unique, monotonically increasing integer suitable for use as a compact identifier.
Syntax
UUID_SHORT()Description
(server_id & 255) << 56
+ (server_startup_time_in_seconds << 24)
+ incremented_variable++;Examples
See Also
Last updated
Was this helpful?

