Hi friends
If You want to convert varbinary data type to varchar i.e. to show the actual password in database which is stored in encrypted form then you must run the following query.
Syntax:
select convert(varchar ,emp_pass) from table_name
Example:
select convert(varchar, emp_pass) from login_master
If You want to convert varbinary data type to varchar i.e. to show the actual password in database which is stored in encrypted form then you must run the following query.
Syntax:
select convert(varchar ,emp_pass) from table_name
Example:
select convert(varchar, emp_pass) from login_master
0 comments:
Post a Comment