MINimal and MAXimal values
Now it's time to talk about aggregate functions - functions that calculate some summary stats. Let's start with extremal summary stats - minimum and maximum values.
To find the minimum (or maximum) value in the column use MIN
(or MAX
) functions followed by column name. For example, we can find out the cheapest car with Automatic transmission.
123SELECT MIN(price) FROM audi_cars WHERE transmission = 'Automatic'
Please note, that unlike for
DISTINCT
function you need to use parentheses forMIN
andMAX
functions.
Swipe to start coding
From the audi_cars
table find out the price
of the most expensive Diesel car (fueltype
column).
Solution
Merci pour vos commentaires !
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Awesome!
Completion rate improved to 2.63Awesome!
Completion rate improved to 2.63
MINimal and MAXimal values
Now it's time to talk about aggregate functions - functions that calculate some summary stats. Let's start with extremal summary stats - minimum and maximum values.
To find the minimum (or maximum) value in the column use MIN
(or MAX
) functions followed by column name. For example, we can find out the cheapest car with Automatic transmission.
123SELECT MIN(price) FROM audi_cars WHERE transmission = 'Automatic'
Please note, that unlike for
DISTINCT
function you need to use parentheses forMIN
andMAX
functions.
Swipe to start coding
From the audi_cars
table find out the price
of the most expensive Diesel car (fueltype
column).
Solution
Merci pour vos commentaires !
single
Awesome!
Completion rate improved to 2.63
MINimal and MAXimal values
Glissez pour afficher le menu
Now it's time to talk about aggregate functions - functions that calculate some summary stats. Let's start with extremal summary stats - minimum and maximum values.
To find the minimum (or maximum) value in the column use MIN
(or MAX
) functions followed by column name. For example, we can find out the cheapest car with Automatic transmission.
123SELECT MIN(price) FROM audi_cars WHERE transmission = 'Automatic'
Please note, that unlike for
DISTINCT
function you need to use parentheses forMIN
andMAX
functions.
Swipe to start coding
From the audi_cars
table find out the price
of the most expensive Diesel car (fueltype
column).
Solution
Merci pour vos commentaires !