gpt4 book ai didi

Oracle按身份证号得到省市、性别、年龄的示例代码

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 67 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Oracle按身份证号得到省市、性别、年龄的示例代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

1、通过身份证号查询所在省市 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
select
count (*) as total,
  case substr(t.certno,0,2)
   when '11' then '北京市'
   when '12' then '天津市'
   when '13' then '河北省'
   when '14' then '山西省'
   when '15' then '内蒙古自治区'
   when '21' then '辽宁省'
   when '22' then '吉林省'
   when '23' then '黑龙江省'
   when '31' then '上海市'
   when '32' then '江苏省'
   when '33' then '浙江省'
   when '34' then '安徽省'
   when '35' then '福建省'
   when '36' then '江西省'
   when '37' then '山东省'
   when '41' then '河南省'
   when '42' then '湖北省'
   when '43' then '湖南省'
   when '44' then '广东省'
   when '45' then '广西壮族自治区'
   when '46' then '海南省'
   when '50' then '重庆市'
   when '51' then '四川省'
   when '52' then '贵州省'
   when '53' then '云南省'
   when '54' then '西藏自治区'
   when '61' then '陕西省'
   when '62' then '甘肃省'
   when '63' then '青海省'
   when '64' then '宁夏回族自治区'
   when '65' then '新疆维吾尔自治区'
   when '71' then '台湾省'
   when '81' then '香港特别行政区'
   when '82' then '澳门特别行政区'
   else '未知'
   end as province
  from uip_bjt_userinfo t
  group by case substr(t.certno,0,2)
     when '11' then '北京市'
     when '12' then '天津市'
     when '13' then '河北省'
     when '14' then '山西省'
     when '15' then '内蒙古自治区'
     when '21' then '辽宁省'
     when '22' then '吉林省'
     when '23' then '黑龙江省'
     when '31' then '上海市'
     when '32' then '江苏省'
     when '33' then '浙江省'
     when '34' then '安徽省'
     when '35' then '福建省'
     when '36' then '江西省'
     when '37' then '山东省'
     when '41' then '河南省'
     when '42' then '湖北省'
     when '43' then '湖南省'
     when '44' then '广东省'
     when '45' then '广西壮族自治区'
     when '46' then '海南省'
     when '50' then '重庆市'
     when '51' then '四川省'
     when '52' then '贵州省'
     when '53' then '云南省'
     when '54' then '西藏自治区'
     when '61' then '陕西省'
     when '62' then '甘肃省'
     when '63' then '青海省'
     when '64' then '宁夏回族自治区'
     when '65' then '新疆维吾尔自治区'
     when '71' then '台湾省'
     when '81' then '香港特别行政区'
     when '82' then '澳门特别行政区'
     else '未知' end order by province desc

2、通过身份证号得到性别(第17位为奇数为男,偶数为女) 。

?
1
2
3
select
   decode(mod(to_number(substr(t.useridcardnum, 17, 1)), 2),0, '女' , '男' ) as sex
  from uip_ca_userinfo t

Oracle按身份证号得到省市、性别、年龄的示例代码

3、通过身份证号得到年龄 。

?
1
select to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) as age from uip_ca_userinfo t

Oracle按身份证号得到省市、性别、年龄的示例代码

4、通过身份证号统计所在年龄段的人数 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
select count (t.id),
   case
    when to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) between 1 and 20 then
    '1-20岁'
    when to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) between 21 and 30 then
    '21-30岁'
    when to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) between 31 and 40 then
    '31-40岁'
    when to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) between 41 and 50 then
    '41-50岁'
    else
    '50岁以上'
   end as 年龄段
  from uip_ca_userinfo t
  group by case
    when to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) between 1 and 20 then
     '1-20岁'
    when to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) between 21 and 30 then
     '21-30岁'
    when to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) between 31 and 40 then
     '31-40岁'
    when to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) between 41 and 50 then
     '41-50岁'
    else
     '50岁以上'
    end
  order by 年龄段 asc

Oracle按身份证号得到省市、性别、年龄的示例代码

5、通过身份证号统计男女数量 。

?
1
2
3
4
5
select count (t.id),
   decode(mod(to_number(substr(t.useridcardnum, 17, 1)), 2),0, '女' , '男' ) as sex
  from uip_ca_userinfo t
  where to_char(sysdate, 'yyyy' ) - substr(t.useridcardnum, 7, 4) between 1 and 26
  group by decode(mod(to_number(substr(t.useridcardnum, 17, 1)), 2),0, '女' , '男' )

Oracle按身份证号得到省市、性别、年龄的示例代码

总结 。

到此这篇关于oracle按身份证号得到省市、性别、年龄的示例代码的文章就介绍到这了,更多相关oracle 身份证号得到省市 性别 年龄内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。

原文链接:https://blog.csdn.net/li_wen_jin/article/details/106612912 。

最后此篇关于Oracle按身份证号得到省市、性别、年龄的示例代码的文章就讲到这里了,如果你想了解更多关于Oracle按身份证号得到省市、性别、年龄的示例代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

67 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com