Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everybody ! ![]()
TABLE1:
ID, VALUE
1, A
1, B
1, C
2, D
2, A
3, X
3, T
How can i create a table with only this:
1 , A
2, D
3 , X
Many thanks....
Fabien
Table2:
noconcatenate
Load ID, firstvalue(Value) as FirstValue
resident Table1
group by ID;
Table2:
noconcatenate
Load ID, firstvalue(Value) as FirstValue
resident Table1
group by ID;