请有人向我解释这有什么问题?
SELECT COUNT (`ID`) FROM `tableImSpecifying` WHERE `VisitorsEmail` = '$VarThatHoldsEmailFromA$_POSTInput'
这是我在编写教程时编写的程序的一部分,但我已经知道如何解决这个问题了.我非常感激,如果有人能告诉我如何解决这个问题,我会提前感谢你.
这是我看到的错误:
FUNCTION myhost_classifieds.COUNT does not exist. Check the ‘Function Name Parsing and Resolution’ section in the Reference Manual
令我感到困惑的是,我在这个上面有类似的查询,它们正常工作,我已经检查过& amp;结束但我没有看到什么是错的.
这个:
原文链接:https://www.f2er.com/php/133301.htmlFUNCTION myhost_classifieds.COUNT does not exist. Check the ‘Function Name Parsing and Resolution’ section in the Reference Manual
这导致你改变这个:
COUNT (`ID`)
至:
COUNT(`ID`)
(注意删除的空间).
(你也可以在IGNORE_SPACE
中乱七八糟,但我不建议新手使用它.