AI for MariaDB.
AI-powered queries for MariaDB — the community-driven MySQL fork.
Read-only credential · Free plan available
> What is our customer churn rate per month?
SELECT DATE_FORMAT(cancelled_at, '%Y-%m') AS month,
COUNT(*) AS churned,
(SELECT COUNT(*) FROM customers c2
WHERE c2.created_at <= LAST_DAY(c1.cancelled_at)) AS total,
COUNT(*) * 100.0 / (SELECT COUNT(*) FROM customers c2
WHERE c2.created_at <= LAST_DAY(c1.cancelled_at)) AS churn_rate
FROM customers c1
WHERE cancelled_at IS NOT NULL
GROUP BY month
ORDER BY month DESC;MariaDB is the open-source fork of MySQL, maintained by the original MySQL creators. It offers enhanced performance, additional storage engines like Aria and ColumnStore, and a commitment to staying truly open source. Many Linux distributions now ship MariaDB as the default MySQL-compatible database.
AI for Database treats MariaDB as a first-class citizen. The AI understands MariaDB-specific syntax and features, generating optimized queries that take advantage of MariaDB's improvements over MySQL. Whether you run MariaDB on bare metal, in Docker, or on a managed service like SkySQL, the connection process is seamless.
Your team gets the same self-service analytics experience: ask questions, get answers, build dashboards, and set up automated alerts — all without writing SQL or submitting data requests to engineering.
What teams ask their MariaDB
> What is our customer churn rate per month?
> Show me the most popular products by units sold
> Which customers placed orders every month this year?
01 · Connect
Enter your MariaDB host, port (default 3306), database name, and credentials.
02 · Scan
Create a read-only user: GRANT SELECT ON your_db.* TO 'aifordb_reader'@'%';
03 · Ask
AI for Database auto-discovers your schema, tables, and foreign key relationships.
MariaDB specifics
Popular ways teams use it
Your MariaDB speaks English now.
Free plan available · No credit card required