postgresql select ==> json 변경
메뉴구조를 만드는데.. 데이터는 잘가져왔다. 그런데 이걸 맵으로 하려고 하다보니까. 닫아줄때.. 골치가. 아파서 json으로 일단 뽑아 보았다. with vw00 as ( select a.menu_nm, a.menu_cd, a.menu_kind, a.fst_ord, ( select JSON_agg(json_build_object( 'menu_nm',menu_nm, 'menu_cd',menu_cd, 'menu_kind',menu_kind, 'fst_ord',fst_ord, 'pgm_id',pgm_id ) order by b.sed_ord) from tb_cm_menu b where b.prnt_menu_cd=a.menu_cd ) t from tb_cm_menu a where a.prnt_menu_cd ='..