BITMAP

Returns a bitmap union of a set of values. Typically used with BITMAP_AGG.

Analyze Syntax

func.bitmap_agg(get_column(table, 'id'))

Analyze Examples

func.bitmap_agg(get_column(table, 'id'))

┌──────────┐
 (bitmap) 
└──────────┘

SQL Syntax

BITMAP(<id>)

SQL Examples

SELECT BITMAP_COUNT(BITMAP_AGG(id)) FROM user_tags;

┌─────┐
 500 
└─────┘