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 查询来对表进行两次分组?
假设我有一张属于不同群体的人的桌子。我想看看:
group1 males 14 group1 females 15 group2 males 23 group2 females 25 ...
实现这一目标的最佳一般方法是什么?是否可以使用单个查询或我需要使用 UNION 运算符?
是的,在mysql中是可能的......
Select * from table GROUP BY column1, column2
是的,有可能
group by your_group_column , gender