MySQL 在整个表上加入 SUM 列

发布于 2024-07-22 04:40:14 字数 497 浏览 5 评论 0原文

假设我有下表:

id    num_votes    total_rating
-------------------------------
1     20           30
2     40           13
3     15           25

我想将所有 id 的总和连接到整个表上,因此它看起来像:

id    num_votes    total_rating    sum
--------------------------------------
1     20           30              6
2     40           13              6
3     15           25              6

我尝试对自身执行 LEFT JOIN,但我只得到 1 行结果——有什么想法吗?

谢谢!

Let's say I had the following table:

id    num_votes    total_rating
-------------------------------
1     20           30
2     40           13
3     15           25

I want to join the SUM of all ids, let's say, onto the entire table so it looks like:

id    num_votes    total_rating    sum
--------------------------------------
1     20           30              6
2     40           13              6
3     15           25              6

I tried to do a LEFT JOIN on itself but I only get a 1 row result -- any thoughts?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终止放荡 2024-07-29 04:40:14
SELECT  t.*, idsum
FROM    (
        SELECT  SUM(id) AS idsum
        FROM    mytable
        ) q,
        mytable t
SELECT  t.*, idsum
FROM    (
        SELECT  SUM(id) AS idsum
        FROM    mytable
        ) q,
        mytable t
风透绣罗衣 2024-07-29 04:40:14
SELECT id, num_votes, total_rating, (SELECT SUM(id) FROM `table`) AS sum FROM `table`

这是一个内联选择,它们可能很昂贵。 但它在这里有效。

SELECT id, num_votes, total_rating, (SELECT SUM(id) FROM `table`) AS sum FROM `table`

This is an inline select and they can be expensive. But it works here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文