QueryPilot LogoQueryPilot

Natural language to
production-grade SQL.

QueryPilot pairs a context-aware AI engine with a visual schema planner to translate plain English into safe, complex SQL — JOINs, and all — without data ever leaving your laptop.

No cloud dependency · No data risk · Full audit trail

querypilot — ~/analytics.db

//Query generated · 138ms

SELECT plan_tier,
       ROUND(AVG(churn_score), 2) AS risk
FROM   subscriptions
WHERE  quarter = '2025-Q4'
GROUP BY plan_tier
ORDER BY risk DESC;

Enterprise

0.71

Pro

0.44

Starter

0.19

Walkthrough QueryPilot

See QueryPilot in motion.

From a plain-English question to production-ready SQL, without sending your schema anywhere.

Loading preview…
ZERO DATA EGRESS/POSTGRES · MYSQL · SQLITE/AI THAT RUNS ON YOUR MACHINE/NO CLOUD ROUND-TRIPS/NATURAL LANGUAGE → SQL/SCHEMA-AWARE/0ms NETWORK LATENCY/YOUR KEYS · YOUR DATA/ZERO DATA EGRESS/POSTGRES · MYSQL · SQLITE/AI THAT RUNS ON YOUR MACHINE/NO CLOUD ROUND-TRIPS/NATURAL LANGUAGE → SQL/SCHEMA-AWARE/0ms NETWORK LATENCY/YOUR KEYS · YOUR DATA/

Everything you need.
Nothing you don't.

querypilot showcase
Show me the top 5 film categories by total rental revenue
QueryPilot AI

To find the top 5 film categories by revenue, we need to join the category, film_category, inventory, rental, and payment tables, then aggregate the amounts.

revenue_by_category.sql
SELECT c.name, SUM(p.amount) AS total_revenue
FROM category c
JOIN film_category fc USING (category_id)
JOIN inventory i USING (film_id)
JOIN rental r USING (inventory_id)
JOIN payment p USING (rental_id)
GROUP BY c.name ORDER BY total_revenue DESC LIMIT 5;

Pricing

Simple pricing, no seat surprises

Start free on your own machine. Upgrade when you need unlimited projects or team-wide audit trails.

MonthlyYearlySave ~17%

Free / Non-Commercial

For hobbyists and students learning SQL.

$0
  • Local execution only
  • 1 schema project
  • Basic NL → SQL translation
  • Community support
Most Popular

Pro

For individual developers shipping to production.

$10/mo
  • Everything in Free
  • Unlimited schema projects
  • Advanced JOIN & window function support
  • Git-style rollback history
  • Priority email support

Team

For agencies managing multiple client schemas.

$15/mo/user
  • Everything in Pro
  • Multi-seat schema sharing
  • Audit logs & explainability reports
  • Dedicated onboarding
  • SSO (coming soon)

[ ready when you are ]

Put AI inside your database

Download QueryPilot and run your first natural-language query in under a minute. Free, offline, and yours.