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

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

formula - R: how to pass in a reference to the variable in glm or lm? -