Displaying rows with count 0 with mysql group by(使用 mysql group by 显示计数为 0 的行)
问题描述
我在 MySql 中有两个表公司 : (cname,city)作品 : (ename,cname,salary)
I have two tables in MySql Company : (cname,city) works : (ename,cname,salary)
我想显示为每家公司工作的员工人数,即使这个数字为零.
I want to display number of employees working for every company, even if that number is zero.
例如对于
Company :
Microsoft Bangalore
IBM NY
works :
emp1 Microsoft 10000
emp2 Microsoft 90000
输出应该是:
Microsoft 2
IBM 0
但以下查询和其他类似查询仅打印那些至少拥有一名员工的公司:
But the following query and other similar queries print only those companies which have at least one employee :
Select count(*) from works natural join company group by company.cname
如果我使用外连接,那么员工人数为零的公司仍然会显示排成一排,因此该选项也已退出.
If I use outer join, then the companies with zero employees will still show up in one row, so that option is out as well.
怎么做?
推荐答案
LEFT JOIN 的经典案例:
Classic case for a LEFT JOIN:
SELECT
c.cname,
COUNT(w.ename) wcount
FROM
company c
LEFT JOIN works w ON c.cname = w.cname
GROUP BY
c.cname
这篇关于使用 mysql group by 显示计数为 0 的行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 mysql group by 显示计数为 0 的行
基础教程推荐
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01