Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
I did Inline load i.e.
Load * INLINE [
Selector,SelectorId
Per NSR%,1
Per MT,2
];
from that Inline load how to do Max(SelectorId) as SelectNum1.
Thanks,
Rajitha
Hi,
Try this:
Its not working
Did you name the initial inline table "InlineTable"?
Yes. I did the same
InlineTable:
Load * INLINE [
Selector,SelectorId
Per NSR%,1
Per MT,2
];
Max:
LOAD
MAX(SelectorId) as SelectNum1
RESIDENT InlineTable;
I need 3 columns in 1 table. I tried below one but it throws error.
Gross_Contribution1:
Load * INLINE [
Selector,SelectorId
Per NSR%,1
Per MT,2
];
Gross_Contribution:
Load *,
Max(SelectorId) as SelectNum1
Resident Gross_Contribution1;
Drop Table Gross_Contribution1;
Could you please provide some more information?
I need 3 columns in 1 table means Selector,SelectorId,SelectNum1 . I tried below one but it throws error.
Gross_Contribution1:
Load * INLINE [
Selector,SelectorId
Per NSR%,1
Per MT,2
];
Gross_Contribution:
Load *,
Max(SelectorId) as SelectNum1
Resident Gross_Contribution1;
Drop Table Gross_Contribution1;
OK, can you please provide the desired output-Table?
Do you need the Max(SelectorID) per Selector or over all?