> ## 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.

> ローカルサーバー上にあるワークロードに関する情報を含むシステムテーブル。

# system.workloads

<div id="description">
  ## 説明
</div>

ローカルサーバー上に存在する[ワークロード](/ja/concepts/features/configuration/server-config/workload-scheduling#workload_entity_storage)に関する情報が含まれます。このテーブルには、各ワークロードについて1行が含まれます。

<div id="columns">
  ## カラム
</div>

* `name` ([String](/ja/reference/data-types)) — ワークロードの名前。
* `parent` ([String](/ja/reference/data-types)) — 親ワークロードの名前。
* `create_query` ([String](/ja/reference/data-types)) — ワークロードの CREATE クエリ。

<div id="example">
  ## 例
</div>

```sql theme={null}
SELECT *
FROM system.workloads
FORMAT Vertical
```

```text theme={null}
Row 1:
──────
name:         production
parent:       all
create_query: CREATE WORKLOAD production IN `all` SETTINGS weight = 9

Row 2:
──────
name:         development
parent:       all
create_query: CREATE WORKLOAD development IN `all`

Row 3:
──────
name:         all
parent:
create_query: CREATE WORKLOAD `all`
```
