Advertisement
fabi0

Untitled

Oct 12th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.23 KB | None | 0 0
  1. SELECT books_authors.author_id,book_title,author_name
  2. FROM books_authors
  3. INNER JOIN authors ON authors.author_id=books_authors.author_id
  4. INNER JOIN books ON books.book_id=books_authors.book_id  
  5. ORDER BY books_authors.book_id ASC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement