Does PostgreSQL support MySQL 'RLIKE' / Regexp statement in jsonb columns type ?
for example, need a query which pull from the following table all ids which contains the value 'big':
| data |
| "id" :"bigData" , "content" : "aaa...." |
| "id" : "biggerData, "content" : "bbb..."|
| "id": "smallData", "content: "ddd......"|
Select * from myTable where data Rlike ...
Is it Applicable ?