-1
我有具有柱completed_at型(日期時間)如何選擇行有3小時前
我被PHP日期插入日期在它(表 'YMD H:I:S' ) 2016年5月17日○點00分14秒
我要選擇有3小時前
<?php
$sql = "Select `id`,`file` from `uploader` where `completed_at` < CURDATE() - INTERVAL 3 HOUR";
$DB = new DB();
mysqli_query($DB->db_connect(), $sql);
?>
的數據,但它給了我錯誤的答案。
的[從最後一小時記錄]可能的複製(http://stackoverflow.com/questions/19743850/get-records-from-last-hour) –