Languages
[Edit]
EN

PostgreSQL - max value for grouped rows

0 points
Created by:
Brian-Tompset
491

In this article, we would like to show you how to find max value for grouped rows in PostgreSQL.

Quick solution:

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

Practical example

To show how to find max value for grouped rows, we will use the following table:

PostgreSQL - example data used to find max value for grouped rows
PostgreSQL - example data used to find max value for grouped rows

Note:

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

Example

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 - find max value for grouped rows - result
PostgreSQL - find max value for grouped rows - 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 - max value for grouped rows
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