oracle - How to get max value out of two max values -
how can find maximum value similar fields in different tables?
select max(select max(col) table1,select max(col) table2...) dual doesn't work! suggestions?
you can union:
select max(cols) from( select max(col) cols table1 union select max(col) cols table2)
Comments
Post a Comment