=3000")->count();请输入代码为什么var_dump($result);显示的是null 数据库中明明存在符合条件的数据."/> =3000")->count();请输入代码为什么var_dump($result);显示的是null 数据库中明明存在符合条件的数据.">

Home  >  Article  >  Backend Development  >  请问我这句话写的有没有问题

请问我这句话写的有没有问题

WBOY
WBOYOriginal
2016-06-06 20:12:39965browse

$result=$model->where("tmInviteTel=".$rs['tmTel']."and tmSpend>=3000")->count();请输入代码
为什么var_dump($result);显示的是null 数据库中明明存在符合条件的数据.

回复内容:

$result=$model->where("tmInviteTel=".$rs['tmTel']."and tmSpend>=3000")->count();请输入代码
为什么var_dump($result);显示的是null 数据库中明明存在符合条件的数据.

tmInviteTel 是字符串吗? 如果是字符串,要加''

<code>$result=$model->where("tmInviteTel='".$rs['tmTel']."' and tmSpend>=3000")->count();</code>

你有打印出相应的sql语句吗?然后把语句放入mysql中查询一下就知道了!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn