If you’re getting an error that reads something like “Binder Error: Could not find key “…” in struct” when using the array_extract()
function in DuckDB, it could be that you’re specifying a non-existent key.
When using DuckDB’s array_extract()
function to extract a value from a struct, we must provide a key that actually exists in the struct. Otherwise we’ll end up with an error like the above one.
To fix this issue, be sure to specify a key that actually exists in the struct.
Continue reading