Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there is any substitute of left join for the table having more than one fields
you can create composite key
Regards
ASHFAQ
Hi
Create a composite key if you have more than one common field between 2 tables.
Like
PID1 &'-'&PID2 as %Key
If the key fields is large length, then use Autonumber function for create the Key fields.
then?
Create the same key in both tables and join them
Regards
ASHFAQ
it will change the out put
see the attachment ,it will give different output if i used left join and if i used company key
Hi,
Check this
Regards
ASHFAQ
Hi use this
T1:
LOAD ID &'-'& NAME as key,
SECTION,
NAME
;
LOAD * Inline [
ID,NAME, SECTION
1,anu,D
2,ankita,B
3,ekta,A
4,Shweta,C
];
left join
T2:
load ID &'-'& NAME as key,
%
;
LOAD * Inline [
ID ,NAME,%
3,shialy,00
4,shruti,01
5,kirt,8
6,Stuti,.5
3,ekta,90
];
Regards
ASHFAQ
That's I know but I dnt want to use left join
As use of it increase the execution time in my original Qvw file
Then use apply map instead.
Regards
ASHFAQ