Oracle 10-in-turn 36 binary

Source: Internet
Author: User

CREATE OR REPLACE FUNCTION idfms.func_dec236 (parm in INT DEFAULT 0)
RETURN VARCHAR2
Is
/*
10 binary number to 36 binary number
*/
SRC VARCHAR2 (+): = ' 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ '; --Change to another string, which is any binary
LEN INT;
Res VARCHAR2 (10): = ";
TMP INT;
Val INT;
BEGIN
TMP: = Parm;
Len: = LENGTH (SRC);

while (TMP >= 36)
LOOP
Val: = MOD (tmp, Len);
Res: = SUBSTR (src, val + 1, 1) | | Res
TMP: = TRUNC (Tmp/len);
END LOOP;

IF (tmp >= 0)
Then
Res: = SUBSTR (SRC, tmp + 1, 1) | | Res
END IF;

RETURN Res;
END;
/

Oracle 10-in-turn 36 binary

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.