Search
 
SCRIPT & CODE EXAMPLE
 

SQL

base64 encode sql server

--String to Base64
SELECT CAST('string' as varbinary(max)) FOR XML PATH(''), BINARY BASE64

--Base64 to String
SELECT CAST( CAST( 'c3RyaW5n' as XML ).value('.','varbinary(max)') AS varchar(max) )
Comment

PREVIOUS NEXT
Code Example
Sql :: oracle search text in all packages 
Sql :: oracle find text in functions 
Sql :: mysql show table character set 
Sql :: find table for column name in sql 
Sql :: ms sql rename database 
Sql :: open postgress in terminal mac 
Sql :: psql get sequences 
Sql :: oracle time 24h 
Sql :: mysql show processlist full query 
Sql :: mysql check table exists 
Sql :: check if mysql is installed 
Sql :: how to change table name in sqlite 
Sql :: top 10 rows in mysql 
Sql :: postgresql drop primary key constraint 
Sql :: install mysql server linux 
Sql :: how to create index mysql 
Sql :: list all permissions on a table in postgres 
Sql :: oracle cpu per session 
Sql :: alter sequence set current value oracle 
Sql :: sql find missing values between two tables 
Sql :: mysql id reset 
Sql :: sql find column name like 
Sql :: oracle current date 
Sql :: postgresql show current database 
Sql :: check constraint to check if date greater than todays date 
Sql :: mysql full outer join java 
Sql :: check mysql version phpmyadmin 
Sql :: What is the compatibility level of a SQL database 
Sql :: query string starts with vowels 
Sql :: sql select contem uma palavra 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =