Postgresql – How to write a where clause using JOOQ, filtering a specific JSON attribute in a JSON object inside a JSON array?
I have this struct in a JSONB column named services of my PostgreSQL database: [ { "status": "ACTIVE", <another attributes> }, <another JSON objetcs> ] I want to make this select: select * from entity en where en.owner_id = '???'…