我目前有一张桌子,记录所有员工的日常开支

John Smith    01 JAN 2010    200$
John Smith    01 JAN 2010    50$
John Smith    01 JAN 2010    10$
Lady Gaga     01 JAN 2010    50$
Lady Gaga     01 JAN 2010    20$
John Smith    02 JAN 2010    10$


我想显示一个包含所有账单每日报告的表格:

01 JAN 2010
John Smith: 260$
Lady Gaga: 70$

02 JAN 2010
John Smith: 10$


我真的希望我的要求是可以理解的,您将能够为我提供帮助。

非常感谢您的任何建议!

最佳答案

我将使用标准分组方式:

select date, name, sum(amount) as total
from mytable
group by 1,2
order by 1,2;

关于mysql - MySQL:我想对我的员工成本进行汇总,并按员工和按天分组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6898454/

10-09 01:00