Given the following table, how could I create a query to return:
Code:------- |a|1,2| -------Code:declare @table table(id char(1), sub_group int) insert into @table (id, sub_group) values ('a',1) insert into @table (id, sub_group) values ('a',2)
|
Results 1 to 3 of 3
|
Click Here to Expand Forum to Full Width |