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.
我正在尝试获取每个年龄段的用户数量。odata.stackoverflow.com 的这个 sql 查询有什么问题?
select age, count(*) from users order by age group by age
利用:
select age,count(*) from users group by age order by age
ORDER BY 总是最后一个