42Cells logo42Cells

Conversations

Ask questions, get answers — grounded in your actual data.

Ask questions, get answers

Start a conversation, describe what you need, and the agent writes and runs SQL on your databases. Results appear inline — no context switching, no copy-paste.

Conversation
DA
Show daily creation trends for conversations vs notebooks
RUN_SQLDaily counts by type — 15 rowsDone
15 rows
datetypecount
2026-01-23Notebooks104
2026-01-24Notebooks56
2026-01-25Notebooks267

Now let me create a line chart to show these trends over time:

Daily Creation Trend: Conversations vs Notebooks
036912Jan 18Jan 21Jan 24Jan 27Jan 31
count — Conversationscount — Notebooks

Conversations have maintained steadier daily creation rates, while Notebooks show more variance.

Ask a question about your data…

Run SQL across databases

The agent writes and executes SQL directly on your Postgres and MySQL connections. Results stream back with row counts, timing, and expandable tables.

  • Queries run against your live databases — no data copies.
  • SELECT-only by default — read access keeps things safe.
  • Inline result tables you can expand, sort, and explore.
RUN_SQL
SELECT channel, SUM(spend) AS total_spend, COUNT(*) AS campaigns FROM marketing.campaigns GROUP BY channel ORDER BY total_spend DESC
Done9 rows · 53ms · production-db
DERIVED_QUERY
SELECT c.name, o.total FROM customers_result c JOIN orders_result o ON c.id = o.customer_id
DoneJoined customers + orders · 142 rows · DuckDB

Cross-database joins

Combine results from different databases using derived queries powered by DuckDB. The agent pulls data from each source, then joins locally — no ETL pipelines required.

  • Join Postgres with MySQL, or any combination of connected sources.
  • Composable — derived queries can reference other derived queries.
  • Standard SQL with window functions, CTEs, and aggregations.

Data access controls

Choose which connections and tables the agent can see per conversation. Scope the context so the agent stays focused on the right data.

  • Select connections and filter to specific tables.
  • Agent only sees what you allow — no accidental exposure.
  • Change the data context mid-conversation as questions evolve.
Data context
production-db12 tables
analytics-db8 tables
staging-dbHidden
Sharing
VisibilityWorkspace
DADana A.
Owner
MKMike K.
Observer

Share and collaborate

Set conversations to workspace or private visibility. Share with team members, and let observers watch your session stream in real time.

  • Workspace conversations are visible to the whole team.
  • Observer mode lets colleagues follow along live.
  • Share links for async review of completed analyses.

Data answers without the overhead

Conversations connect directly to your databases. Every query is auditable, every result is grounded in real data, and cross-database joins mean you don't need to consolidate everything into one warehouse first.