LIMIT
在AVG
计算之后应用于结果集.您可以使用子选择执行您想要的操作:
SELECT avg(con_hits) as avg_hits FROM ( SELECT con_hits FROM content WHERE con_type = 1 AND con_posttime < $twelve_hrs_ago AND con_refresh = 0 ORDER BY con_posttime DESC LIMIT 100 ) x;
您也可以使用数据库计算时间偏移量.$twelve_hrs_ago
以上替换为:
date_add(now(), interval -12 hour)