Most DuckDB distributions are shipped with the json
extension, which enables us to work with JSON documents. DuckDB provides a bunch of JSON functions, including JSON_EXISTS()
. The JSON_EXISTS()
function allows us to check whether a specific path exists within a JSON document.
This article explores how this function works, along with examples.
Continue reading