$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 代码。