I have jsonb column in my PgSql table with data like these :
{
"group": [
{
"child1": "test",
"child2": "test"
},
{
"child1": "test2",
"child2": "lorem ipsum"
}
]
}
"group" can be multiple and is compounded of nested children data.
Is it possible to concat "child1" data in one select request or to check if one of nested "child1" is like %test%.
Thanks in advance.