it shows duplicates for LID. How can I Concat or make the LID unique but will contain all the Seq in each call for each LID?
Desired Results
Lid, Seq
1 , A,B,C,D,E
Currently,
Concat and sequence
Table A has contains the
Field/Column LID in integer
Field/Column SEQ in Text or String
LID contains values like 1,2,3,4,5, and so forth
SEQ contains values like A,B,C,D,E and so forth
Current results
when queried
select all from Table A
it can show
Lid, Seq
1 A
1 B
1 D
1 E