Learn how to query your data using natural language or SQL, and understand your results effectively.
The easiest way to get started is using natural language. Simply ask questions in plain English:
Choose from your connected databases in the sidebar
Ask in plain English what you want to know
Execute your query and see the results
Analyze your data in the results table
"Show me all sales from last month"
"What are the top 10 customers by revenue?"
"Compare sales between 2022 and 2023"
"Show me products with low inventory"
If you're familiar with SQL, you can write queries directly for more precise control:
Use the switch in the query panel to enable SQL input
Use standard SQL syntax with your database's specific features
Click run to see your results
SELECT customer_name, total_sales FROM sales WHERE date >= '2023-01-01' ORDER BY total_sales DESC LIMIT 10;
This query shows the top 10 customers by sales since the beginning of 2023.
Click on linked values to explore related data automatically
Return to previous views when exploring linked data
Select rows and press Ctrl+C to copy to clipboard
Ever wonder what just got executed? See exactly how your natural language query gets converted to SQL with full transparency.