gpt4 book ai didi

mysql - SQL 计数多列?

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

如果我的表中有两列,比如 first_namelast_name,我想知道有多少人共享相同的名字:

Name Count | Name
-------------------------
12 | John Smith
8 | Bill Gates
4 | Steve Jobs

最佳答案

按两列分组 - 例如:

select firstname, lastname, count(*) as `Name Count`
from table
group by firstname, lastname

关于mysql - SQL 计数多列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13862312/

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