Reputation: 3135
Java Jayway jsonpath uses the operator ..
to initiate a so-called deep scan (see here). Is there something similar in oracle SQL/JSON? I looked at the oracle documentation here but didn't find anything similar.
Upvotes: 0
Views: 202
Reputation: 436
Currently SQL/JSON path expressions do not allow what you call 'deep scans' (or // in XPath). Can you tell us more about the use case? Do you really need to recursively nested arbitrarily deep into the json or can you enumerate the possible paths? Thanks
Upvotes: 1