Concat two JSON string columns with PySpark
Suppose I have two columns (StringType): JSON 1 JSON 2 {"key1":"value1"} {"key2":"value2"} {"key3":"value3"} {"key4":"value4"} I need to concat these columns to have a LIST of JSON in the third column (also string), something like this: JSON 1 JSON 2 JSON…