Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SELECT books.title as BookName, books.description as BookDescription, authors.name as Author, genres.name as Genre, publishers.name as Publisher FROM
- books
- JOIN authors_books ON authors_books.bookId = books.id
- JOIN authors ON authors.id = authors_books.authorId
- JOIN books_genres ON books_genres.bookId = books.id
- JOIN genres ON genres.id = books_genres.genreId
- JOIN publishers ON publishers.id = books.publisherId;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement