sql where查询条件中有sum函数

selectdistincta.codeas订单编号,a.amountas订单总金额,sum(b.amount+b.amount_lans)as明细总金额fromalef... select distinct a.code as 订单编号,a.amount as 订单总金额,
sum(b.amount + b.amount_lans) as 明细总金额
from a
left join b on a.order_id = b.order_id
where a.total_amount - sum(b.amount + b.amount_lans) <> 0
group by a.code,a.amount

执行后报错 "aggregates not allowed in WHERE clause"
应该是sum函数不能出现在查询条件里

我要查询出订单总金额-明细总金额不为0的结果
请教高手sql应该怎么写
补充:用了having做后置条件,查询结果里有 订单总金额=明细总金额的情况。为什么?
我现在having 订单总金额-明细总金额 <> 0
查出的结果 订单总金额(比如:100) = 明细总金额(比如:100)
展开
 我来答
sowinwork
推荐于2017-11-23 · 超过29用户采纳过TA的回答
知道答主
回答量:81
采纳率:0%
帮助的人:69.9万
展开全部
第一个问题:分组了,就不用再用DISTINCT了
第二个问题:WHERE后跟分组前条件,HAVING是分组后条件
第三个问题:你也用总金额为分组,不知道你有什么特定目的.
select a.code as 订单编号,a.amount as 订单总金额,
sum(b.amount + b.amount_lans) as 明细总金额
from a
left join b on a.order_id = b.order_id
group by a.code,a.amount
having a.total_amount - sum(b.amount + b.amount_lans) <> 0
估计这个效果才是你要的
select a.code as 订单编号,sum(a.amount) as 订单总金额,
sum(b.amount + b.amount_lans) as 明细总金额
from a
left join b on a.order_id = b.order_id
group by a.code
having a.total_amount - sum(b.amount + b.amount_lans) <> 0
徐金柱第一
2010-10-13 · TA获得超过333个赞
知道小有建树答主
回答量:212
采纳率:0%
帮助的人:180万
展开全部
sum不是这样用的:

select * from
(
select 订单编号,订单总金额,sum(明细金额) as 明细总金额 from
(select a.code as 订单编号,a.amount as 订单总金额,
b.amount + b.amount_lans as 明细金额 from a
left join b on a.order_id = b.order_id
)c
group by 订单编号,订单总金额
)d
where 订单总金额-明细总金额<>0
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友a800768
2010-10-14 · TA获得超过1841个赞
知道大有可为答主
回答量:1928
采纳率:0%
帮助的人:1716万
展开全部
计算判断用having

select distinct a.code as 订单编号,a.amount as 订单总金额,
sum(b.amount + b.amount_lans) as 明细总金额
from a
left join b on a.order_id = b.order_id
group by a.code,a.amount
having a.total_amount - sum(b.amount + b.amount_lans) <> 0
订单总金额=明细总金额的情况不是很正常吗?明细总金额是从B表中计算来的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
brians12
2010-10-21
知道答主
回答量:14
采纳率:0%
帮助的人:0
展开全部
select * from (
select distinct a.code as 订单编号,a.amount as 订单总金额,
sum(b.amount + b.amount_lans) as 明细总金额
from a
left join b on a.order_id = b.order_id) A
where total_amount - 明细总金额 <> 0
group by code,amount
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式