BITMAP_FROM_STRING

Converts a comma-separated string of integers to a bitmap.

Analyze Syntax

func.bitmap_from_string(<str>)

Analyze Examples

func.bitmap_from_string('1,2,3,4,5')

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

SQL Syntax

BITMAP_FROM_STRING(<str>)

SQL Examples

SELECT BITMAP_COUNT(BITMAP_FROM_STRING('1,2,3,4,5'));

┌───┐
 5 
└───┘