- Joined
- Mar 31, 2011
- Messages
- 2
- Reaction score
- 0
![moz-screenshot.png](/proxy.php?image=http%3A%2F%2Ffile%3A%2F%2F%2FC%3A%2FUsers%2FJames%2FAppData%2FLocal%2FTemp%2Fmoz-screenshot.png&hash=3bb4793c41a3074726cf3c8c60ec7b04)
![moz-screenshot-1.png](/proxy.php?image=http%3A%2F%2Ffile%3A%2F%2F%2FC%3A%2FUsers%2FJames%2FAppData%2FLocal%2FTemp%2Fmoz-screenshot-1.png&hash=0595fa8aedbcd8936e427347810ec2e6)
![moz-screenshot-2.png](/proxy.php?image=http%3A%2F%2Ffile%3A%2F%2F%2FC%3A%2FUsers%2FJames%2FAppData%2FLocal%2FTemp%2Fmoz-screenshot-2.png&hash=8f8befd10b2c129a775f15681ee62caf)
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