Hi All,
I am having country list around 100 and need to create a new table with new filed adding to existing table.
Country table has country filed and Inline load has 3 values with BU Code.
Bu:
load * inline [
"BU Code"
Commercial,
Personal
AAAAA ];
final out put would be like
Country:
Country,BU code
AA ,Commercail,
AA,Personal,
AA,AAAA,
BB,Commercail,
BB,Perosnal
BB,AAAA;
Hi @MEDHA07 , for joining table, you can use join clause
Load
Country
FROM YourSource;
join
Bu:
load * inline [
"BU Code"
Commercial,
Personal
AAAAA ];
I have added
1 as key
in both tables and showing as results as expected
Hi @MEDHA07 , for joining table, you can use join clause
Load
Country
FROM YourSource;
join
Bu:
load * inline [
"BU Code"
Commercial,
Personal
AAAAA ];
I have added
1 as key
in both tables and showing as results as expected
excellent! @MEDHA07