Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
When i run the below code .
load * inline [
code,Name
1,A
1,B
2,C
3,D
4,E
5,F
];
i want to get the code 1 and the Name in the same line
ie
1 A / B
2 C
3 D
4 E
5 F
Load code,Concat(Name,' / ') As Name Group by code;
load * inline [
code,Name
1,A
1,B
2,C
3,D
4,E
5,F
];
Load code,Concat(Name,' / ') As Name Group by code;
load * inline [
code,Name
1,A
1,B
2,C
3,D
4,E
5,F
];
Hi,
tmp:
load * inline [
code,Name
1,A
1,B
2,C
3,D
4,E
5,F
];
LOAD code, Concat(Name, ' / ') as New
Resident tmp
Group by code;
DROP Table tmp;
Hi,
Create another table like this way
A:
load * inline [
code,Name
1,A
1,B
2,C
3,D
4,E
5,F
];
B:
Load code,Concat(Name,' / ') As NewName Resident A Group by code;
Regards
Anand