EN
Node.js - PostgreSQL - find first row
0
points
In this article, we would like to show you how to find the first row in the PostgreSQL database usingΒ 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 getFirstRowOrderedByName = async () => {
const query = `SELECT *
FROM "users"
ORDER BY "name"
LIMIT 1;`;
try {
await client.connect(); // creates connection
const { rows } = await client.query(query); // sends query
console.table(rows);
} catch (error) {
console.error(error.stack);
} finally {
await client.end(); // closes connection
}
};
getFirstRowOrderedByName();
Result:Β
βββββββββββ¬βββββ¬ββββββββββ¬ββββββββββββββββββββ¬ββββββββββ
β (index) β id β name β email β country β
βββββββββββΌβββββΌββββββββββΌββββββββββββββββββββΌββββββββββ€
β 0 β 2 β 'Chris' β 'chris@email.com' β 'Spain' β
βββββββββββ΄βββββ΄ββββββββββ΄ββββββββββββββββββββ΄ββββββββββ
create_tables.sql
Β file:
CREATE TABLE "users" (
"id" SERIAL,
"name" VARCHAR(100) NOT NULL,
"email" VARCHAR(100) NOT NULL,
"country" VARCHAR(15) NOT NULL,
PRIMARY KEY ("id")
);
insert_data.sql
Β file:
INSERT INTO "users"
("name", "email", "country")
VALUES
('Tom', 'tom@email.com', 'Poland'),
('Chris', 'chris@email.com', 'Spain'),
('Jack', 'jack@email.com', 'Spain'),
('Kim', 'kim@email.com', 'Vietnam'),
('Marco', 'marco@email.com', 'Italy'),
('Kate', 'kate@email.com', 'Spain'),
('Nam', 'nam@email.com', 'Vietnam');
Native SQL query (used in the above example):
SELECT *
FROM "users"
ORDER BY "name"
LIMIT 1