Just a quick mock up. I have made assumptions on the table structure. Three tables, one for the book, one for the author one for reviews.
I have used a left join as i assumed you would be querying based on the book, the ISBN being that tables unique-key.
Joins can take a little time to figure out, so if you need help with joins this site may help out. https://www.techonthenet.com/mysql/joins.php
select
boo.ISBN,
boo.title,
au.author_name,
boo.pages,
boo.price,
boo.publisher,
boo.publish_date,
boo.genre,
rev.review
from books as boo
left join author as au
on boo.authorID = au.authorID
left join reviews as rev
on rev.ISBN = boo.ISBN
where boo.ISBN = XXXX;
If you need help making the ERD itself, there is another stackexchange article that may help out if i misread the initial question this link here