日期:2014-05-17 浏览次数:20551 次
--drop table t
create table T(A varchar(10), B varchar(10), C int)
insert into T
select 'AA', '笔', 5 union all
select 'AB', '纸', 3
go
select t.A 编码, t.B as 名称,1 as 数量
from t,master..spt_values s
where t.c>= s.number and s.type= 'P' and s.number >0
/*
编码 名称 数量
AA 笔 1
AA 笔 1
AA 笔 1
AA 笔 1
AA 笔 1
AB 纸 1
AB 纸 1
AB 纸 1
*/