- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
表a(作者表)
author_idauthor_name
Table b (Post Table)
post_idauthor_id
Table c (Earning Table)
post_id (post id is not unique)post_earning
I wanted to generate a report consist of earnings per author.
author_idauthor_nametotal_earning (sum of earnings of all the posts by author)
The SQL Query used:
SELECT
a.author_id,
a.author_name,
sum(post_earnings) as total_earnings
FROM TableA a
Inner Join TableB b on b.author_id = a.author_id
Inner Join TableC c on c.post_id = b.post_id
Group By
a.author_id,
a.author_name
我得到的结果是这样的:
ID user_login total_earnings2 Redstar 13.997 Redleaf 980.1810 topnhotnews 80.4311 zmmishad 39.2713 rashel 1248.3414 coolsaint 1.6616 hotnazmul 9.8317 rubel 0.1421 mahfuz1986 1.0948 ripon 12.9660 KHK 27.81
总收入的总和实际上是2863.22。但是,如果我将结果表的所有值相加,我会得到 2415。问题出在哪里?可以从第一个评论中的链接下载使用的示例表。
最佳答案
SELECT
a.author_id,
a.author_name,
sum(post_earnings) as total_earnings
FROM TableA a
Inner Join TableB b on b.author_id = a.author_id
Inner Join TableC c on c.post_id = b.post_id
Group By
a.author_id,
a.author_name
关于mysql - 我有 3 个表,如何将它们连接起来生成一个表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3956027/
我正在尝试执行 vagrant up 但一直遇到此错误: ==> default: IOError: [Errno 13] Permission denied: '/usr/local/lib/pyt
我在容器 div 中有一系列动态创建的不同高度的 div。 Varying text... Varying text... Varying text... Varying text.
通过 cygwin 运行 vagrant up 时遇到以下错误。 stderr: /bin/bash: /home/vagrant/.ansible/tmp/ansible-tmp-14872260
今天要向小伙伴们介绍的是一个能够快速地把数据制作成可视化、交互页面的 Python 框架:Streamlit,分分钟让你的数据动起来! 犹记得我在做机器学习和数据分析方面的毕设时,
我是 vagrant 的新手,正在尝试将第二个磁盘添加到我正在用 vagrant 制作的虚拟机中。 我想出了如何在第一次启动虚拟机时连接磁盘,但是当我关闭机器时 然后再次备份(使用 'vagrant
我是一名优秀的程序员,十分优秀!