错误:FUNCTION simple_notebook.count does not exist.解决方法

0 引入问题

小王:你这个数据有问题啊,有时候还会报错
小腾:怎么会有问题呢,代码写的一点毛病也没有
小王:没问题怎么会报错,你赶紧看看,项目上线甲方看到了报给老板咱俩就寄了
小腾:……
我一打开后台,我擦还真报错了

java.sql.SQLSyntaxErrorException: FUNCTION simple_notebook.count does not exist. Check the 'Function Name Parsing and Resolution' section in the Reference Manual

1 问题解决

这种错误是因为在Mybatis中使用写函数时,在count() , sum() 等函数时,中间留有空格
解决:去掉空格
错误示范:

        select count (1)
        from 表名

正确示范:

        select count(1)
        from 表名

2 写在末尾

这里推荐Mybatis Log插件,这样可以打印所写SQL容易排查到具体哪一行的代码出错。
错误:FUNCTION simple_notebook.count does not exist.解决方法_第1张图片

例如:

错误:FUNCTION simple_notebook.count does not exist.解决方法_第2张图片

你可能感兴趣的:(数据库,JAVA,mysql,mybatis,后端)