DuckDB has a flatten()
function that we can use to flatten nested lists. The function concatenates a list of lists into a single list. So whether the outer list contains just one list or multiple lists, we can use the flatten()
function to flatten them into one list.
However, it only goes one level deep, so that’s something to keep in mind.
Continue reading