按范围对 SQL 浮点值进行分组

发布于 2025-01-03 06:02:17 字数 377 浏览 1 评论 0原文

我有一个带有浮点值的光标,描述我的人员体重(以千克为单位)。

所以我的数据库中的所有人员都是这样的:

NAME - WEIGHT:
John: 85.3
Michael:80.3
Lisa 58.2
Christopher: 75.0

我想做的就是按重量范围在 ListView 中显示它们。

"50-60": 1 people
"60-70": 1 people
"70-80": 2 people
"80-90": 0 people

我计划将 ListView 与 SimpleCursorAdapter 一起使用,但我不知道如何对它们进行分组...

非常感谢您的帮助

I have a cursor with a float value describing my people weight in kg.

So all my people in my database have this look:

NAME - WEIGHT:
John: 85.3
Michael:80.3
Lisa 58.2
Christopher: 75.0

What I want to do is to display them in a ListView by weight range.

"50-60": 1 people
"60-70": 1 people
"70-80": 2 people
"80-90": 0 people

I plan to use a ListView with a SimpleCursorAdapter, but I don't know how to group them...

Thank a lot for your help

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

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

发布评论

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

评论(1

无戏配角 2025-01-10 06:02:17

大致如下:

select
sum(case when weight > 60 and weight <= 70 then 1 else 0 end) as weight1,
sum(case when weight > 60 and weight <= 80 then 1 else 0 end) as weight2
from myTable

Something along the lines of:

select
sum(case when weight > 60 and weight <= 70 then 1 else 0 end) as weight1,
sum(case when weight > 60 and weight <= 80 then 1 else 0 end) as weight2
from myTable
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文