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