MySQL:我想汇总我的员工成本并按员工和日期进行分组
我目前有一个表格,用于记录所有员工的日常开支
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$
我真的希望我的请求是可以理解的,并且您能够帮助我。
非常感谢您的任何建议!
I currently have a table where I record all my employee daily expenses
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$
What I would like to display a table that contains a daily report of all bills:
01 JAN 2010
John Smith: 260$
Lady Gaga: 70$
02 JAN 2010
John Smith: 10$
I really hope my request is understandable and you will be able to help me.
Thank a lot for any advice!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会使用标准分组依据:
I would use a standard group-by:
使用 SUM 与 GROUP BY ,做类似的东西
use SUM with GROUP BY , do something like