The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello All,
I am facing issue with extra rows adding in left table after left join
I don't have any unique id in column also to remove duplicates, but how to ignore adding of extra rows
Please help me with resolving this
500K rows are adding extra
Solved! Go to Solution.
hi
@Anonymous
this is how different joins works
If you are doing left join so the records which are not matching with right table will also come in left join.that's why you have 500k records extra of left table.
If you want to only have matching records then use
NATURALINNERJOIN(<LeftTable>, <RightTable>)
I hope I answered your question!
hi
@Anonymous
this is how different joins works
If you are doing left join so the records which are not matching with right table will also come in left join.that's why you have 500k records extra of left table.
If you want to only have matching records then use
NATURALINNERJOIN(<LeftTable>, <RightTable>)
I hope I answered your question!
User | Count |
---|---|
75 | |
70 | |
39 | |
30 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
48 | |
46 |