标签: json postgresql
有没有更好的方法来在PostgreSQL中总结JSON值:
SELECT SUM(j.value::int) FROM json_each_text('{"a": 1, "b": 2}'::json) AS j(_, value); sum ----- 3