哪个会导致您对此进行更改:COUNT (`ID`)收件人:COUNT(`ID`)(请注意已删除的空间).(您还可以在 IGNORE_SPACE ,但我不建议新手使用.Would someone please explain to me what is wrong with this??SELECT COUNT (`ID`) FROM `tableImSpecifying` WHERE `VisitorsEmail` = '$VarThatHoldsEmailFromA$_POSTInput'This is part of a program I am writing while following a tutorial but I'm hung up on how to fix this. I'd be most appreciative and I thank you in advance if anyone can tell me how to fix this.Here's the error I'm seeing:What baffles me is I have similar queries above this one that work properly and I've checked the syntax over & over but I don't see what's wrong. 解决方案 This:Would prompt you to read thisWhich leads you to alter this:COUNT (`ID`)To:COUNT(`ID`)(note the removed space).(you could also fiddle around with IGNORE_SPACE, but I wouldn't recommend it for a novice. 这篇关于查询响应,请参见《参考手册》中的“函数名称解析和解析"部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-18 12:55