duckdb-web
duckdb-web copied to clipboard
DuckDB website and documentation
See https://github.com/duckdb/duckdb/issues/11842
It might be worth to elaborate on the effects of this setting, as they are quite substantial. The current docs only say: > Allow the database to access external state...
The `join()` documentation states “Types supported are 'inner' and 'left'”. However, *more* types are supported, as shown in the error message for below snippet: ``` >>> duckdb.values((1, 2)).join(duckdb.values((1, 3)).set_alias('right'), 'col0',...
See https://github.com/duckdb/duckdb/issues/11839
[Page on unnest ](https://duckdb.org/docs/sql/query_syntax/unnest.html)should mention "generate_subscripts", without which `unnest` is often almost useless.
The [docs](https://duckdb.org/docs/data/csv/overview.html#parameters) have this to say about the columns parameter for the `read_csv` function: > A struct that specifies the column names and column types contained within the CSV file...
> Please describe the problem you encountered in the DuckDB documentation and include the "Page URL" link shown below. > Note: only create an issue if you wish to report...
Raised by @Giorgi on Discord: > https://duckdb.org/docs/api/python/known_issues#error-when-importing-the-duckdb-python-package-on-windows the Python on Windows [...] requires Microsoft Visual C++ Redistributable package. > > The dotnet library users on Windows also need to install...
See https://github.com/duckdb/duckdb/issues/11791
See https://github.com/duckdb/duckdb/issues/11787