0

我的程序是:

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}
4

2 回答 2

1

尝试这个:

select newsdate,COUNT(B.id) as total 
from news B 
where ( B.newsyear < GETDATE() )
or ( B.status='WAITING' and B.cancel='1' )
Group by B.newsdate
于 2011-05-20T12:59:57.147 回答
0

使用简单的 or 语句(如果它确实是同一张表):

select newsdate,COUNT(B.id) as total
from news B
where B.newsyear < GETDATE()
   or B.status='WAITING' and B.cancel='1'
Group by B.newsdate

或使用 union all + sum 聚合(如果是不同的表):

select newsdate, sum(total) as total from (
  select newsdate,COUNT(B.id) as total from news B where B.newsyear < GETDATE()
  Group by B.newsdate
  union all
  select newsdate,COUNT(B.id) as total from news B where B.status='WAITING' and B.cancel='1'
  Group by B.newsdate
  ) as rows
group by newsdate
于 2011-05-20T13:01:18.637 回答