> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-vortex-format.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 서비스에서 활성화할 수 있습니다. 이용 가능 여부를 확인하려면 Support에 문의하십시오.
</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;
```

**관련 SQL 문**

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

**관련 항목**

* [이름이 지정된 컬렉션 가이드](/ko/concepts/features/configuration/server-config/named-collections)

**다음에 속함:** `CREATE`
