我有一张表,其中包含在字段 add_date 中的确切时间输入的记录数。add_date 可能有
"2012-08-25 01:10:12"
"2012-08-25 01:10:13"
"2012-08-25 01:20:13"
"2012-08-25 01:21:12"
"2012-08-25 01:23:52"
"2012-08-25 01:23:56"
所以,我只想要那些在搜索中没有相同分钟的记录,我的 sql 查询是
$sdate = date("Y-m-d H:i:s", strtotime($date." ".$stime));
$edate = date("Y-m-d H:i:s", strtotime($date." ".$etime));
select add_date, speed from tbl_track where DATEadd_date BETWEEN '".$sdate."' AND '".$edate."' and item=(some item)
日期部分将相同,但时间部分在早上 10 到晚上 8 我想要的范围内
"2012-08-25 01:10:13"
"2012-08-25 01:20:13"
"2012-08-25 01:21:12"
"2012-08-25 01:23:56"
分钟不同但同一分钟不能在结果中分钟必须是唯一的