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
You have two real possibilities:
So, let's think about that for a second: a book has all its details, and an ID. Each author has many details, and an ID. If you want to associate an author to a book, you add a row to another table, let's say called "Credits".
That way you have two one-to-many relationships (from author to credits, and from book to credits), and can represent what you need without any awkward multi-values.