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

> ClickHouse 소스의 contrib 디렉터리에 위치한 타사 라이브러리의 라이선스를 담고 있는 시스템 테이블입니다.

# system.licenses

<div id="description">
  ## 설명
</div>

ClickHouse 소스의 [contrib](https://github.com/ClickHouse/ClickHouse/tree/master/contrib) 디렉터리에 있는 타사 라이브러리의 라이선스를 포함합니다.

<div id="columns">
  ## 컬럼
</div>

* `library_name` ([String](/ko/reference/data-types)) — 라이브러리 이름입니다.
* `license_type` ([String](/ko/reference/data-types)) — 라이선스 유형입니다. 예: Apache, MIT
* `license_path` ([String](/ko/reference/data-types)) — 라이선스 텍스트가 있는 파일의 경로입니다.
* `license_text` ([String](/ko/reference/data-types)) — 라이선스 텍스트입니다.

<div id="example">
  ## 예시
</div>

```sql theme={null}
SELECT library_name, license_type, license_path FROM system.licenses LIMIT 15
```

```text theme={null}
┌─library_name───────┬─license_type─┬─license_path────────────────────────┐
│ aws-c-common       │ Apache       │ /contrib/aws-c-common/LICENSE       │
│ base64             │ BSD 2-clause │ /contrib/aklomp-base64/LICENSE      │
│ brotli             │ MIT          │ /contrib/brotli/LICENSE             │
│ [...]              │ [...]        │ [...]                               │
└────────────────────┴──────────────┴─────────────────────────────────────┘
```
