我需要根據當前日期從過去12個月的mysql數據庫中選擇數據。我將數據庫中的日期保存爲unix時間戳,但我的查詢似乎不起作用。MySQL在兩個值之間選擇行
$query="SELECT user_id, COUNT(first_name) AS member_count
FROM main_user
WHERE renew_date<'$time' AND renew_date>'$old_time' WHERE renew_date!=''";
基本上我需要計算first_name的所有實例,其中有一個renew_date時間戳。
甚至你的變量名說我們,日期不能隨着時間的推移進行比較。 – Stranger