MariaDB/MySQL – Convert keys and values from json object into rows, using JSON_TABLE
Using Mariadb 10.6 - In the following example, I try to convert the entries of the json object into table rows: SELECT * FROM JSON_TABLE('{ "1": [1, 123.25], "10": [2, 110.5], "100": [3, 105.75] }', '$.*' COLUMNS ( col1 decimal(13,2)…