Query Responds With Check the 'Function Name Parsing and Resolution' section in the Reference Manual

后端 未结 6 516
终归单人心
终归单人心 2020-12-19 02:22

Would someone please explain to me what is wrong with this??

SELECT COUNT (`ID`) FROM `tableImSpecifying` WHERE `VisitorsEmail` = \'$VarThatHoldsEmailFromA$_         


        
6条回答
  •  失恋的感觉
    2020-12-19 03:11

    try this

     SELECT COUNT(`ID`) FROM `tableImSpecifying` WHERE `VisitorsEmail` = '$VarThatHoldsEmailFromA$_POSTInput'
                ^^-------remove space here
    

提交回复
热议问题