MyBatis Cause: java.sql.SQLSyntaxErrorException: FUNCTION xxx.sum does not exist.解决方案

最近在使用Mybatis的时候,在做后台查询购物车的商品总数的时候,用到sum()函数,废话不多数,代码如下:

在做接口测试的时候,报错如下:

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应该为:

  

接口测试成功:

MyBatis Cause: java.sql.SQLSyntaxErrorException: FUNCTION xxx.sum does not exist.解决方案_第1张图片

如果文章对你有帮助请点赞2333

你可能感兴趣的:(MyBatis Cause: java.sql.SQLSyntaxErrorException: FUNCTION xxx.sum does not exist.解决方案)