Skip to content

Aggregate function.

The MIN() function returns the minimum value in a set of values.

func.min(<column>)
table.station_id, func.min(table.price).alias('min_price')
| station_id | min_price |
|------------|-----------|
| 1 | 3.45 |
MIN(<expr>)
ArgumentsDescription
<expr>Any expression

The minimum value, in the type of the value.


Aggregate function.

The MIN() function returns the minimum value in a set of values.

MIN(expression)
ArgumentsDescription
expressionAny expression

The minimum value, in the type of the value.

Create a Table and Insert Sample Data

CREATE TABLE gas_prices (
id INT,
station_id INT,
price FLOAT
);
INSERT INTO gas_prices (id, station_id, price)
VALUES (1, 1, 3.50),
(2, 1, 3.45),
(3, 1, 3.55),
(4, 2, 3.40),
(5, 2, 3.35);

Query Demo: Find Minimum Gas Price for Station 1

SELECT station_id, MIN(price) AS min_price
FROM gas_prices
WHERE station_id = 1
GROUP BY station_id;

Result

| station_id | min_price |
|------------|-----------|
| 1 | 3.45 |