Answers for "postgresql jsonb remove key"

0

postgresql jsonb remove key

SELECT jsonb '{"a":1,"b":2}' - 'a', -- will yield jsonb '{"b":2}'
       jsonb '["a",1,"b",2]' - 1    -- will yield jsonb '["a","b",2]'
Posted by: Guest on April-27-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language