EN
Node.js - PostgreSQL SELECT DISTINCT statement
0 points
In this article, we would like to show you how to make PostgreSQL SELECT DISTINCT statement in Node.js.

Note: at the end of this article you can find database preparation SQL queries.
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 fetchUniqueUsers = async () => {
12
try {
13
await client.connect(); // gets connection
14
const { rows } = await client.query('SELECT DISTINCT "country" FROM "users"');
15
console.table(rows);
16
} catch (error) {
17
console.error(error.stack);
18
} finally {
19
await client.end(); // closes connection
20
}
21
};
22
23
fetchUniqueUsers();
Result:
xxxxxxxxxx
1
┌─────────┬───────────┐
2
│ (index) │ country │
3
├─────────┼───────────┤
4
│ 0 │ 'Spain' │
5
│ 1 │ 'Italy' │
6
│ 2 │ 'Vietnam' │
7
│ 3 │ 'Poland' │
8
└─────────┴───────────┘
create_tables.sql
file:
xxxxxxxxxx
1
CREATE TABLE "users" (
2
"id" SERIAL,
3
"name" VARCHAR(100) NOT NULL,
4
"country" VARCHAR(15) NOT NULL,
5
PRIMARY KEY ("id")
6
);
insert_data.sql
file:
xxxxxxxxxx
1
INSERT INTO "users"
2
("name", "country")
3
VALUES
4
('Tom', 'Poland'),
5
('Chris', 'Spain'),
6
('Jack', 'Spain'),
7
('Kim', 'Vietnam'),
8
('Marco', 'Italy'),
9
('Kate', 'Spain'),
10
('Nam', 'Vietnam');