oracle 年龄段统计

查看年龄在14和18岁之间的人员信息select*frompostulantinformationwherebirthdaybetween'to_number(to_ch... 查看年龄在14和18岁之间的人员信息 select * from postulantinformation where birthday between 'to_number(to_char(sysdate,'yyyy')-18)' and 'to_number(to_char(sysdate,'yyyy')-14)' 为什么会提示missing keyword 展开
 我来答
badkano
推荐于2017-10-02 · 知道合伙人体育行家
badkano
知道合伙人体育行家
采纳数:144776 获赞数:885371
团长

向TA提问 私信TA
展开全部

年龄段统计可用case when 语句。

如test表中有以下数据:

其中18-29岁为青年,30-49岁为中年,50岁以上为老年,先统计各个年龄段人数,可用如下语句:

select case when age between 18 and 29 then '青年' when age between 30 and 59 then '中年' when age>=60 then '老年' end as 年龄段,
count(*) as 人数 
from test
group by case when age between 18 and 29 then '青年' when age between 30 and 59 then '中年' when age>=60 then '老年' end;

统计结果:

痞子641
2018-10-16 · TA获得超过1453个赞
知道答主
回答量:57
采纳率:100%
帮助的人:5.9万
展开全部

结合前几位大佬的答案:

先查出所有数据

select a.*,rowid from RELEASED a

下面是先计算年龄,然后按照年龄分组:

SELECT case when age between 18 and 25 then '青年' when age between 26 and 59 then '中年' when age>=60 then '老年' end as 年龄段,
count(*) as 人数
from (SELECT floor(months_between(sysdate,RELEASED.SPRP_BIRTH_DATE) / 12 ) AGE--对月份向下取整,表示年龄
FROM RELEASED)
group by case when age between 18 and 25 then '青年' when age between 26 and 59 then '中年' when age>=60 then '老年' end
ORDER BY 人数  DESC;

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
neusunly
2011-03-29 · 超过20用户采纳过TA的回答
知道答主
回答量:85
采纳率:0%
帮助的人:48.1万
展开全部
试试这个:
select * from postulantinformation where birthday between
to_number(to_char(add_months(sysdate,-216),'YYYY'))
and
to_number(to_char(add_months(sysdate,-168),'YYYY'))

你birthday那个字段是什么类型的,为什么你to_number外边还有单引号。。。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友769e04421
2011-03-29
知道答主
回答量:10
采纳率:0%
帮助的人:4.3万
展开全部
select * from postulantinformation where birthday between to_number(to_char(sysdate,'yyyy')-18)
and to_number(to_char(sysdate,'yyyy')-14)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lsora_lu_sheng
2011-03-29 · 超过11用户采纳过TA的回答
知道答主
回答量:52
采纳率:0%
帮助的人:0
展开全部
应该是这样的:select * from postulantinformation where birthday between to_number(to_char(sysdate,'yyyy'))-18 and to_number(to_char(sysdate,'yyyy'))-14;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式