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.
1. Practical example
const { Client } = require('pg');
const client = new Client({
    host: '127.0.0.1',
    user: 'postgres',
    database: 'database_name',
    password: 'password',
    port: 5432,
});
const fetchUniqueUsers = async () => {
    try {
        await client.connect();      // gets connection
        const { rows } = await client.query('SELECT DISTINCT "country" FROM "users"');
        console.table(rows);
    } catch (error) {
        console.error(error.stack);
    } finally {
        await client.end();          // closes connection
    }
};
fetchUniqueUsers();
Result:
┌─────────┬───────────┐
│ (index) │  country  │
├─────────┼───────────┤
│    0    │  'Spain'  │
│    1    │  'Italy'  │
│    2    │ 'Vietnam' │
│    3    │ 'Poland'  │
└─────────┴───────────┘
2. Database preparation
create_tables.sql file:
CREATE TABLE "users" (
	"id" SERIAL,
	"name" VARCHAR(100) NOT NULL,
	"country" VARCHAR(15) NOT NULL,
	PRIMARY KEY ("id")
);
insert_data.sql file:
INSERT INTO "users"
	("name", "country")
VALUES
    ('Tom', 'Poland'),
    ('Chris', 'Spain'),
    ('Jack', 'Spain'),
    ('Kim', 'Vietnam'),
    ('Marco', 'Italy'),
    ('Kate', 'Spain'),
    ('Nam', 'Vietnam');
                                    
                                    
                                