I have table:
-------+-------
| param | value |
|-------+-------|
| A | 200.5|
| B | 70.2|
---------------
When I execute:
select json_object(`param`, `value`) from `table`
I'm getting this:
{"A": "200.5"}
{"B": "70.2"}
But I want this:
{
"A": "200.5",
"B": "70.2"
}