How do I convert BLOB into VARCHAR in MySQL?

本秂侑毒 提交于 2019-11-27 18:18:25

问题


It is in a shared host and I access with Navicat. I have field with BLOB and I want to convert it into VARCHAR. I've tried in the design screen but everything was lost. I backed up.


回答1:


try using this, I found it some time ago, you can convert it to char, not to Varchar2 or Varchar, haven't test it yet. Try:

CAST(a.ar_options AS CHAR(10000) CHARACTER SET utf8)

MySQL treat data unique. Hence there is a difference between Blob and Text. Text simply means a text string stored as original, not in binary, whereas a blob is a text string stored as a binary.




回答2:


try with the below query

alter table table_name change field_name field_name VARCHAR(1000);



回答3:


I found this of MySQL's Website if you are trying to change your column to a different data type and keep the new data type in the database. Works great for what I need!

ALTER TABLE table_name CHANGE col col1 varchar(100)


来源:https://stackoverflow.com/questions/8627621/how-do-i-convert-blob-into-varchar-in-mysql

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!