SelectDB Cloud
SQL 手册
SQL 函数
Bitmap函数
BITMAP_REMOVE

bitmap_remove

description

Syntax

BITMAP BITMAP_REMOVE(BITMAP bitmap, BIGINT input)

从Bitmap列中删除指定的值。

example

mysql [(none)]>select bitmap_to_string(bitmap_remove(bitmap_from_string('1, 2, 3'), 3)) res; 
+------+
| res  |
+------+
| 1,2  |
+------+

mysql [(none)]>select bitmap_to_string(bitmap_remove(bitmap_from_string('1, 2, 3'), null)) res;
+------+
| res  |
+------+
| NULL |
+------+

keywords

BITMAP_REMOVE,BITMAP
© 2023 北京飞轮数据科技有限公司 京ICP备2022004029号 | Apache、Apache Doris 以及相关开源项目名称均为 Apache 基金会商标