SQL/MX 2.x Reference Manual (G06.24+, H06.03+)

SQL/MX Functions and Expressions
HP NonStop SQL/MX Reference Manual523725-004
9-153
Examples of SUM
Examples of SUM
Compute the total value of parts in the current inventory:
SELECT SUM (price * qty_available)
FROM sales.parts;
(EXPR)
---------------------
117683505.96
--- 1 row(s) selected.