select count(*) from S,M where S.id=M.id;如果表中s.name = '1',就让这个sql显示的数量多100。
4个回答
展开全部
select sum(case when s.name='1' then 101 else 1 end) from S,M where S.id=M.id;
如有10条记录,正常情况下count应该是10
其中如有2条数据的name=1的话,则最后的数量增加了两个100,结果就是210
如有10条记录,正常情况下count应该是10
其中如有2条数据的name=1的话,则最后的数量增加了两个100,结果就是210
追问
这个count(*) 2,只要存在就只加100,不是有2条加200有3条加300,能解决吗。谢谢
.
追答
select sum(cnt) from (
select count(*) as cnt from S,M where S.id=M.id
union all
select case when count(*)>0 then 100 else 0 end as cnt from S,M where S.id=M.id and s.name='1');
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select COUNT(*)
+(CASE WHEN sum(case when s.name = '1' then 100 else 0 end)>0
THEN sum(case when s.name = '1' then 100 else 0 end)
/sum(case when s.name = '1' then 1 else 0 end)
ELSE 0 END)
from S,M where S.id=M.id
+(CASE WHEN sum(case when s.name = '1' then 100 else 0 end)>0
THEN sum(case when s.name = '1' then 100 else 0 end)
/sum(case when s.name = '1' then 1 else 0 end)
ELSE 0 END)
from S,M where S.id=M.id
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select sum((case when name='1' then 100 else 1 end)) from S,M where S.id=M.id
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select count(*)+sum(case when name='1' then 100 else 0 end)
from S,M where S.id=M.id
from S,M where S.id=M.id
追问
我的count(*) 为2 ,这样显示了202
追答
如果有一个name='1'那么只加100啊
select count(*)+sum(case when name='1' then 100 else 0 end)/
(case when count(*)>0 then count(*) else 1 end)
from S,M where S.id=M.id
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询