Archivo por meses: marzo 2026

Select sobre un JSON con un array

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