Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
What is difference between concatenate & join? Please help me...
Hi,
There are many post relate to the Concatenation and Joins have a look at some of use full Concatenation and join documents
Diffrence between Concatenate and Join???
http://community.qlik.com/blogs/qlikviewdesignblog/2013/05/17/concatenate-vs-link-table
Regards
Anand
Thank you......
Hi,
Can you close this thread by selecting appropriate answers.
Regards
ASHFAQ
Thankqqqqqqqqqqq
Hi,
Few video tutorials on the same subject.
http://qlikshare.com/qlikview-video-tutorial-concatenate-noconcatenate-operators-qlikview/
Cheers,
DV
Hi Pavani,
Simple Defination..
Join: Join will combine the rows where the key values matches..
table1: table2:
ID name ID Sal
1 ABC 1 10000
2 CBD 3 20000
Output:
ID Name sal
1 ABC 10000
2 CBD -
3 - 20000
Concatenate: Concatenate append the rows of one table to another table, concatenate never merges any row in it..
Output:
ID Name sal
1 ABC -
2 CBD -
1 - 10000
3 - 20000
Hope it helps...............