SELECT DISTINCT or something else.

S

shawncraig

I have a Table with 4 fields in it. Lets say (FName LName MName Age) If
I do a SELECT DISTINCT on FName LName MName I only get those 3 values
returned to me. Is there a way to see all 4 values but NOT include AGE
in the distinction?
 
G

guido via AccessMonster.com

Make your query a 'group by' query (by clicking the sigma/summation button).
FName, LName, and MName would all have "Group By" in the Total row. Change
the Age column to be something else, like Max or First.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top