Access中如何计算大于X的点击数?

发布于 2024-11-04 19:49:31 字数 199 浏览 1 评论 0原文

不知道为什么我无法思考清楚;也许是即将到来的周末!

我有我的用户表:

user | hits
mike | 20
jim  | 30
bob  | 9

我想要做的是计算点击次数大于 10 的用户数量。使用上面的示例表,输出将是 2 个用户(mike 和 jim)。

我应该从哪里开始?

Not sure why I can't think this through; perhaps its the upcoming weekend!

I have my users table:

user | hits
mike | 20
jim  | 30
bob  | 9

And what I want to do is count the number of users who have a hit count of greater than 10. Using the example table above, the output would be 2 users (mike and jim).

Where should I start?

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

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

发布评论

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

评论(2

怎会甘心 2024-11-11 19:49:31
SELECT
    COUNT([user])
FROM
    [table]
WHERE
    hits > 10
GROUP BY
    [user]
SELECT
    COUNT([user])
FROM
    [table]
WHERE
    hits > 10
GROUP BY
    [user]
佞臣 2024-11-11 19:49:31

这是非常微不足道的。

首先使用 select count(*) from users 来统计记录数,然后添加条件。

This is extremely trivial.

Start with select count(*) from users to count the number of records, and then add the condition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文