本文主要是介绍异常解决:GROUP_CONCAT does not exist. Check the ‘Function Name Parsing and Resolution‘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
异常解决:GROUP_CONCAT does not exist. Check the 'Function Name Parsing and Resolution'
- 1.问题描述
- 异常信息如下:
- 解决办法:
1.问题描述
在使用SpringBoot框架开发项目时遇到的一个异常,FUNCTION GROUP_CONCAT does not exist. Check the ‘Function Name Parsing and Resolution’ section in the Reference Manual
在Mysql使用数据库的过程中,明明函数名称正确,但是仍然报错,sql在navicat工具中也能正常执行,但是程序运行过程中往往会报错,这是因为程序中GROUP_CONCAT函数在使用过程中()中得内容不能有空格存在。
异常信息如下:
解决办法:
1、group_concat后面多加了个空格。
select group_concat (username) from t_user;
解决办法:将group_concat后面的空格去掉。
select group_concat(username) from t_user;
这篇关于异常解决:GROUP_CONCAT does not exist. Check the ‘Function Name Parsing and Resolution‘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!