表1
----
id type
1 美金
2 人民币
3 美金
表2
-----
id money
1 550.00
1 300.00
1 216.00
1 210.00
2 310.00
3 410.00
结果集
------
1 美金
1 550.00
1 300.00
1 美金
1 216.00
1 210.00
2 人民币
2 310.00
3 美金
3 410.00
说明:就是把表1每行当文件头,表2是细项
表2相同id每2个就写一行文件头(两个翻页).
求此SQL语句
create table #表1(id int, type varchar(10))
insert into #表1 select 1, '美金1'
union all select 2, '人民币'
union all select 3, '美金2'
create table #表2(id int, money dec(18,2))
insert into #表2 select 1, 550.00
union all select 1, 300.00
union all select 1, 216.00
union all select 1, 210.00
union all select 2, 310.00
union all select 3, 410.00
select identity(int,0,1) rowid, a.*,type into # from #表2 a
left join #表1 b
on b.id=a.id
select id,money from(
select rowid,id,cast(money as varchar(10))[money] from # union all
select min(rowid)-0.5,id,min(type) from # group by id, rowid/2)a
order by rowid
drop table #
id money
----------- ----------
1 美金1
1 550.00
1 300.00
1 美金1
1 216.00
1 210.00
2 人民币
2 310.00
3 美金2
3 410.00
(所影响的行数为 10 行)