mysql运行语句时出现 FUNCTION *** does not exist

我在运行MYSQL时,经常出现这种问题,一阵搜索后,在这个网址找到方法:http://blog.152.org/2009/12/mysql-error-1305-function-xxx-does-not.html

原来问题出现在函数与括号之间的空格上。

比如:

写成”sum ()“   这样就出错了,

需要去掉空格“sum()”,就好了。

写成”concat ()“   这样就出错了,

需要去掉空格“concat()”,就好了。

posted on 2012-10-23 16:58  ellisonDon  阅读(36146)  评论(1编辑  收藏  举报

导航