bitmap_max
bitmap_maxβ
descriptionβ
Syntaxβ
BIGINT BITMAP_MAX(BITMAP input)
Calculate and return the max values of a bitmap.
exampleβ
mysql> select bitmap_max(bitmap_from_string('')) value;
+-------+
| value |
+-------+
| NULL |
+-------+
mysql> select bitmap_max(bitmap_from_string('1,9999999999')) value;
+------------+
| value |
+------------+
| 9999999999 |
+------------+
keywordsβ
BITMAP_MAX,BITMAP