- Joined
- Mar 31, 2011
- Messages
- 2
- Reaction score
- 0
I have created a seperate entity called Author and created a relationship between Title and Author by using a CoAuthor Entity. This was to prevent a many to many relationship and also because a book (title) can have more than one author.
i want a drop down box so that i can select an author or a group of authors from the author entity (entity is the name for a table- so i am told). I cant easily do this using the combo button option so i reckon i probably need a query to resolve this. The query i tried was;
SELECT Author.AuthorFname +"-"+ Author.AuthorSname, Author.AuthorID
FROM Author, CoAuthor
WHERE Author.AuthorID=CoAuthor.AuthorID ;
When i run this query it produces a meaningless table.
The attached file has a screen shot of the relationships involved.
Hope i have provided enough information, and any help is greatly appreciated. Thanks