I have these rows in mysql table.
tags
is a json type column and json array is stored.
id tags
1 ["a", "b"]
2 ["a", "b", "c"]
3 []
I want to return join value of the array elements.
i.e.)
id tags
1 "a, b"
2 "a, b, c"
3 ""
Is there any mysql function to do this?
※ this is just an example table, so why tags
is json array doesn't matter, sorry.