Forum Discussion
PBI perform inner or outer join
Data model joins are generally behaving like left outer joins, and that is perfectly fine for the vast majority of situations.
see attached
- Anonymous1 year agoNot applicable
If I give relationship between fact and dim as many to 1 in modelling, then what kind of join it is. Is it left join or inner join?
- lbendlin1 year agoSuper User
those are slightly different concepts. Read about AutoExists.
- Anonymous1 year agoNot applicable
I read about autoexists. But In my model I do have fact and dim.
fact table contains
sales product_key
20 130 2
40 3
in my product table I do have only A,B products.
Product_key Product
1 A2 B
then when I consider my sales from fact and product_ID from Product table then I am seeing as below
Sales Product20 A
30 B
40
here I am seeing blanks in Product. Which is not expected from my user. They are expecting only inner join. How to achieve this.
I don't want any inner join in my query editor.How to achieve this.