ClickHouse/docs/ja/sql-reference/aggregate-functions/reference/sum.md
2024-11-18 11:58:58 +09:00

1.2 KiB

slug sidebar_position
/ja/sql-reference/aggregate-functions/reference/sum 195

sum

合計を計算します。数値に対してのみ機能します。

構文

sum(num)

パラメータ

戻り値

まず、employeesというテーブルを作成し、いくつかの架空の従業員データを挿入します。

クエリ:

CREATE TABLE employees
(
    `id` UInt32,
    `name` String,
    `salary` UInt32
)
ENGINE = Log
INSERT INTO employees VALUES
    (87432, 'John Smith', 45680),
    (59018, 'Jane Smith', 72350),
    (20376, 'Ivan Ivanovich', 58900),
    (71245, 'Anastasia Ivanovna', 89210);

sum関数を使用して、従業員の給与の合計を求めます。

クエリ:

SELECT sum(salary) FROM employees;

結果:

   ┌─sum(salary)─┐
1. │      266140 │
   └─────────────┘