jeromerg
jeromerg

Reputation: 3135

Deep scan with oracle SQL/JSON

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

Answers (1)

Beda Hammerschmidt
Beda Hammerschmidt

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

Related Questions