DuckDB
To query Tableflow tables with DuckDB, you'll first need to install and load the Iceberg extension.
INSTALL iceberg;
LOAD iceberg;
Once you've installed the Iceberg extension, you'll need to connect to the object store system where you've chosen to store your Tableflow tables.
Once you've successfully connected to the object store, you can query your tables using the standard syntax for the Iceberg extension:
SELECT * from iceberg_scan('s3://example-bucket/_tableflow/tablename+tableUUID');
Last updated
Was this helpful?