|
|
|
sql query ข้อมูลเวลาทุกๆ5นาที โดยเริ่มจากเวลาตั้งต้น |
|
|
|
|
|
|
|
ทุกๆ 3 นาที เอาเฉพาะรายการแรกที่เจอ
Code (PHP)
$SQL="
select min(dte) from table
where between '$start' and '$end'
group by FLOOR( DATEDIFF(SECOND, '$start', dte ) / 180)
";
สำหรับ mysql
Code (PHP)
$SQL="
select min(dte) from table
where between '$start' and '$end'
group by FLOOR( TIME_TO_SEC(TIMEDIFF(dte, '$start')) / 180)
";
|
ประวัติการแก้ไข 2015-09-24 16:37:07 2015-09-24 16:57:13 2015-09-24 16:58:00
|
|
|
|
Date :
2015-09-24 16:30:10 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|