how do I modify the sql below to do ascending order by title and remove duplicates so the titles will not duplicate for the fname and lname and take out the duplicates of name for fname and lname
select title, Fname, Lname, name
from books b, bookauthor ba, author a, publisher p
where b.pubID = p.pubid and b.isbn = ba.isbn
and ba.authorid = a.authorid
/
thanks
select title, Fname, Lname, name
from books b, bookauthor ba, author a, publisher p
where b.pubID = p.pubid and b.isbn = ba.isbn
and ba.authorid = a.authorid
/
thanks