Mysql query to retrive data from join of three table [duplicate]

select *
from persons p join quantity q on p.id = q.people_id
join books b on q.product_id = b.id

Leave a Comment