How do I convert BLOB into VARCHAR in MySQL?

后端 未结 3 714
有刺的猬
有刺的猬 2020-12-16 19:15

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 b

3条回答
  •  清酒与你
    2020-12-16 19:56

    try with the below query

    alter table table_name change field_name field_name VARCHAR(1000);
    

提交回复
热议问题