Problem with PostgreSQL, JSONB, nested queries and database indices
currently I'm struggeling with PostgreSQL 11, JSONB and database indices. We have a customers table (shortened): create table public.customers ( id uuid not null, created timestamp without time zone, lastmodified timestamp without time zone, data jsonb, primary key (id, mandantid)…