SQL Server Binary Conversion functions

Source: Internet
Author: User

First, background

A friend of the previous time group asked a question: "Add an increment sequence to the query, such as: 0x00000001, that is, each is a 36-digit (0-9,A--Z), and 0x0000000z is followed by 0x00000010, creating a mapping table like the following":

(Figure1:)

Second, decimal conversion to hexadecimal

There is a lot of information on the Internet about using SQL statements to convert decimal to 16 binary data, such as:

-- Mode 1 SELECT CONVERT (VARBINARY(23785)

The execution return value is 0x00005ce9, but it should be noted that this should return binary, but the binary estimate is too cumbersome to read, so SQL Server returns 16 binary, if you want to save as a string is not simply put this directly using convert, A SQL similar to the following does not have a return value:

SELECT CONVERT (VARCHAR,CONVERT(VARBINARY(23785))

So the following function is shown on the net to convert to a 16 binary string:

--Mode 2CREATE FUNCTIONBINARY2HEXSTR (@bin VARBINARY(8000))RETURNS VARCHAR(8000) asBEGIN    DECLARE @re VARCHAR(8000),@i INT    SELECT @re="',@i=datalength(@bin)     while @i>0        SELECT @re=substring('0123456789ABCDEF',substring(@bin,@i,1)/ -+1,1)                +substring('0123456789ABCDEF',substring(@bin,@i,1)% -+1,1)                +@re            ,@i=@i-1    RETURN('0x'+@re)ENDGO--TestSELECTDbo. BINARY2HEXSTR (23785)

The above SQL also returns 0X00005CE9, but this time the return is a string, it seems that the problem has been resolved, but as long as you do not exceed the value of 2147483648, the problem will occur, the execution of the following SQL returned results as shown in Figure2:

SELECT dbo. Binary2hexstr (2147483647)SELECT dbo. Binary2hexstr (2147483648)

(Figure2: Data comparison)

Based on the conversion operation of the system, the SQL script written by Song is improved, and the parameter is changed to bigint type:

--Mode 3CREATE FUNCTIONBIGINT2HEXSTR (@value BIGINT)RETURNS VARCHAR( -) asBEGIN    DECLARE @seq CHAR( -)    DECLARE @result VARCHAR( -)    DECLARE @digit CHAR(1)        SET @seq = '0123456789ABCDEF'    --Find the remainder of the decimal @value divided by the remainder, and the value that corresponds to hexadecimal    SET @result = SUBSTRING(@seq, (@value% -)+1,1)     while @value > 0    BEGIN        SET @digit = SUBSTRING(@seq, ((@value/ -)% -)+1,1)        SET @value = @value/ -        IF @value <> 0            SET @result = @digit + @result    END    RETURN @resultENDGO--TestSELECTDbo. BIGINT2HEXSTR (2147483647)SELECTDbo. BIGINT2HEXSTR (2147483648)

Execute the above SQL and return the hexadecimal as shown in Figure3:

(Figure3: Data comparison)

Third, decimal conversion to 36 binary

The conversion from decimal to 36 can be supported by the above example modification:

--decimal conversion to hexadecimalCREATE FUNCTIONBIGINTTO36HEXSTR (@value BIGINT)RETURNS VARCHAR( -) asBEGIN    DECLARE @seq CHAR( $)    DECLARE @result VARCHAR( -)    DECLARE @digit CHAR(1)        SET @seq = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'    SET @result = SUBSTRING(@seq, (@value% $)+1,1)     while @value > 0    BEGIN        SET @digit = SUBSTRING(@seq, ((@value/ $)% $)+1,1)        SET @value = @value/ $        IF @value <> 0             SET @result = @digit + @result    END     RETURN @resultENDGO--TestSELECTDbo. BIGINTTO36HEXSTR ( *)

Execute the above test SQL, return 0xZ, test success;

Four, Additional Information

In fact, it is not necessary to write BINARY2HEXSTR functions because SQL Server provides system functions that support conversion master.dbo.fn_varbintohexstr or Master.dbo.fn_ Varbintohexsubstring, for example:

Select master.dbo.fn_varbintohexstr (2147483647)Select master.dbo.fn_ Varbintohexsubstring (1,2147483647,1,0)

But they do. There is no limit to the conversion of decimal data beyond 2147483648.

Five, Reference Documents

varbinary converted to string in SQL Server

Questions about incrementing a sequence

Binary conversion

SQL 36 binary converted to 10 binary data

Data conversion between varbinary and varchar types is implemented in SQL Server

SQL Server:convert varbinary to varchar

SQL Server Binary Conversion functions

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.