Postgresql – How to query jsonb column that is an array of objects?
I have a Postgres db containing a table with a jsonb column tsent that contains the results of targeted sentiment analysis of text in another column. The data is structured like so: CREATE TABLE tbl(id int PRIMARY KEY, tsent jsonb);…