Access中如何计算大于X的点击数?
不知道为什么我无法思考清楚;也许是即将到来的周末!
我有我的用户表:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是非常微不足道的。
首先使用
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.