I am little confused with Left outer join in Data Expert for CR XI.
In first scenario I m dealing with around 3 tables out of which table A and Table B are INNER JOINED. So I am getting all the records for Table A plus where the values match with Table B
Next scenarion I do a Left outer join between table A and B and I get All values for A plus Null values for B where records dont match.
Next scenario I do a Left outer join between A and B and drop in a Constraint like TableB.Colum1<>30 (I am trying to get all values that are not equal to 30 along with the NULL values). But the result set I am getting is showing me values that are <>30 but excluding the NULL values. It seems as if my left outer join is behaving like inner join.
Please give your suggestions
In first scenario I m dealing with around 3 tables out of which table A and Table B are INNER JOINED. So I am getting all the records for Table A plus where the values match with Table B
Next scenarion I do a Left outer join between table A and B and I get All values for A plus Null values for B where records dont match.
Next scenario I do a Left outer join between A and B and drop in a Constraint like TableB.Colum1<>30 (I am trying to get all values that are not equal to 30 along with the NULL values). But the result set I am getting is showing me values that are <>30 but excluding the NULL values. It seems as if my left outer join is behaving like inner join.
Please give your suggestions