sql中的count查询
我的查询有问题
第一个表(主)名称:MainCategory,包含字段(Category_id、Category_name)
第二个表(交易)名称:事件,包含字段(Incident_id、Category_id、subject、description)
我想查询以计算category_id 的出现情况在表中翻译
例如结果可以
Category_name Number_of_Faults
Hardware 10
Software 22
Network 17
感谢
Kumar
i have an issue with query
1st table (Master) Name :MainCategory with fields (Category_id,Category_name)
2nd Table (Transation) Name : Incident with fields (Incident_id,Category_id,subject,description)
i want to query to count the appearance of category_id in the table Transation
for eg result can be
Category_name Number_of_Faults
Hardware 10
Software 22
Network 17
thanks
Kumar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
试试这个。您需要 LEFT JOIN 来处理给定类别的“无事件”
Try this. You need a LEFT JOIN to deal with "no incidents" for a given category