> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> تحسب العملية AND لعمود bitmap، وتُرجع عدد العناصر بالنوع UInt64، وإذا أُضيفت اللاحقة -State، فتُرجع كائن bitmap.

# groupBitmapAnd

<div id="groupBitmapAnd">
  ## groupBitmapAnd
</div>

قُدِّم في: v20.1.0

يحسب عملية AND على عمود bitmap ويُرجع عدد عناصره.
إذا أُضيف المُركِّب اللاحقي [`-State`](/ar/reference/functions/aggregate-functions/combinators#-state)، فإنه يُرجع كائن bitmap.

**الصياغة**

```sql theme={null}
groupBitmapAnd(expr)
groupBitmapAndState(expr)
```

**الوسيطات**

* `expr` — تعبير ينتج نوعًا من `AggregateFunction(groupBitmap, UInt*)`. [`AggregateFunction(groupBitmap, UInt*)`](/ar/reference/data-types/aggregatefunction)

**القيمة المعادة**

يعيد عددًا من النوع `UInt64`، أو كائن `bitmap` عند استخدام `-State`. [`UInt64`](/ar/reference/data-types/int-uint)

**أمثلة**

**مثال على الاستخدام**

```sql title=Query theme={null}
CREATE TABLE bitmap_column_expr_test2
(
    tag_id String,
    z AggregateFunction(groupBitmap, UInt32)
)
ENGINE = MergeTree
ORDER BY tag_id;

INSERT INTO bitmap_column_expr_test2 VALUES ('tag1', bitmapBuild(cast([1,2,3,4,5,6,7,8,9,10] AS Array(UInt32))));
INSERT INTO bitmap_column_expr_test2 VALUES ('tag2', bitmapBuild(cast([6,7,8,9,10,11,12,13,14,15] AS Array(UInt32))));
INSERT INTO bitmap_column_expr_test2 VALUES ('tag3', bitmapBuild(cast([2,4,6,8,10,12] AS Array(UInt32))));

SELECT groupBitmapAnd(z) FROM bitmap_column_expr_test2 WHERE like(tag_id, 'tag%');
```

```response title=Response theme={null}
┌─groupBitmapAnd(z)─┐
│               3   │
└───────────────────┘
```

**استخدام المُعدِّل -State**

```sql title=Query theme={null}
SELECT arraySort(bitmapToArray(groupBitmapAndState(z))) FROM bitmap_column_expr_test2 WHERE like(tag_id, 'tag%');
```

```response title=Response theme={null}
┌─arraySort(bitmapToArray(groupBitmapAndState(z)))─┐
│ [6,8,10]                                         │
└──────────────────────────────────────────────────┘
```
