Languages
[Edit]
EN

MS SQL Server - minimum value for grouped rows

0 points
Created by:
Elleanor-Williamson
320

In this article, we would like to show you how to find min value for grouped rows in MS SQL Server.

Quick solution:

SELECT [column1], MIN([column2])
FROM [table_name]
GROUP BY [column1];

Practical example

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

MS SQL Server - example data used to find min value for grouped rows
MS SQL Server - example data used to find min 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 minimum salary value for each department.

Query:

SELECT [department_id], MIN([salary])
FROM [users]
GROUP BY [department_id];

Result:

MS SQL Server - find min value for grouped rows - result
MS SQL Server - find min value for grouped rows - result

Database preparation

create_tables.sql file:

CREATE TABLE [users] (
	[id] INT IDENTITY(1,1),
	[name] VARCHAR(50) NOT NULL,
	[surname] VARCHAR(50) NOT NULL,
	[email] VARCHAR(100),
	[department_id] INT,
    [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.

MS SQL Server - problems

MS SQL Server - minimum 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