select idfrom json_table(json_array(1,2,3,4 returning blob) format json, '$[*]'columns ( id number path '$'));
ID
----------
1
2
3
4
select idfrom json_table(json_array(1,2,3,4 returning blob) format json, '$[*]'columns ( id number path '$'));
ID
----------
1
2
3
4