Hi Sankar
Left Outer Join
-----------------------
Even if both table does not have any common data it will still return all the data from left table,unlike Left join,so it means that left outer join will return all the rows that an inner join returns plus one row for each of the other rows in the first table that did not have a match in the second table
Left Inner Join
-----------------------
There is nothing like Left Inner Join,it is always Inner Join,so if you specified Inner Join,it will be still get only common data between the tables
let me know
thxs