column "acm_operatelog.modify_time" must appear in the GROUP BY clause or be used in an aggregate function
时间: 2024-04-15 13:29:29 浏览: 174
ones.rar_The Given_acm ones_ones a_ones acm_ones.cp
如果您想要按照 "acm_operatelog.modify_time" 字段进行分组并求平均值,您可以尝试以下的SQL查询:
```sql
SELECT modify_time, AVG(ontime) FROM your_table
GROUP BY modify_time
ORDER BY modify_time DESC
LIMIT 100;
```
这个查询会按照 "modify_time" 字段进行分组,并计算每个分组中 "ontime" 字段的平均值。然后按照 "modify_time" 字段的降序排序,并只返回前100个分组的结果。请将 "your_table" 替换为您实际的表名。
阅读全文