MySql 中两个表的交叉表
我有两张表,一张是 *parts_raised*,另一张是 *parts_detail*。
parts_raised:
SN(int),Job_Number(int),Category(varchar),Part_code(int),technician(varchar),Time (timestamp),
Parts_detail:
Part_code(int),Value(int),Descriptions(text),
两个表中的part_code 相同。
我如何编写查询来实现作业总数以及每个技术人员每天的总成本。
technician day1 day2
Total Jobs total cost Total Jobs total cost
Technician-1 4 153 5 253
Technician-2 7 352 2 256
如何实现这一目标或建议任何其他方法来获得相同的结果?
I have two tables, one is *parts_raised* and another is *parts_detail*.
parts_raised:
SN(int),Job_Number(int),Category(varchar),Part_code(int),technician(varchar),Time (timestamp),
Parts_detail:
Part_code(int),Value(int),Descriptions(text),
part_code is same in both table.
How can I write query for achieving total count of jobs,and their total cost per technician on daily basis.
technician day1 day2
Total Jobs total cost Total Jobs total cost
Technician-1 4 153 5 253
Technician-2 7 352 2 256
How can achieve this or suggest any other method for getting same result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个有作用吗?
Does this do it?