bitmap_bit_position
函式
適用於: Databricks SQL Databricks Runtime 13.3 LTS 和更新版本
傳回貯體中指定 BIGINT
數位的 0 位位置。
結合 bitmap_bucket_number() 函式,它會唯一識別任何 BIGINT
數位。
語法
bitmap_bit_position(expr)
引數
expr
:BIGINT
運算式。
傳回
BIGINT
介於 0 到 32767 之間的 。
如果 expr
是 >0
結果相符專案: (expr - 1) % 32768
。
如果 expr
是 <= 0
結果相符專案: abs(expr) % 32768
。
範例
> SELECT bitmap_bucket_number(1), bitmap_bit_position(1);
1 0
> SELECT bitmap_bucket_number(32768), bitmap_bit_position(32768);
1 32767
> SELECT bitmap_bucket_number(32769), bitmap_bit_position(32769);
2 0
> SELECT bitmap_bucket_number(0), bitmap_bit_position(0);
0 0
> SELECT bitmap_bucket_number(-32767), bitmap_bit_position(-32767);
0 32767
> SELECT bitmap_bucket_number(-32768), bitmap_bit_position(-32768);
-1 0