Is there any way to find maximum value of 3 different columns? I\'m trying to find records with any of 3 columns value higher than specified value and trying to avoid making
you need to use GREATEST
like that
select id from tablex where GREATEST(column1, column2, column3) > 69