I've read this article about JSONB & JSON datatypes. this article is talking about the differences between them and explains their use cases and which is awesome. But, I'm still wondering about the use cases of JSON & JSONB (unstructured data in Postgres) in general.
I know it's always better to use them when we're dealing with unstructured data (since it's the only choice). I wanted to know if is there any scenario you can handle with both JSONB (unstructured) & creating a new table and doing it with JSONB would be a better choice.
PS: I want to hear an example of a scenario in which IT IS LOGICAL to use unstructured data AND DOING IT WITH IS DOABLE. (out of curiosity coz I've never faced anything like this)