问一个mysql查询语句,查询a大于0和小于0的数量,能用一个语句实现吗
4个回答
展开全部
select count(*) from abc表 where a>0 and a<0
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2018-10-17
展开全部
select case when a>0 then 1 else 0 end,count(*)
from table_name
where a <> 0
group by case when a>0 then 1 else 0 end
from table_name
where a <> 0
group by case when a>0 then 1 else 0 end
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SELECT
count(CASE WHEN id > 88 THEN 1 END) AS a,
count(CASE WHEN id <= 88 THEN 1 END) AS b
FROM
test
亲测可用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该不能的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询