I have a field which is varbinary. It has already been populated. Now how do i convert varbinary to varchar so that I can use the data in the field for some other purpose. I
You can use cast operation:
select cast(column_name as char) from table_name