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

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

WBOY
Release: 2016-06-06 20:12:39
Original
970 people have browsed it

$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>
Copy after login

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

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template