My goal is to get max value for each row. For instance, my table has two columns, and the desired output is, 80,70 and 90 for each row.
I tried this code "SELECT MAX(column1, column2) from my_table" , and it showed error such as ORA-00909:invalid number of argumants
[my_table and the desired output]