I have a jsonb column which have following rows
ROW1:
[
{
"cpe23Uri": "cpe:2.3:a:sgi:irix:3.55:*:*:*:*:*:*:*",
"active": true
},
{
"cpe23Uri": "cpe:2.3:a:university_of_washington:imap:10.234:*:*:*:*:*:*:*",
"active": true
}
]
ROW 2:
[]
ROW 3:
[
{
"cpe23Uri": "cpe:2.3:o:sgi:irix:*:*:*:*:*:*:*:*",
"active": true
}
]
I want to find the rows which contain sgi:irix in the key cpe23Uri
Which query should i use for best performance?