DannyBoy217
Programmer
Heya ppl,
I have a small problem, I need to combine multiple rows into one row. the rows come back like (please be advised displayed is crud data, not live!):
UID OID Keyword_List
--- --- ------------
01 101 The
02 101 truth
03 101 is
04 101 out
05 101 there
06 102 The
07 102 X-Files
08 103 small
09 103 fish
10 103 fry
11 103 fast
so what I need to do is combine them on OID (ID Carried from original) so all 101, 102 and 103 so I need to compile the rows into columns. (Don't you just love data scrubbing)
ID | Col1 | Col2 | Col3| Col4 | Col5 |
--------------------------------------------
101 | The | truth | is | out | there |
102 | The | X-Files | | | |
103 | small | fish | fry | fast | |
any ideas folks??
Thanks a million
I have a small problem, I need to combine multiple rows into one row. the rows come back like (please be advised displayed is crud data, not live!):
UID OID Keyword_List
--- --- ------------
01 101 The
02 101 truth
03 101 is
04 101 out
05 101 there
06 102 The
07 102 X-Files
08 103 small
09 103 fish
10 103 fry
11 103 fast
so what I need to do is combine them on OID (ID Carried from original) so all 101, 102 and 103 so I need to compile the rows into columns. (Don't you just love data scrubbing)
ID | Col1 | Col2 | Col3| Col4 | Col5 |
--------------------------------------------
101 | The | truth | is | out | there |
102 | The | X-Files | | | |
103 | small | fish | fry | fast | |
any ideas folks??
Thanks a million