Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to return JSON_ARRAY using an GROUP_CONCAT

I've try return json object using "concat" and "group_concat" functions. Problem is that I need to use group_concat but I want to have a valid JSON structure. What I do wrong?

  1. {"a":"a", "b": "b", "id": null}
  2. [{"id": "123"}]

...

SELECT JSON_REPLACE((
                  SELECT JSON_OBJECT(
                             'a', 'a',
                             'b', 'b',
                             'id', null
                           )), '$.id', (
                  SELECT CONCAT(
                             '[', group_concat(JSON_OBJECT(
                          'id',
                          '123')),
                             ']'))
     )

result: {"a": "a", "b": "b", "id": "[{\"id\": \"123\"}]"}

expected: {"a": "a", "b": "b", "id": [{"id": "123"}]}

like image 429
IkyryguJava Avatar asked May 05 '26 04:05

IkyryguJava


1 Answers

Extra CASTing AS JSON for the third argument of JSON_REPLACE fixes the issue :

SELECT JSON_REPLACE((
                  SELECT JSON_OBJECT(
                             'a', 'a',
                             'b', 'b',
                             'id', null
                           )), '$.id', 
                         CAST( CONCAT('[', GROUP_CONCAT(
                                            JSON_OBJECT('id', '123')),
                                      ']') AS JSON )) as "Result JSON"
Result :
{
  "a": "a",
  "b": "b",
  "id": [
    {
      "id": "123"
    }
  ]
}

Demo

like image 174
Barbaros Özhan Avatar answered May 07 '26 23:05

Barbaros Özhan