> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-fbfa8bee.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](/zh/reference/data-types/index)) — 库的名称。
* `license_type` ([String](/zh/reference/data-types/index)) — 许可证类型，例如 Apache、MIT。
* `license_path` ([String](/zh/reference/data-types/index)) — 包含许可证文本的文件路径。
* `license_text` ([String](/zh/reference/data-types/index)) — 许可证文本。

<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             │
│ [...]              │ [...]        │ [...]                               │
└────────────────────┴──────────────┴─────────────────────────────────────┘
```
