F
Fred Boer
Hello!
I can't figure out how to do this...
A book can have multiple authors, but only one of these authors should be
marked as the Primary Author. Sometimes a book is mistakenly assigned more
than one primary author. I need a query which would return all Book_ID
numbers which have more than one Primary Author. I've been trying, but
haven't come close to getting something that works. I expect this needs a
Count() in the query but I keep running into errors about aggregate
functions, and I'm confused about how to structure this.
Thanks!
Fred Boer
Tbl_Library
Book_ID (Autonumber)
Title
Etc...
Tbl_Library
Author_ID (Autonumber)
AuthorFirstname
Etc...
Tbl_BookAuthor
BookAuthor_ID (Autonumber)
Book_ID
Author_ID
PrimaryAuthor (Boolean)
I can't figure out how to do this...
A book can have multiple authors, but only one of these authors should be
marked as the Primary Author. Sometimes a book is mistakenly assigned more
than one primary author. I need a query which would return all Book_ID
numbers which have more than one Primary Author. I've been trying, but
haven't come close to getting something that works. I expect this needs a
Count() in the query but I keep running into errors about aggregate
functions, and I'm confused about how to structure this.
Thanks!
Fred Boer
Tbl_Library
Book_ID (Autonumber)
Title
Etc...
Tbl_Library
Author_ID (Autonumber)
AuthorFirstname
Etc...
Tbl_BookAuthor
BookAuthor_ID (Autonumber)
Book_ID
Author_ID
PrimaryAuthor (Boolean)