you could try this to get the max value
use the iif statement to determine which col has the higher value for that row, col3 or col4
SELECT iif(col3>col4,col3,col4)
from mytable
order by 1 desc
Now wrap this with max and it will get us the one row
SELECT max(iif(col3>col4,col3,col4))
from mytable
Im loading myself with cookies as a interim fix, there goes my waistline lol