I'm trying to make a query in Access but cannot figure out how to do it - here is what works in Sql Server
select rate1, rate2,
(select max(rate)
from (select rate1 as rate
union all
select rate2 as rate
) as a) as MaxRate
from dbo.rates;
Please help - thanks
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.