Is possible to look for a given value at any key in a JSONB column in Postgres? In the documentation I can't see any example.
Example value at a JSONB
column:
{
a: 1,
b: 2,
c: 3
}
I want to find all records that have 1
as a value anywhere. NOTE: there may be other keys than a, b, c
unknown at the moment.