【对原作者的补充】
使用了以下SQL语句:
select COUNT(if(w.isqualified=0,true,null) as aaa from table where 条件 group by w.isqualified;
在navicat中运行没有问题,但是在Java中使用该sql去数据库查询数据时,出错了!问题:org.springframework.dao.InvalidDataAccessApiUsageException: org.hibernate.hql.internal.ast.QuerySyntaxException: expecting CLOSE, found '(' near line 1, column 81 [select COUNT(if(w.isqualified=0,true,null))........]
该问题或许是 对嵌套括号解析混乱导致。
后将sql语句改为
select COUNT(case when w.isqualified=0 then w.isqualified end) as aaa from table where 条件 group by w.isqualified;
解决办法:使用count(case when(条件) then 列名 end) as mycount,可以避免括号解析混乱的问题