How you do this in apex oracle? I already try using this
select br_book.title, br_publisher.name
from br_book left outer join br_publisher on br_book.publisherid=br_publisher.publisherid
and the result is not like i want to.
here the question and the result should be
Show the publisher name of each book title, including books that do not have publisher and publishers that have no published books. The expected result is provided.