ms access - How to get the computed column to find a min value for a given field? -


i have ms access database table shown below

col    col b  computed col apple    10      10 apple    20      10  apple    15      10  orange   10      5 orange   5       5  orange   23      5 orange   25      5 grapes   40      30 grapes   45      30 grapes   30      30 

i want have computed col query find min value fruit please help

the min() function isn't supported in calculated fields in access. query as

   select fruits.fruitname ,min(numfruit) minimum  fruits group fruitname 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -