I\'m experiencing a weird hex string result when trying to concat a string with a column that should be of LONGTEXT type.
The query goes like this:
S
Have you tried casting? Usually works pretty well for me. Example:
SELECT CONCAT("abc",CAST(t.LONGTEXT_VALUE AS CHAR),"cde") FROM mytable t