Skip to content
Advertisement

SQL MAX(col1, col2) with priorities

I need to select row with MAX(val1) for each group. If there is more than one row with equal val1 = MAX(val1) I need to select from them row with MAX(val2), etc. In pseudo code it should be like this:

For example:

I have table nums with one TEXT column name and three INTEGER columns — id, num1 and num2 filled with values:

I need a query which will return me this:

It could be something like

but MAX(num1, num2) doesn’t work.

I’m using sqlite3 module with python3.8.

Advertisement

Answer

I need to select row with MAX(val1) for each group. If there is more than one row with equal val1 I need to select from them row with MAX(val2)

You can use a correlated subquery:

Or a window function:

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