MS-Access -> SELECT AS + ORDER BY = error

前端 未结 7 2032
我在风中等你
我在风中等你 2020-12-07 01:52

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

7条回答
  •  独厮守ぢ
    2020-12-07 02:14

    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.

提交回复
热议问题