EN
                                
                            
                        Node.js - PostgreSQL LIMIT
                                    0
                                    points
                                
                                In this article, we would like to show you how to use SQL LIMIT in Node.js.
Note: at the end of this article you can find database preparation SQL queries.
const { Client } = require('pg');
const client = new Client({
    host: '127.0.0.1',
    user: 'postgres',
    database: 'database_name',
    password: 'password',
    port: 5432,
});
const fetchUsers = async (count) => {
    try {
        await client.connect(); // gets connection
        const { rows } = await client.query('SELECT * FROM "users" LIMIT $1', [count]);
        console.log(rows);
    } catch (error) {
        console.error(error.stack);
    } finally {
        await client.end();     // closes connection
    }
};
fetchUsers(2); // LIMIT 2
Output:
[
    { id: 1, name: 'John', role: 'admin' },
    { id: 2, name: 'Chris', role: 'moderator' }
]
With OFFSET:
const { Client } = require('pg');
const client = new Client({
    host: '127.0.0.1',
    user: 'postgres',
    database: 'my_database',
    password: 'password',
    port: 5432,
});
const fetchUsers = async (offset, count) => {
    const query = `SELECT * FROM "users"
                   LIMIT $1 OFFSET $2`; 
    try {
        await client.connect();                                      // gets connection
        const { rows } = await client.query(query, [count, offset]); // sends queries
        console.log(rows);
    } catch (error) {
        console.error(error.stack);
    } finally {
        await client.end();                                          // closes connection
    }
};
fetchUsers(1, 2); // LIMIT 2 OFFSET 1 
Output:
[
    { id: 2, name: 'Chris', role: 'moderator' },
    { id: 3, name: 'Kate',  role: 'user' }
]
Database preparation
create_tables.sql file:
CREATE TABLE "users" (
	"id" SERIAL,
	"name" VARCHAR(100) NOT NULL,
	"role" VARCHAR(15) NOT NULL,
	PRIMARY KEY ("id")
);
insert_data.sql file:
INSERT INTO "users"
	("name", "role")
VALUES
	('John', 'admin'),
	('Chris', 'moderator'),
	('Kate', 'user'),
	('Denis', 'moderator');
                                    
                                    
                                