I am using the following query and utilizing the group_concat
function. However, at times the data in the answers
column is being cut off; meaning I don't get the entire data, in the end it is just chopped off.
I suspect it might have something to do with the datatype....can it be casted to a bigger datatype? Currently the Other1
datatype is text
select SiteName,
case
when group_concat(Other1) is not null
then group_concat( cast(Other1 AS BLOB))
when group_concat(Other1) is null
then 'No Response provided'
end
'answers'
from disparities_community_partnerships
where QuarterId=2
group by SiteName
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…