By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
create table mytable as select 'A' param, 200.5 value union all select 'B', 70.2;
Records: 2 Duplicates: 0 Warnings: 0
select json_objectagg(param, value) js from mytable
js |
---|
{"A": 200.5, "B": 70.2} |