Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
aggaman
Contributor
Contributor

can anyone explain the output for below left join…..

company1: 

load * inline[ 

a,

1,

1,

1];

company2:

left join  load * inline [
a,

1,

1];

Labels (1)
4 Replies
aggaman
Contributor
Contributor
Author

hi the output for above left join is ….

a

1

1

1

1

1

1

can anyone explain the logic of left join behind this?

anat
Master
Master

you have 3 records in company1 table and 2 records in company2 tables

so when you do the left join you will get 3*2=6 records as per your scenario

Hania
Creator
Creator

Hii @aggaman ,

Here is the answer of your question 

Hania_0-1705039262876.png

Hope this massage helpful.

 

aggaman
Contributor
Contributor
Author

Hi @Hania @anat 
can you please explain the logic for the above output in reference to left join