Merge 2 collections on common column

andrei.cozma

New Member
Hi,

I am looking for a simple straighfoward way of merging 2 collections. I know that for example in python( i think SQL is as easy) this can be done in one line:
merged_coll = coll1.merge(coll2, on="column_name", how = 'inner'). Is really no other way in B but that silly looping of one collection and adding rows. This seems so counterproductive. Has anyone shared the same thought?
 
Top