mysql blob类型的查询和更新 - zLulus/My_Note GitHub Wiki
摘抄自mysql blob类型转string的sql处理方式
查询
select CONVERT (columnName USING utf8) AS CONTENT from tableName;
新增
INSERT INTO tableName(columnName ) VALUES (cast('<p>中文英文html</p>'as char));
更新
update tableName set columnName =cast('<p>中文英文html</p>'as char);