Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • FROM_BASE64('encocded_string) function mysql

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 1.65k
    Comment on it

    FROM_BASE64('string')

    FROM_BASE64 function in mysql is used to decode the encoded value. The value which is encode with the BASE64 rule to encode by the MySQL function TO_BASE64, is decoded by this FROM_BASE64 mysql function. The argument which is passed with this function is a encoded string by BASE64 encoding rule.

    HERE is some of example-

    mysql> SELECT TO_BASE64('base64 encoded string');
    -> YmFzZTY0IGVuY29kZWQgc3RyaW5n
    
    mysql> SELECT TO_BASE64('abc'), FROM_BASE64(TO_BASE64('abc'));
            -> 'JWJj', 'abc'
    

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: