- 身份证构成说明:
身份证号构成(从左到右):
第1-6位数是行政区域编码
第7到第14位是出生日期
第15-17位是同一天出生的顺序号(男的用奇数数,女的用偶数)
第18位是校验码,根据ISO7064:1983.MOD11-2校验码算法可以验证该身份证号是否合法身份证号。
- 身份证格式校验:
1、取第7到10位的字符,校验出生年份:是否在 1900年到2022年之间的;
2、取第11到12位的字符,校验出生月份:是否在1-12;
3、取第13到14位校验日期:是否在1-31;
以上三步都校验通过,说明用户的身份证通过格式校验;
- 身份证合法性校验:
校验最后一位:使用ISO7064:1983.MOD11-2 校验码算法,算出一个值,通过该值跟身份证号最后一位比对,正确则该身份证合法有效。
步骤一:将前面的身份证号码17位数分别乘以不同的系数。从第一位到第十七位的系数分别为:
7-9-10-5-8-4-2-1-6-3-7-9-10-5-8-4-2
步骤二:将这17位数字和系数相乘的结果相加。
步骤三:用加出来和除以11,得到一个余数。
步骤四:余数只可能有0-1-2-3-4-5-6-7-8-9-10这11个数字。其分别对应的最后一位身份证的号码为1-0-X -9-8-7-6-5-4-3-2。
映射参考:
0-1-2-3-4-5-6-7-8-9-10
1-0-X -9-8-7-6-5-4-3-2
步骤五:根据余数取对应位置的数,跟身份证最后一位对比,一致则该身份证有效,不一致则无效。
例如:某男性的身份证号码为【53010219200508011x】, 我们利用最后一位的校验码来看看这个身份证是不是合法的身份证。
首先我们得出前17位的乘积和【(5*7)+(3*9)+(0*10)+(1*5)+(0*8)+(2*4)+(1*2)+(9*1)+(2*6)+(0*3)+(0*7)+(5*9)+(0*10)+(8*5)+(0*8)+(1*4)+(1*2)】是189,然后用189除以11得出的结果是189/11=17----2,也就是说其余数是2。最后通过对应规则就可以知道余数2对应的检验码是X。所以,可以判定这是一个正确的身份证号码。文章来源:https://www.toymoban.com/news/detail-422940.html
set @identityno='5301021920508011x';
select
case when substr(@identityno, 7, 4) not between '1900' and '2022' then '身份证年份校验不通过'
when substr(@identityno, 11, 2) not between '01' and '12' then '身份证月份校验不通过'
when substr(@identityno, 13, 2) not between '01' and '31' then '身份证日期校验不通过'
when mod(
(
substr(@identityno, 1, 1) * 7 + substr(@identityno, 2, 1) * 9 + substr(@identityno, 3, 1) * 10 + substr(@identityno, 4, 1) * 5 + substr(@identityno, 5, 1) * 8 + substr(@identityno, 6, 1) * 4 + substr(@identityno, 7, 1) * 2 + substr(@identityno, 8, 1) * 1 + substr(@identityno, 9, 1) * 6 + substr(@identityno, 10, 1) * 3 + substr(@identityno, 11, 1) * 7 + substr(@identityno, 12, 1) * 9 + substr(@identityno, 13, 1) * 10 + substr(@identityno, 14, 1) * 5 + substr(@identityno, 15, 1) * 8 + substr(@identityno, 16, 1) * 4 + substr(@identityno, 17, 1) * 2
),
11
) <> (
case
when substr(@identityno, 18, 1) = '1' then '0'
when substr(@identityno, 18, 1) = '0' then '1'
when substr(@identityno, 18, 1) in ('X', 'x') then '2'
when substr(@identityno, 18, 1) = '9' then '3'
when substr(@identityno, 18, 1) = '8' then '4'
when substr(@identityno, 18, 1) = '7' then '5'
when substr(@identityno, 18, 1) = '6' then '6'
when substr(@identityno, 18, 1) = '5' then '7'
when substr(@identityno, 18, 1) = '4' then '8'
when substr(@identityno, 18, 1) = '3' then '9'
when substr(@identityno, 18, 1) = '2' then '10'
end
) then '身份证合法性校验不通过'
else '有效身份证'
end as ret
from dual文章来源地址https://www.toymoban.com/news/detail-422940.html
到了这里,关于身份证合法性校验规则的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!