> ## 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` ([文字列](/ja/reference/data-types)) — ライブラリ名。
* `license_type` ([文字列](/ja/reference/data-types)) — ライセンスの種類 — 例: Apache、MIT。
* `license_path` ([文字列](/ja/reference/data-types)) — ライセンス文が記載されたファイルのパス。
* `license_text` ([文字列](/ja/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             │
│ [...]              │ [...]        │ [...]                               │
└────────────────────┴──────────────┴─────────────────────────────────────┘
```
