Postgresql – Strict condition check on each element of jsonb array postgres
I have a table master_data_approval_table in my postgres DB having field approval_value (type Jsonb) which contains below structure: We want only those records where each object of jsonb array strictly matches the given condition "status": "Approved" Expected O/P: I tried…