Advertisement
vallec

Untitled

Mar 27th, 2024
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. SELECT books.title as BookName, books.description as BookDescription, authors.name as Author, genres.name as Genre, publishers.name as Publisher FROM
  2. books
  3. JOIN authors_books ON authors_books.bookId = books.id
  4. JOIN authors ON authors.id = authors_books.authorId
  5. JOIN books_genres ON books_genres.bookId = books.id
  6. JOIN genres ON genres.id = books_genres.genreId
  7. JOIN publishers ON publishers.id = books.publisherId;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement