View Full Version : Query Problem


fauxpas
03-13-2005, 06:36 PM
hi

i'm doing a mini-library datebase and one of my queries is to "find all the books shorter than 500 pages, arrange the authors in alphabetical order, and display each author once only." now my questions is at displaying each author once only. How do i accomplish that? :confused: Please help. Thanks you :)

krunalprajapati
03-13-2005, 07:58 PM
Create a query for the required data, and then create a group report on that query. Group on the Author.

neileg
03-14-2005, 01:58 AM
Or, if you just want a query, use an aggregate function like Max, or First on the book data. This will return just one record per author.

fauxpas
03-14-2005, 06:59 AM
thanks alot! :)