I want to convert entire column of a table to Base64 string.
For example I have below table :
|Id |EmailID |
|123|test1@test.com|
|456|test2@test.com|
Now I want output like below :
|Id |EmailID |Base64String |
|abc|test1@test.com|Base64 string of (Id+EmailID)|
|xyz|test2@test.com|Base64 string of (Id+EmailID)|
Any answers will greatly appreciated.
Thanks in Advance.