Scorez2000
Programmer
I've been battling with access for the past hour trying to work this one out.
The system has a list of users, and each user has been assigned a list of books each. Each user had to input a comment about each book.
A user may have many books, but each book will only be read by one person. The comments will be tied to the book and each book can only have one comment against it.
Here are my tables.
User: UserID, Username, password
Book: BookID, USerID, Title
Comments: CommentID, BookID, Comment
I have loads of data in the system at the minute, but not all users have filled in all their comments. However, we would like to reward those who have filled in ALL comments against all the books the books assigned to them.
It it possible to write a query to pull out all users that have commented against every book assigned to them?
Thanks in advance.
The system has a list of users, and each user has been assigned a list of books each. Each user had to input a comment about each book.
A user may have many books, but each book will only be read by one person. The comments will be tied to the book and each book can only have one comment against it.
Here are my tables.
User: UserID, Username, password
Book: BookID, USerID, Title
Comments: CommentID, BookID, Comment
I have loads of data in the system at the minute, but not all users have filled in all their comments. However, we would like to reward those who have filled in ALL comments against all the books the books assigned to them.
It it possible to write a query to pull out all users that have commented against every book assigned to them?
Thanks in advance.