Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我知道我可以使用 SQL avg() 函数进行平均,但是如何按列中的实际 ID 对其进行分解?
假设我有 10 个不同的 ID,我需要在一个查询中从每个 ID 中获取平均值,我将如何尽可能简单地做到这一点?
我认为这是您正在寻找的使用AVGand GROUP BY:
AVG
GROUP BY
SELECT AVG(SomeColumn), ID FROM YourTable GROUP BY Id