Configure a database connection in Cerewro and query, modify and insert data using natural language. The AI translates your requests to optimized SQL and returns results in the format you need.
"Who are the top 10 customers by revenue this year?"
→ SELECT customers.name, SUM(orders.total) FROM orders JOIN customers...
"How many orders arrived this week by sales channel?"
→ SELECT channel, COUNT(*), SUM(total) FROM orders WHERE date >= ...
"Create an Excel with all products that have stock < 10 and price > £50"
→ SELECT * FROM products WHERE stock < 10 AND price > 50 ORDER BY stock ASC
"Update the price of all products in the 'Winter Season' category by applying a 30% discount. Show me the affected records before confirming."