Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello,i need to few diff b/w these
1.diff b/w join and concatenation
when to use join and when to use concatenation in real time
2.diff b/w join and keep
when to use join and when to use concatenation in real time
3.diff b/w join and lookup
when to use join and when to use concatenation in real time
thanks in advance
Hi,
hi
Table1 | |
A | B |
1 | Aa |
2 | Cc |
3 | Ee |
Table2 | |
A | C |
1 | Xx |
4 | Yy |
QVTable | ||
A | B | C |
1 | aa | xx |
2 | cc | |
3 | ee |
QVTab1 | |
A | B |
1 | aa |
2 | cc |
3 | ee |
QVTab2 | |
A | C |
1 | xx |
The two tables in the keep example are, of course, associated via A.
Thanks
Suresh