本文主要是介绍MyBatis Cause: java.sql.SQLSyntaxErrorException: FUNCTION xxx.sum does not exist.解决方案,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
最近在使用Mybatis的时候,在做后台查询购物车的商品总数的时候,用到sum()函数,废话不多数,代码如下:
<select id="selectCartProductCountByUserId" parameterType="int" resultType="int">select IFNULL(sum (quantity),0) as countfrom tb_cartwhere user_id = #{userId}
</select>
在做接口测试的时候,报错如下:
Cause: java.sql.SQLSyntaxErrorException: FUNCTION shopping-mall.sum does not exist. Check the 'Function Name Parsing and Resolution' section in the Reference Manual.....(组要错误我已经标出),而这时候我回去检查我的sql,也没发现错误,很苦恼,这时候无意中发现我的 IFNULL(sum (quantity),0)的sum()函数后面多了一个空格,满怀期待的去掉空格尝试一便,发现结果成功了,结果很明显,多了一个空格,记得不要在sum后面加空格,这时候去掉空格之后的sql应该为:
<select id="selectCartProductCountByUserId" parameterType="int" resultType="int">select IFNULL(sum(quantity),0) as countfrom tb_cartwhere user_id = #{userId}</select>
接口测试成功:
如果文章对你有帮助请点赞2333
这篇关于MyBatis Cause: java.sql.SQLSyntaxErrorException: FUNCTION xxx.sum does not exist.解决方案的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!