I am wondering how should I save authors (in case where there are more than one author) in simple database.
In case one one book has one authors, everything is easy. The problem is when I want to have table Books and want to have possibility of making simple selects and joins with table Authors :
Books
| id | Title | ISBN | Authors? |
---------------------------------
| | | | |
| | | | |
Authors
| id | Firs Name | Last Name | Short Name | Pseudonym |
--------------------------------------------------------
| | | | | |
| | | | | |
I know that I can use separate rows with this same ISBN and TITLE, however I wondering is it good idea in case when title can be sometime very large (255-length UTF string/varchar/char).
I know that probably this is very basic problem, so sorry that I have to ask about that :(