gpt4 book ai didi

mysql计算每个用户的书数并在每一行中显示

转载 作者:行者123 更新时间:2023-11-29 19:04:35 25 4
gpt4 key购买 nike

例如我的表格如下:

user_id | book     | 
------------------
1 | aaaa |
1 | bbbb |
2 | aaaa |
3 | cccc |

现在我想要选择每行中所有用户书籍总和的数据

user_id | book     | count(book)
---------------------------------
1 | aaaa | 2
1 | bbbb | 2
2 | aaaa | 1
3 | cccc | 1

有人可以帮助我吗?

最佳答案

使用子选择来做到这一点

select user_id, book, (select count(1) from table as table2 where user_id = table.user_id ) as count_book
form table

关于mysql计算每个用户的书数并在每一行中显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43611794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com