身份证验证

alter  function  dbo.IDTrue--验证十八位身份证是否正确
(
  @ID  varchar(18)
)
returns  bit
as
begin
--验证格式是否正确
declare  @RES bit
declare  @W table  (rn int,val int)
insert into   @W(rn,val)
select 1,7
union select 2,9
union select 3,10
union select 4,5
union select 5,8
union select 6,4
union select 7,2
union select 8,1
union select 9,6
union select 10,3
union select 11,7
union select 12,9
union select 13,10
union select 14,5
union select 15,8
union select 16,4
union select 17,2
union select 18,1
declare  @A  table (rwn int  ,val varchar(1))
insert into @A(rwn,val)
select  0,'1'
insert into @A(rwn,val)
select  1,'0'
insert into @A(rwn,val)
select  2,'X'
insert into @A(rwn,val)
select  3,'9'
insert into @A(rwn,val)
select  4,'8'
insert into @A(rwn,val)
select  5,'7'
insert into @A(rwn,val)
select  6,'6'
insert into @A(rwn,val)
select  7,'5'
insert into @A(rwn,val)
select  8,'4'
insert into @A(rwn,val)
select  9,'3'
insert into @A(rwn,val)
select  10,'2'
declare  @i int
declare  @j int
declare  @S  int

if len(@ID)=18
  begin
  select  @S=0,@i=1
  declare  @IDI int
  declare  @WI int
  declare  @PII  varchar(1)
  while    @i<=17
     begin
       select  @PII=substring(@ID,@i,1)
       if    @PII like  '[0-9]'
        begin
         select  @IDI=convert(int,@PII)
         select  @WI=val from @W where   rn=@i
         select  @j=@IDI*@WI
         select  @S=@S+@j
         select  @i=@i+1
        end
       else
        begin
              select  @RES=0
               return  @RES
        end

     end
  select @S=@S % 11
  select  @IDI=convert(int,substring(@ID,18,1))
  declare  @pi   varchar(1)
  select  @pi=val from  @A where  rwn =@S 
  if   @pi=@IDI
      select  @RES=1
  else
      select  @RES=0
  end
 else
  begin
     select  @RES=0
  end
return  @RES
end
go
declare  @pc  bit
select  @pc=dbo.IDTrue('420324198101031224')
select  @pc
go

alter function    SFZ15To18--十五位升十八
  (
   @sfz varchar(15)
  )
 returns  varchar(18)
as
 begin
 declare  @W table  (rn int,val int)
insert into   @W(rn,val)
select 1,7
union select 2,9
union select 3,10
union select 4,5
union select 5,8
union select 6,4
union select 7,2
union select 8,1
union select 9,6
union select 10,3
union select 11,7
union select 12,9
union select 13,10
union select 14,5
union select 15,8
union select 16,4
union select 17,2
union select 18,1
declare  @A  table (rwn int  ,val varchar(1))
insert into @A(rwn,val)
select  0,'1'
insert into @A(rwn,val)
select  1,'0'
insert into @A(rwn,val)
select  2,'X'
insert into @A(rwn,val)
select  3,'9'
insert into @A(rwn,val)
select  4,'8'
insert into @A(rwn,val)
select  5,'7'
insert into @A(rwn,val)
select  6,'6'
insert into @A(rwn,val)
select  7,'5'
insert into @A(rwn,val)
select  8,'4'
insert into @A(rwn,val)
select  9,'3'
insert into @A(rwn,val)
select  10,'2'
declare  @NEWID  varchar(18)
select  @NEWID=substring(@sfz,1,6)+'19'+substring(@sfz,7,9)
declare  @i int
declare  @j int
declare  @S  int
select  @S=0,@i=1
declare  @IDI int
declare  @WI int
declare  @PII  varchar(1)
while  @i<=17
   begin
         select  @PII=substring(@NEWID,@i,1)
         if    @PII like  '[0-9]'
         begin
          select  @IDI=convert(int,@PII)
          select  @WI=val from @W where   rn=@i
          select  @j=@IDI*@WI
          select  @S=@S+@j
          select  @i=@i+1
         end
         else
         begin
          return ''
         end
   end
 select @S=@S % 11
 declare  @pi   varchar(1)
 select  @pi=val from  @A where  rwn =@S
 select  @NEWID=@NEWID+@pi
 return  @NEWID

 end
go
select  dbo.SFZ15To18('420324810103153')
go
--日期是否正确
alter function   ChkYMD(
  @y int,
  @m tinyint,
  @d tinyint,
  @cy int
)
returns bit
as
begin
   declare  @res bit
   select  @res=1
   if  @y<1900 or  @y>@cy
     begin
          select  @res=0
          return @res
     end
   if  @m=1 or @m=3 or @m=5 or @m=7 or @m=8 or @m=10 or @m=12 
     begin
         if (@d<1) or  (@d>31)
           begin
            select  @res=0
            return  @res
           end
     end
 
   if  @m=2
     begin
       if ((@y%4)=0) and ((@y % 100)<>0)  or ( (@y % 400)=0 )
               begin--闰年
                if (@d<1) or (@d>29) 
                   begin
                        select  @res=0
                        return @res
                   end
               end else
               begin
                if  (@d<1) or (@d>28)
                  begin
                        select  @res=0
                        return @res
                   end
               end
    
     end
   if  @m=4 or @m=6 or @m=9 or @m=11
     begin
          if (@d<1) or (@d>30) 
                   begin
                        select  @res=0
                        return @res
                   end
     end
    return @res
         
end
go
select  dbo.chkymd(1981,1,3,Year(getdate()))
go
/*
y:年,m:月,d:日。在参数都只传入相应的整数
返回值:0  星期一
       1   星期2
       2   星期3
      3  星期4
      4 星期5
      5 星期6
      6 星期7
*/

alter function   GetWeekDay(
@y  int,
@m int,
@d int
)
returns tinyint
as
begin
   declare  @a tinyint
   select  @a=7
   if  @m=1 or @m=2
     begin
        select  @m=@m+12
        select  @y=@y-1
     end
  select @a=(@d+2*@m+3*(@m+1)/5+@y+@y/4-@y/100+@y/400)%7;
  return @a
end
go
select  dbo.getweekday(2004,12,10)

时间: 2025-01-20 17:13:27

身份证验证的相关文章

struts2自定义验证器(身份证验证)

struts2的验证器是用的xwork里面的验证,自定义验证器就是根据源码继承已有的字段验证器而来.具体步骤如下: 1.展开xwork-2.0.4.jar,com.opensymphony.xwork2.validator.validators目录下有个default.xml,将它复制到项目根目录下改名叫validators.xml. 验证框架首先在根目录下找validators.xml文件,没找到validators.xml文件,验证框架将调用默认的验证设置,即default.xml里面的配置

C#中国身份证验证

BlackPhoenix著于发表 2008-2-19 C#中国身份证验证,包括省份验证和校验码 验证,符合GB11643-1999标准... 今天写的 C#中国身份证验证,包括省份验 证和校验码验证,符合GB11643-1999标准... 理论部分: 15位身份证号码 =6位地区代码+6位生日+3位编号 18位身份证号码=6位地区代码+8位生日+3位编号 +1位检验码 各省市地区国家代码前两位代码是: 北京 11 吉林 22 福建 35 广东 44 云南 53 天津 12 黑龙江 23 江西 3

asp身份证验证代码函数_应用技巧

身份证验证代码函数 Function CheckCardId(e) arrVerifyCode = Split("1,0,x,9,8,7,6,5,4,3,2", ",") Wi = Split("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2", ",") Checker = Split("1,9,8,7,6,5,4,3,2,1,1", ",") If Len(e

Google AdSense关于身份证验证的最新提交方法

Google AdSense因内部系统的原因,造成4月份提交身份证验证的部分发布商无法得到及时验证及解除Pin码保留.对此Google AdSense中文支持小组发布博文通告解决方法. Google AdSense中文支持小组博文内容应用如下: 如果您已申请过3次Pin码邮件而无法正常收取,可通过以下方式提交身份证信息: 方案一 请您在以下表格中填写相应的内容并确保信息准确无误,我们将在两周内处理完您的申请并通过论坛"身份证验证专区"发布通过验证的发布商名单(通过加密的Pub-id形式

js手机号码,邮编,区号,身份证 验证程序

js手机号码,邮编,区号,身份证 验证程序 手机号码查询 function checkMobile(){  var sMobile = document.mobileform.mobile.value  if(!(/^13[0-9]d{4,8}$/.test(sMobile))){   alert("请输入手机号码(至少前7位)");   document.mobileform.mobile.focus();   return false;  } } //邮编查询 function c

js 可区别省份身份证验证代码

js 可区别省份身份证验证代码 <head> <title>身份证号码验证</title> <script type="text/网页特效"> var vcity={ 11:"北京",12:"天津",13:"河北",14:"山西",15:"内蒙古",             21:"辽宁",22:"吉林&quo

jquery validate日期与身份证验证实例

jquery validate日期与身份证验证实例 下面是validate的validate.js jQuery.extend(jQuery.validator.messages, {     required: "必填",     remote: "请修正该字段",     email: "请输入正确格式的电子邮件",     url: "请输入合法的网址",     date: "请输入合法的日期",

JavaScript实现身份证验证代码_javascript技巧

18位身份证号码各位的含义 1-2位省.自治区.直辖市代码: 3-4位地级市.盟.自治州代码: 5-6位县.县级市.区代码: 7-14位出生年月日,比如19670401代表1967年4月1日: 15-17位为顺序号,其中17位男为单数,女为双数: 18位为校验码,0-9和X,由公式随机产生: 举例: 340523 1980 0101 0013这个身份证号的含义: 34为安徽省 05为马鞍山市 23为和县 19800101为出生日期(1980年1月1日) 001为顺序号(1为单数,代表为男性) 3

javascript身份证验证正则与详细说明

网页特效身份证验证正则与详细说明 1.简单的正则表达式: (1)preg_match("/^(d{18,18}|d{15,15}|d{17,17}x)$/",$id_card) (2)preg_match("/^(d{6})(18|19|20)?(d{2})([01]d)([0123]d)(d{3})(d|x)?$/",$id_card) (3)preg_match("/(^d{15}$/)|(d{17}(?:d|x|x)$/),$id_card) 2.复

用PHP写的身份证验证程序

程序     写了几个身份证方面的函数,个人感觉挺有用的,特别是在网络问卷调查时,对个人信息里的身份证进行验证很有用,但是应者寥寥,还是收在自己的blog里算了. <?php// 计算身份证校验码,根据国家标准GB 11643-1999 function idcard_verify_number($idcard_base){ if (strlen($idcard_base) != 17){ return false; } // 加权因子 $factor = array(7, 9, 10, 5,