Slide 175
Slide 175 text
JSON Constructors
% SELECT json_build_array(1,2,'three');
json_build_array
------------------
[1, 2, "three"]
% SELECT json_build_object('foo',1,'bar',true);
json_build_object
---------------------------
{"foo" : 1, "bar" : true}
% SELECT json_build_object(
'foo', 1,
'bar', json_build_array(1,2,'three')
);
json_build_object
--------------------------------------
{"foo" : 1, "bar" : [1, 2, "three"]}
%
Nesting!