0
我的做法是:SQL程序選擇合併
create procedure "news"
as
select newsdate,COUNT(B.id) as total from news B
where B.newsyear < GETDATE()
Group by B.newsdate
select newsdate,COUNT(B.id) as total from news B
where B.status='WAITING' and B.cancel='1'
Group by B.newsdate
結果:
newsdate total
2011 4
2010 8
newsdate total
2011 2
2010 3
如何合併一年總計獲得這個結果集:
newsdate total
2011 6 {4 + 2}
2010 11 {8 + 3}
謝謝工會的所有工作。 – bulent 2011-05-20 13:32:47