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 with different queries but didn't find the exact query to get the expected output. Please help me with this.
Thanks in advance.