Posts

Showing posts with the label Join component

S) join and rollup example

Image
 Input             Output 1 A                 1 ABC 2 B                  2 ABC 3 C                  3 ABC       Rollup :   out : : rollup(in) =     begin     out.id:: string_join (accumulation( in.data ), "" );   end ;   join   null key ( cartisian join)      

T) Can using lookup function can you achieve full outer join ?

    Only left or right join can be achieved as we can’t pull uncalled records from lookup file.  E.g. Input file have below 3 records:               ID              1              2             3                         ID Name                         1    A                         2    B                         3    C                         4    D                         5    E    Suppose now you have used lookup functio...