我需要根据当前日期从过去 12 个月的 mysql 数据库中选择数据。我将日期作为 unix 时间戳保存在数据库中,但我的查询似乎不起作用。
$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!=''";
基本上我需要计算所有有 renew_date 时间戳的 first_name 实例。