Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Two Tables Join

Hi, how can I merge these two tables and obtain output in jpg attachment?

Thank You very much!!!!!

3 Replies
YoussefBelloum
Champion
Champion

Hi,

TAB1:

LOAD

        autonumber(Rows&field1&field2) as key,

        Rows,

        field1,

        field2,

        field3

FROM TAB1;

OUTER JOIN

TAB2:

LOAD

          autonumber(Rows&field1&field2) as key,

          field4

FROM TAB2;

lironbaram
Partner - Master III
Partner - Master III

load *

from Tab1;

join

load Rows,Field4

from Tab2

prma7799
Master III
Master III

Please check