php 查询当天的某一时刻范围内的数据如何写

WBOY
Release: 2016-06-13 12:17:01
Original
1750 people have browsed it

php 查询当天的某一时刻范围内的数据怎么写?
php连接mysql数据库要查询每天的某一时刻(或某几个时刻)范围内的数据,例如要查询当天17:25-17:35之间是否在数据库中接收到数据,应该怎么写?
------解决思路----------------------

引用:
Quote: 引用:

select * from table where addtime>='開始時間' and addtime結束時間' ;

我只查当天的数据,当天的数据怎么写?
“起始与结束”的时间只有时分秒怎么写?
我要查询每天这个时间点范围内的数据,而不是特定某一天的数据。


$starttime = '17:25:00';
$endtime = '17:35:00';

$sql="select * from table where addtime>='".date('Y-m-d').' '.$starttime."' and addtime
Related labels:
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!