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

BUILD_BITMAP



Converts an array of positive integers to a BITMAP value.

Syntax

BUILD_BITMAP( <expr> )

Examples

SELECT BUILD_BITMAP([1,4,5])::String; ┌─────────────────────────────────┐ │ build_bitmap([1, 4, 5])::string │ ├─────────────────────────────────┤ │ 1,4,5 │ └─────────────────────────────────┘

Was this page helpful?