我是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)
但做这个检查很重要;我该如何解决这个问题?
答案 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