Query and join your existing PostgreSQL databases with DuckDB data.
Note: No replication is required here. The Postgres tables are queried natively using pg_duckdb.
SELECT c.name, a.product_id, a.event_time FROM postgres.customers c JOIN duckdb.analytics a ON c.id = a.customer_id WHERE a.event_time > NOW() - INTERVAL '7 days';