gpt4 book ai didi

mysql - 计算mysql中的元组

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

我有一个名为 X 的 mysql 表,我想计算一个元组出现的次数。例如,我们有表 X 为:

A B
1 2
1 3
1 2

我想运行一个查询并得到这样的结果:

A B Count
1 2 2
1 3 1

在 mysql 中有没有这样做?!

最佳答案

您需要使用 Aggregate Function - COUNT在您的查询中。

使用这个(假设你的表的名字是 table1):

select a, b, COUNT(*) as [Count] FROM table1 group by a, b

关于mysql - 计算mysql中的元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25396484/

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