I’m attempting to organize my personal library. I would like to catalog all my books and be able to search for a particular story. I’m sure I want a table with ISBN (or made-up index number) that includes title, publish date, etc. Then another table linked to that with author, since there could be more than one. If it’s a collection, I suppose the author table could include the name of the story which that author contributed. Will that be enough?
table: Book
ISBN, Book Title, Publisher, Date
table: Author
ISBN, First Name, Last Name, Story (same as book if a novel), Function (editor, author, intro, etc.)
They link on ISBN, of course. Now I can just search the “Story” field if I know that (or Author) and follow the link to the Book Title. Then I can find it on the shelf.
What else should I be thinking about storing? And will I need more tables?