Good Morning All
I have a table named “Final” with Values like this
ID || DESCR || CYCLE
======================================
1 || Earl G || 20
2 || Earl G || 21
3 || Earl G || 22
4 || Davidson I Dr || 20
5 || Davidson I Dr || 21
6 || Davidson I Dr || 22
7 || Easton C || 20
8 || Easton C || 21
9 || Easton C || 22
10 || Edwards J Ms || 20
11 || Edwards J Ms || 21
12 || Edwards J Ms || 22
As you can see in the Description Field “Earl G” appears 3 times and it can be more than that. Now I want to append Cycles [cycle] strings to the corresponding description, I want to run a query so that this table may look like this
ID || DESCR || CYCLE
==============================================
1 ||Earl G || 20 , 21, 22
4 ||Davidson I Dr || 20 , 21, 22
7 ||Easton C || 20 , 21, 22
10 ||Edwards J Ms || 20 , 21, 22
How can I achieve this in SQL
Thank you