使用 SQL 获取不同计数?

发布于 2024-10-17 12:30:56 字数 274 浏览 9 评论 0原文

为您的 SQL 专家提供简单的 SQL。

我有两个字段(AccountNo、CheckNo)。可以有超过 1 个具有相同值的 checkno。它将具有相同的 AccountNo。我想要 mytable 中的一个列表,显示 AccountNo 和 CheckNo,以及它存在的次数。

Select Distinct AccountNo, CheckNo, Count(Distinct AccountNo, CheckNo) as Total
from MyTable

Simple SQL for you SQL experts.

I have two fields (AccountNo, CheckNo). There can be more than 1 checkno that has the same value. It will have the same AccountNo. I would like a listing from mytable displaying AccountNo and CheckNo, as was as the count of how many times it exists.

Select Distinct AccountNo, CheckNo, Count(Distinct AccountNo, CheckNo) as Total
from MyTable

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

汹涌人海 2024-10-24 12:30:56

你所追求的是GROUP BY

Select AccountNo, CheckNo, Count(*) as Total
from MyTable
group by AccountNo, CheckNo

What you are after is GROUP BY

Select AccountNo, CheckNo, Count(*) as Total
from MyTable
group by AccountNo, CheckNo
我为君王 2024-10-24 12:30:56
Select AccountNo, CheckNo, Count(*) as Total
from MyTable
group by AccountNo, CheckNo
Select AccountNo, CheckNo, Count(*) as Total
from MyTable
group by AccountNo, CheckNo
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文