i have the following relational database tables
to get the author name of a certain book i made the following query
SELECT authors.name
FROM authors
INNER JOIN book_author ON authors.id=book_author.author_id
INNER JOIN books
ON books.id=book_author.book_id WHERE books.id=1;
but it is giving me the error in the title .How i can fix that ?
