Private beta coming soon
Ask your database anything, in plain English
Dronk writes the SQL, runs it safely against your own connection, and turns the answer into live dashboards. Join the waitlist for early access.
- Plain-language questions translated into real queries
- Support for MySQL and Postgres
- Intelligent schema analysis for accurate queries
- Read-only by default for secure database access
SELECT region, SUM(amount) AS revenue
FROM orders
WHERE created_at >= now() - interval '30 days'
GROUP BY region
ORDER BY revenue DESC;
| Region | Revenue |
|---|---|
| North America | $482,300 |
| Europe | $361,920 |
| Asia Pacific | $248,150 |
Ran in 240ms · read-only · 3 rows
Ask anything about your data
Dronk writes the SQL, runs it read-only, and turns the answer into a live table.
Ask a question…