Top "Jsonb" questions

Binary version of the json data type, used in Postgres 9.4+. The major practical difference is efficiency.

Operator does not exist: json = json

when I try to select some record from a table SELECT * FROM movie_test WHERE tags = ('["dramatic","women", "political"]…

sql json postgresql postgresql-9.4 jsonb
Appending (pushing) and removing from a JSON array in PostgreSQL 9.5+

For versions less than 9.5 see this question I have created a table in PostgreSQL using this: CREATE TEMP TABLE jsontesting …

arrays postgresql jsonb postgresql-9.5 array-push
Calculate JSONB Array Length Using PostgreSQL 9.4

I'm running the latest version of PostgreSQL 9.4.5-1.pgdg14.04+1, and am attempting to calculate the length of a JSONB array …

postgresql postgresql-9.4 jsonb
how to store PostgreSQL jsonb using SpringBoot + JPA?

I'm working on a migration software that will consume unknown data from REST services. I already think about use MongoDB …

postgresql spring-boot spring-data-jpa jsonb
Difference between JSON and JSONB in Postgres

What's difference between JSON and JSONB data type in PosgresSQL? When should be used specific one? What's benefits or disadvantages …

json postgresql sqldatatypes jsonb
Rails and jsonb type "jsonb" does not exist

psql --version psql (PostgreSQL) 9.4.1 rails -v Rails 4.2.0 I added a jsonb column through migration like that class AddPreferencesToUsers < ActiveRecord::…

ruby-on-rails postgresql jsonb
postgresql migrating JSON to JSONB

In postgresql 9.4 the new JSONB was incorporated. On a live DB in postgresql 9.3 I have a JSON column. I want …

postgresql jsonb
Postgresql query for objects in nested JSONB field

I am using PostgreSQL 9.6, and I have a table named "ItemDbModel" with two columns looks like: No integer, Content jsonb …

json postgresql jsonb postgresql-9.6 postgresql-12
Postgres GROUP BY on jsonb inner field

I am using Postgresql 9.4 and have a table test, with id::int and content::jsonb, as follows: id | content ----+…

sql json postgresql postgresql-9.4 jsonb
Insert JSON string into Postgres and return field

I want to insert a JSON string into a Postgres table with a jsonb field and want the insert query …

json postgresql jsonb