Skip to content
Advertisement

How to return the maximum and minimum values for specific ID SQL

Given the following SQL tables: https://imgur.com/a/NI8VrC7. For each specific ID_t I need to return the MAX() and MIN() value of Cena_c(total price) column of a given ID_t.

Based on provided tables the correct result should look like this:

Is this even possible? I haven’t found anything yet that I could use to implement my solution.

Advertisement

Answer

SELECT concat('T',ID_t), max(Cena_c) as Cena_c_max, min(Cena_c) as Cena_c_min FROM table GROUP BY ID_t

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement