declare @t table
(
year int,
month int,
SomeName varchar(100)
)
insert into @t
select 2015, 1, 'Ashok'
union
select 2015, 2, 'Ram'
union
select 2015, 3, 'Ashok'
union
select 2016, 1, 'Raj'
union
select 2016, 2, 'Raj'
select * from @t
上記の選択は私に次のように返します。私は以下のように取得するにはどうすればよいSQLの文字列値の累積連結でグループを取得する方法
year month SomeName
2015 1 Ashok
2015 2 Ram
2015 3 Ashok
2016 1 Raj
2016 2 Raj
..
year month name CumSrome
2015 1 Ashok Ashok
2015 2 Ram Ashok,Ram
2015 3 Ashok Ashok,Ram
2016 1 Raj Raj
2016 2 Raj Raj
TIA
あなたは* ...これは今年でグループ化されている*累積について話していますか? 'ラジーズ'だけはなぜ? – Shnugo
希望の結果を得る方法を説明してください – GuidoG