I\'m trying to make a query to retrieve the region which got the most sales for sweet products. \'grupo_produto\' is the product type, and \'regiao\' is the region. So I got
You can do it like this
select * from( select a + b as c, * from table) order by c
Access has some differences compared to Sql Server.