# NQL算術演算子

算術演算子を使用して、[nql-compute](https://docs.nexthink.com/platform/ja/understanding-key-data-platform-concepts/nexthink-query-language-nql/nql-keywords/nql-compute "mention"), [nql-summarize](https://docs.nexthink.com/platform/ja/understanding-key-data-platform-concepts/nexthink-query-language-nql/nql-keywords/nql-summarize "mention"), および[nql-summarize-by](https://docs.nexthink.com/platform/ja/understanding-key-data-platform-concepts/nexthink-query-language-nql/nql-keywords/nql-summarize-by "mention")節内のフィールド値を計算します。

<table><thead><tr><th width="149">演算子</th><th width="245">定義</th><th>例</th></tr></thead><tbody><tr><td><code>+</code></td><td>加算</td><td><code>column_name.sum() + 10</code></td></tr><tr><td><code>-</code></td><td>減算</td><td><code>count() - 10</code></td></tr><tr><td><code>/</code></td><td>除算</td><td><code>count() / 10</code></td></tr><tr><td><code>*</code></td><td>乗算</td><td><code>count() * 0.1</code></td></tr><tr><td><code>(</code> <code>)</code></td><td>演算子のグループ化</td><td><code>(sum() / count()) / 100</code></td></tr></tbody></table>
