我在运行MYSQL时,经常出现这种问题,一阵搜索后,在这个网址找到方法:http://blog.152.org/2009/12/mysql-error-1305-function-xxx-does-not.html
原来问题出现在函数与括号之间的空格上。
比如:
写成”sum ()“ 这样就出错了,
需要去掉空格“sum()”,就好了。
写成”concat ()“ 这样就出错了,
需要去掉空格“concat()”,就好了。