mysql show Count of rows from other table in each row(mysql 显示每行中来自其他表的行数)
问题描述
select `personal`.`id` AS `id`,
`personal`.`name` AS `name`,
(select count(visit.id)
from visit,personal
where visit.user_id=personal.id) as count
from personal;
我正在尝试获取所有用户及其访问次数.
im trying to get all users and the counts of visits they did.
我得到的结果是所有用户,但计数列包含相同的值(不特定于该行 ID).
the result i get is all users but the count column contain same value (not specific to that row id).
我在这里做错了什么?如何告诉 mysql 使用此行 ID?
what am i doing wrong here ? how to tell mysql to user this row id ?
复合选择最佳方法还是有更好的方法?
is compound select optimum way to do it or is there a better way ?
推荐答案
SELECT p.id, p.name, COUNT(v.user_id)
FROM personal p
LEFT JOIN
visit v
ON v.user_id = p.id
GROUP BY
p.id
当然,您也可以使用子选择(例如,如果您具有 ANSI
GROUP BY
兼容性):
You may also use subselect of course (for instance if you have ANSI
GROUP BY
compatibility on):
SELECT p.id, p.name,
(
SELECT COUNT(*)
FROM visit v
WHERE v.user_id = p.id
)
FROM personal p
这篇关于mysql 显示每行中来自其他表的行数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:mysql 显示每行中来自其他表的行数


基础教程推荐
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01