I would like to take rows with all but one column containing duplicate data and take the one unique field and put it in one row, with the one column being added to. I am creating a table from three different databases to create:
Wk RunOrder Job Number ModelNo .... ItemTag
23 28 1234 abcd 1
23 28 1234 abcd 2
23 28 1234 abcd 3
23 28 1234 abcd 4
12 28 1222 abbd 2
12 28 1222 abbd 4
What I would Like is:
Wk RunOrder Job Number ModelNo .... ItemTag
23 28 1234 abcd 1,2,3,4
23 28 1222 abbd 2,4
the RunOrder and ItemTag columns are from different databases