一个两表关联的复杂查询语句


表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 行)

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值