这是我的formate查询结构
我想显示一些数据列表,并在子项中显示其他数据,并在子项中显示其他一些数据。
select {list_of_field,...}
json_arrayagg(json_object(
't1',field 1,
't2',field 2,
't3',json_arrayagg(json_object(
filed_list....
)),
'tn',field n
)) as test
from
<table_name>
where condition;
我的输出
parent _data:{
parent_data1,
parent_data2,
child:{[
child_data_1,
child_data_2,
child_data_3,
child2:{[
child2_data1,
child2_data2,
]}
]}
}