Hi, I've created one query to filter record from three tables:
-TblTitle (consists of books' title, subject, ISBN as the primary key);
-TblTitlAuthor (consists of ISBN and Au_ID);
-TblAuthor (consists of Au_ID, Author name).
I have TblTitlAuthor because TblTitle and TblAuthor has many-to-many relationship, that is why to make them one-to-many, I've linked them with TblTitlAuthor.
The result of the query will be stored in another form under some text boxes such as title, author, ISBN, obtained from the query as the source. I notice that the records shown will be repeated since many authors link to one title, e.g.:
record no. 1:
title: programming in vb
author: xyz
ISBN: 123
record no.2:
title: programming in vb
author: abc
ISBN: 123
How to set the result only shows ONE record with combined authors? Thanks.
Regards,
Sandra
-TblTitle (consists of books' title, subject, ISBN as the primary key);
-TblTitlAuthor (consists of ISBN and Au_ID);
-TblAuthor (consists of Au_ID, Author name).
I have TblTitlAuthor because TblTitle and TblAuthor has many-to-many relationship, that is why to make them one-to-many, I've linked them with TblTitlAuthor.
The result of the query will be stored in another form under some text boxes such as title, author, ISBN, obtained from the query as the source. I notice that the records shown will be repeated since many authors link to one title, e.g.:
record no. 1:
title: programming in vb
author: xyz
ISBN: 123
record no.2:
title: programming in vb
author: abc
ISBN: 123
How to set the result only shows ONE record with combined authors? Thanks.
Regards,
Sandra