-10

我正在做一个项目,我必须获取日期之间的数据加上用户名。only 的查询date between工作正常,但and操作员的方式错误,所以请建议我如何实现它以实现所需的输出。这是我的代码:

$qry11=mysqli_query($con,"select * from entry where (create_date between '$first' and '$second') && cnor='$nme'");

所以请建议如何做到这一点....任何想法将不胜感激。

4

2 回答 2

2
&& 

应该替换为

AND

您似乎已经AND在您的查询中使用了

(create_date between '$first' and '$second')
于 2013-08-09T07:33:22.073 回答
0

使用如下查询

$qry11=mysqli_query($con,"select * from entry where (create_date between '$first' and '$second') and cnor='$nme'");
于 2013-08-09T07:33:28.867 回答