Let's say that I have a type STRING column 'debugdata'. An example value for a given user looks like this:
{"TITLE_DESCRIPTION":"approve","CATEGORY":"approve"}
However, let's say there can be multiple values for the TITLE_DESCRIPTION
{"TITLE_DESCRIPTION":"No, name does not match,No, summary is not clear","CATEGORY":"Yes"}
How can I split out the "No, name does not match" and "No, summary is not clear" into two columns?
I've tried using JSON_EXTRACT
and JSON_ARRAY_GET
and other JSON syntax, but I can't quite break this up into two columns. Thanks!