gpt4 book ai didi

c# - 如何计算某个项目在列中存在的次数?

转载 作者:太空宇宙 更新时间:2023-11-03 11:32:54 24 4
gpt4 key购买 nike

enter image description here

我有一个学生表和一个候选人表,学生可以为候选人投票,现在我的问题是如何显示所有候选人及其相应的票数?我使用多对多关系来跟踪哪个学生投票给了特定的候选人。

最佳答案

select c.candidateId, c.candidatename, 
count(sc.candidate_tbl_candidateId) as vote_count
from candidate_tbl c
left join student_tbl_has_candidate_tbl sc on sc.candidate_tbl_candidateId = c.candidateId
group by c.candidateId, c.candidatename

关于c# - 如何计算某个项目在列中存在的次数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48358334/

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