誰能用SQL SERVER 2000幫忙給一個16進制轉成10進制的函數
如:我传入一串8位数的16进制数去。返回一串10进制的字符回来。
    B24147FE -> 2990622718

解决方案 »

  1.   

    CREATE FUNCTION dbo.f_hex_dec(@s varchar(16))
    RETURNS bigint
    AS
    BEGIN
      DECLARE @i int,@result bigint
      SELECT @i=0,@result=0,@s=RTRIM(LTRIM(UPPER(REVERSE(@s))))
      WHILE @i<LEN(@s)
      BEGIN
        IF SUBSTRING(@s,@i+1,1) not between '0' and '9' and SUBSTRING(@s,@i+1,1) not between 'A' and 'F'
        BEGIN
          SELECT @result=0
          break
        END
        SELECT @result=@result+(CHARINDEX(SUBSTRING(@s,@i+1,1),'0123456789ABCDEF')-1)*POWER(16,@i),@i=@i+1
      END
      RETURN @result
    END
    GO
      

  2.   

    [code=SQL]找到一个10转16的.--创建16进制转换字符串函数   
      CREATE   function   fn_hex_to_char   (   
          @x   varbinary(100),   --   binary   hex   value   
          @l   int   --   number   of   bytes   
          )   returns   varchar(200)   
        as     
      --   Written   by:   Gregory   A.   Larsen   
      --   Date:   May   25,   2004   
      --   Description:     This   function   will   take   any   binary   value   and   return     
      --                               the   hex   value   as   a   character   representation.   
      --                               In   order   to   use   this   function   you   need   to   pass   the     
      --                               binary   hex   value   and   the   number   of   bytes   you   want   to   
      --                               convert.   
      begin   
        
      declare   @i   varbinary(10)   
      declare   @digits   char(16)   
      set   @digits   =   '0123456789ABCDEF'   
      declare   @s   varchar(100)   
      declare   @h   varchar(100)   
      declare   @j   int   
      set   @j   =   0     
      set   @h   =   ''   
      --   process   all     bytes   
      while   @j   <   @l   
      begin   
          set   @j=   @j   +   1   
          --   get   first   character   of   byte   
          set   @i   =   substring(cast(@x   as   varbinary(100)),@j,1)   
          --   get   the   first   character   
          set   @s   =   cast(substring(@digits,@i%16+1,1)   as   char(1))   
          --   shift   over   one   character   
          set   @i   =   @i/16     
          --   get   the   second   character   
          set   @s   =   cast(substring(@digits,@i%16+1,1)   as   char(1))   +   @s   
          --   build   string   of   hex   characters   
          set   @h   =   @h   +   @s   
      end   
      return(@h)   
      end   
      go   
        
      --调用   
      select   dbo.fn_hex_to_char(convert(varbinary,100),4)  [/code]
      

  3.   

    CREATE FUNCTION dbo.f_hex_dec(@s varchar(16))
    RETURNS bigint
    AS
    BEGIN
      DECLARE @i int,@result bigint
      SELECT @i=0,@result=0,@s=RTRIM(LTRIM(UPPER(REVERSE(@s))))
      WHILE @i<LEN(@s)
      BEGIN
        IF SUBSTRING(@s,@i+1,1) not between '0' and '9' and SUBSTRING(@s,@i+1,1) not between 'A' and 'F'
        BEGIN
          SELECT @result=0
          break
        END
        SELECT @result=@result+(CHARINDEX(SUBSTRING(@s,@i+1,1),'0123456789ABCDEF')-1)*cast(POWER(16,@i) as bigint),@i=@i+1
      END
      RETURN @result
    END
    GO
    select dbo.f_hex_dec('B24147FE')godrop function f_hex_dec
    /*
                         
    -------------------- 
    2990622718(所影响的行数为 1 行)*/
      

  4.   

    --10转16进制
    create function dbo.f_int2hex(@num int)
    returns varchar(100)
    as
    begin
    declare @re varchar(100)
    set @re=''
    while @num>0
    select @re=substring('0123456789ABCDEF',@num%16+1,1)+@re
    ,@num=@num/16
    return(@re)
    end
    go

    select dbo.f_int2hex(766)--16进制转10进制
    declare @a varbinary(200)
    set @a=0x2fe
    select cast(@a as int)