Let's say I have a two tables - book and author. A book can have many authors and an author can have many books, which means they are in a many to many relationship and I'll need a third table to implement that.
I really want to avoid this, as I am a beginner and this makes the queries more complicated for me.
So my question is : what would be the best way to implement this type of relationship excluding many-to-many?
I was thinking just to put a foreign key in each table so I have an authoridFK in my books table and bookIdFK in my authors table. But I am not sure what will type of a relationship would that be, will it me correct and how it will look on an ERD?
Can someone clarify these to me?