Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 QlikisLife
		
			QlikisLife
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		company1:
load * inline[
a,
1,
1,
1];
company2:
left join  load * inline [
a,
1,
1];
 QlikisLife
		
			QlikisLife
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
		
			anat
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
		
			Hania
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 QlikisLife
		
			QlikisLife
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		