Explanation Of Jsonb Introduced By Postgresql

[Solved] Explanation Of Jsonb Introduced By Postgresql | Ruby - Code Explorer | yomemimo.com
Question : Explanation of JSONB introduced by PostgreSQL

Answered by : barisx

SELECT '{"c":0, "a":2,"a":1}'::json, '{"c":0, "a":2,"a":1}'::jsonb; json | jsonb
------------------------+--------------------- {"c":0, "a":2,"a":1} | {"a": 1, "c": 0}
(1 row)

Source : https://stackoverflow.com/questions/22654170/explanation-of-jsonb-introduced-by-postgresql | Last Update : Sun, 04 Sep 22

Answers related to explanation of jsonb introduced by postgresql

Code Explorer Popular Question For Ruby