BLOB to long text conversion in MySQL

前端 未结 1 1597
执笔经年
执笔经年 2021-01-27 03:06

I have a column in MySQL which has the datatype BLOB. I am using Crystal Reports for some reports.

My problem is BLOB column will show blank data if it contains data oth

1条回答
  •  再見小時候
    2021-01-27 03:27

    try this,

    SELECT CAST(key_initiatives AS CHAR(1000) CHARACTER SET utf8 )  AS key_init FROM OBJSETTING_FOCUS_ON_CUSTOMER
    

    0 讨论(0)
提交回复
热议问题