Languages
[Edit]
EN

PostgreSQL - select rows with max value of column

0 points
Created by:
Explosssive
559

In this article, we would like to show you how to select rows with the max value of a column in PostgreSQL.

Quick solution

SELECT "column1", MAX("column2")
FROM "table_name"
GROUP BY "column1";

Practical example

To show how to select rows with the max value of a column, we will use the following table:

PostgreSQL - select rows with the max value of a column - example data
PostgreSQL - select rows with the max value of a column - example data

Note:

At the end of this article you can find database preparation SQL queries.

Example 1

In this example, we will select the maximum salary value for each department.

Query:

SELECT "department_id", MAX("salary")
FROM "users"
GROUP BY "department_id";

Result:

PostgreSQL - select rows with the max value of a column - result
PostgreSQL - select rows with the max value of a column - result

Database preparation

create_tables.sql file:

CREATE TABLE "users" (
	"id" SERIAL,
	"name" VARCHAR(50) NOT NULL,
	"surname" VARCHAR(50) NOT NULL,
	"email" VARCHAR(100),
	"department_id" INTEGER,
    "salary" DECIMAL(15,2) NOT NULL,
	PRIMARY KEY ("id")
);

insert_data.sql file:

INSERT INTO "users"
	( "name", "surname", "email", "department_id", "salary")
VALUES
	('John', 'Stewart', 'john@email.com', 1, '3512.00'),
	('Chris', 'Brown', 'chris@email.com', 2, '1344.00'),
	('Kate', 'Lewis', NULL, 3, '6574.00'),
	('Ailisa', 'Gomez', 'ailisa@email.com', 3, '6500.00'),
	('Gwendolyn', 'James', NULL, 2, '4200.00'),
	('Simon', 'Collins', NULL, 1, '3320.00'),
	('Taylor', 'Martin', NULL, 2, '1500.00'),
	('Andrew', 'Thompson', 'andrew@email.com', 1, '2100.00');
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

PostgreSQL - problems

PostgreSQL - select rows with max value of column
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join