0
$gettmm = "SELECT min(date_format(lastupdate,'%H:%i')), max(date_format(lastupdate,'%H:%i')) FROM my_table WHERE lastupdateid='".$key1."' and date_format(lastupdate,'%Y-%m-%d')='".$search_date."'";

我需要更改日期比较。我更喜欢如下所示之间。

and lastupdate between ('2013-08-13 00:00:00') and ('2013-08-13 23:59:59') ;

变量 $search_date 是 2013-08-13 ,我需要将它与 00 和 23 连接以使其适用于between子句。如何为此编写适当的 PHP 代码。

4

1 回答 1

2

在这种情况下,我更喜欢这样做而不是使用“BETWEEN”

and lastupdate >= '2013-08-13 and < '2013-08-14'
于 2013-08-26T08:36:36.537 回答