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

> Documentation for CREATE NAMED COLLECTION

# CREATE NAMED COLLECTION

Creates a new named collection.

<Note>
  DDL-created named collections can be enabled on select ClickHouse Cloud services. Contact Support to confirm availability.
</Note>

**Syntax**

```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],
...
```

**Example**

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

**Related statements**

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

**See Also**

* [Named collections guide](/concepts/features/configuration/server-config/named-collections)

**Part of:** `CREATE`
