📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

XXHASH32



Calculates an xxHash32 32-bit hash value for a string. The value is returned as a UInt32 or NULL if the argument was NULL.

Syntax

XXHASH32(expr)

Examples

SELECT XXHASH32('1234567890'); ┌────────────────────────┐ │ xxhash32('1234567890') │ ├────────────────────────┤ │ 3896585587 │ └────────────────────────┘

Was this page helpful?