通过以等距间隔划分 Col2 值来计算 COUNT(Col1)
MySQL
我有两列。 Col1 包含 ID 列表,Col2 包含数字列表(范围在 -100 到 200+ 之间)。我想要 COUNT(IDs) WHERE Col2 BETWEEN -100 AND -75,以 25 为间隔一直达到上限。
使用 MySQL(或 Excel)执行此操作的最有效方法是什么。谢谢。
MySQL
I have two columns. Col1 contains a list of IDs, Col2 contains a list of numbers (ranging between -100 and 200+). I want the COUNT(IDs) WHERE Col2 BETWEEN -100 AND -75, going all the way to the upper limit in intervals of 25.
What is the most efficient way of doing this using MySQL (or Excel). Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以用这个:
想想,它会更短=)
You can use this:
Think, it'll be shorter =)