SQL无法对包含聚合或子查询的表达式执行聚合函数

时间:2012-10-14 03:26:34

标签: sql select sql-server-2008-r2 case

我是SQL的新手,我有以下SQL查询

select catalogid, numitems, allitems - numitems ignoreditems
 from (
  select i.catalogid," 
    sum(case when (ocardtype in ('PayPal','Sofort') OR
                   ocardtype in ('mastercard','visa') and
                   odate is not null) AND NOT EXISTS (select CAST(booked AS INT) FROM bookedordersids b where b.booked = o.orderid)
                   then numitems
                   else 0 end) numitems,
    sum(numitems) allitems
  from orders o
  join oitems i on i.orderid=o.orderid
  group by i.catalogid
 ) X

它给了我以下错误

Cannot perform an aggregate function on an expression containing an aggregat or a subquery

当我删除以下行时,它可以正常工作

AND NOT EXISTS (select CAST(booked AS INT) FROM bookedordersids b where b.booked = o.orderid)

但做这个检查很重要;我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

您可以将汇总一级移出。
虽然可以在您的情况下重写查询,但我认为最好以这种方式表达,以便您可以轻松地理解和重用该模式。

select catalogid, sum(numitems) numitems, sum(allitems) - sum(numitems) ignoreditems
 from (
  select i.catalogid,
    case when (ocardtype in ('PayPal','Sofort') OR
                   ocardtype in ('mastercard','visa') and
                   odate is not null) AND NOT EXISTS (
      select *
      FROM bookedordersids b
      where b.booked = o.orderid)
                   then numitems
                   else 0 end
    numitems,
    numitems allitems
  from orders o
  join oitems i on i.orderid=o.orderid
 ) X
group by catalogid