MySQL 数据总计?
我正在为我正在制作的网站制作一个个人资料页面,其中有一个部分显示“总评级”,并且我拥有的数据库结构是
username|song_id|plus|minus
---------------------------
example | 294398|001 | 000
egnum2! | 244202|000 | 001
所以我需要计算包含指定用户名和的行数把它们加起来,我找不到一个我太容易理解的 MySQL 命令 :S
例如,我访问 example 的配置文件,它统计了他的名字出现在上面的表 example 中的所有次数,并给我一个数字,在上面的例子中,例子有以同样的方式按“示例”计算 1 总费率,我将不得不做另一件事,计算他所有的加费率和减费率。 (那些是 1/0,我输入了三位数,因为它不适合哈哈)
I'm making a profile page for a site that I'm making, and it there's a section to display 'Total Ratings', and the database structure I have is
username|song_id|plus|minus
---------------------------
example | 294398|001 | 000
egnum2! | 244202|000 | 001
So I need to count the amount of rows that contain a specified username and add them up, I can't find a MySQL command that I can understand too easily :S
Eg, I visit example's profile, and it counts all the number of times his name appears in the table example above, and give me a number, in the example above, example has 1 total rate by 'example' in the same way, i'll have to do another where I count all his plus rates and minus rates. (those are 1/0, I put in triple digits cause it wouldn't fit lol)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
GROUP BY
查询和 聚合函数:Use a
GROUP BY
query and aggregate functions: