UPDATE: This is now possible in MySQL 8 via the JSON_TABLE function: https://dev.mysql.com/doc/refman/8.0/en/json-table-functions.html
I\'m loving t
simple example:
select subtotal, sku from t1, json_table(t1.refund_line_items, '$[*]' columns ( subtotal double path '$.subtotal', sku char(50) path '$.line_item.sku' ) ) refunds