I need to copy data from one column to another after converting. There is a column of type binary(255) and another column in a same table of type varchar(255). how to migrate data from binary to varchar column after using convert function. i.e CONVERT(VARCHAR(255), ?, 2)
Is there any other solution without copy data to another column? any direct change column solution ?