I need to get the maximum value of a certain number of columns (for each row). Is it possible to do this in MySQL?
For example: SELECT MAX(column1, column2, column3) .
I'm not looking for a MAX function that aggregates the values โโof a given column. I need to aggregate the values โโof different columns for each row.
source share