Depending on what you are trying to accomplish, instead of waiting, try a RIGHT OUTER JOIN if you want all the rows in ebook2 and those that match from ebook1. As you've seen, the LEFT OUTER JOIN returns all the rows from ebook1 and those that match from ebook2. If you want both, try a FULL OUTER JOIN ...
Just out of curiosity, what is the nature of the relationship between these two tables that you would want to present them the way you've asked? Specifically, what does the 'id' column in each table mean and how does the id in one table relate to the id in the other?
In other words, you said that this was desired output:
05/10/07 suzuki car 180000 06/02/07 for cultus 100000
why isn't this:
05/10/07 suzuki car 180000 06/09/07 for alto 50000
??
Jeff Mason
je.mason@comcast.net