I have tables books, bookauthor, Author, and Publisher
in books I have isbn, title and pubID
in bookauthor I have isbn and AuthorID
in Author I have AuthorID, Lname, Fname
in Publisher I have PubID and name
I need an sql that will show the book title, Author Fname and Lname and the Publisher name
what I have and it does not work is
select title, Fname, Lname, name
from books natural join bookauthor natural join author
/
can some one help me work this out?
thanks
in books I have isbn, title and pubID
in bookauthor I have isbn and AuthorID
in Author I have AuthorID, Lname, Fname
in Publisher I have PubID and name
I need an sql that will show the book title, Author Fname and Lname and the Publisher name
what I have and it does not work is
select title, Fname, Lname, name
from books natural join bookauthor natural join author
/
can some one help me work this out?
thanks