SQL查询循环显示问题
本帖最后由 cynthiawmj 于 2013-06-28 13:36:08 编辑 表结构如下
公司名称分店数量
A2
B1
C3
希望查询结果显示为
A1
A2
B
C 1
C 2
C 3
请教各位了。就是把后面那个数量循环显示
[解决办法]
select a,b-number from master..spt_values a,
(select a='a',b=2 union select 'b',1 union select 'c',3) b
where type='p' and b-number>0
order by 1,2