EN
Node.js - PostgreSQL SUM()
0 points
In this article, we would like to show you how to use SQL SUM() function in Node.js.
Note: at the end of this article you can find database preparation SQL queries.
async/await example:
xxxxxxxxxx
1
const { Client } = require('pg');
2
3
const client = new Client({
4
host: '127.0.0.1',
5
user: 'postgres',
6
database: 'database_name',
7
password: 'password',
8
port: 5432,
9
});
10
11
const execute = async (query) => {
12
try {
13
await client.connect(); // creates connection
14
const { rows } = await client.query(query); // sends query
15
console.log(rows);
16
} catch (error) {
17
console.log(error.stack);
18
} finally {
19
await client.end(); // closes connection
20
}
21
};
22
23
execute('SELECT SUM("salary") AS "salary_sum" FROM "users"');

Output:
xxxxxxxxxx
1
[ { "salary_sum": 29050 } ]
create_tables.sql
file:
xxxxxxxxxx
1
CREATE TABLE "users" (
2
"id" SERIAL NOT NULL,
3
"name" VARCHAR(50) NOT NULL,
4
"surname" VARCHAR(50) NOT NULL,
5
"department_id" INTEGER NULL,
6
"salary" DECIMAL(15,2) NOT NULL,
7
PRIMARY KEY ("id")
8
);
insert_data.sql
file:
xxxxxxxxxx
1
INSERT INTO "users"
2
( "name", "surname", "department_id", "salary")
3
VALUES
4
('John', 'Stewart', 1, '3512.00'),
5
('Chris', 'Brown', 2, '1344.00'),
6
('Kate', 'Lewis', 3, '6574.00'),
7
('Ailisa', 'Gomez', NULL, '6500.00'),
8
('Gwendolyn', 'James', 2, '4200.00'),
9
('Simon', 'Collins', 4, '3320.00'),
10
('Taylor', 'Martin', 2, '1500.00'),
11
('Andrew', 'Thompson', NULL, '2100.00');