Languages
[Edit]
EN

MySQL - max value for grouped rows

0 points
Created by:
Lia-Perez
505

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

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:

MySQL - example data used to find max value for grouped rows
MySQL - 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:

MySQL - find max value for grouped rows - result
MySQL - find max value for grouped rows - result

Database preparation

create_tables.sql file:

CREATE TABLE `users` (
	`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
	`name` VARCHAR(50) NOT NULL,
	`surname` VARCHAR(50) NOT NULL,
	`email` VARCHAR(100),
	`department_id` INT(10) UNSIGNED,
    `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');

Alternative titles

  1. MySQL - find max value for group
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.

MySQL - Problems

MySQL - 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