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

> مرجع CREATE NAMED COLLECTION

# CREATE NAMED COLLECTION

ينشئ مجموعة مُسمّاة جديدة.

<Note>
  يمكن تمكين المجموعات المُسمّاة المُنشأة باستخدام DDL في بعض خدمات ClickHouse Cloud. تواصل مع فريق الدعم لتأكيد التوافر.
</Note>

**الصيغة**

```sql theme={null}
CREATE NAMED COLLECTION [IF NOT EXISTS] name [ON CLUSTER cluster] AS
key_name1 = 'some value' [[NOT] OVERRIDABLE],
key_name2 = 'some value' [[NOT] OVERRIDABLE],
key_name3 = 'some value' [[NOT] OVERRIDABLE],
...
```

**مثال**

```sql theme={null}
CREATE NAMED COLLECTION foobar AS a = '1', b = '2' OVERRIDABLE;
```

**العبارات ذات الصلة**

* [CREATE NAMED COLLECTION](/ar/reference/statements/alter/named-collection)
* [DROP NAMED COLLECTION](/ar/reference/statements/drop#drop-function)

**انظر أيضًا**

* [دليل المجموعات المسماة](/ar/concepts/features/configuration/server-config/named-collections)

**جزء من:** `CREATE`
