Docs/Getting Started
Quick Start Guide#
Get started with QueryMind in just a few minutes.
1. Launch QueryMind#
After installing QueryMind, launch the application.
2. Sign In or Use Guest Mode#
You have two options:
Sign In (Recommended)#
- Click "Sign in with Google" or "Sign in with GitHub"
- Complete the OAuth flow in your browser
- You'll be automatically returned to the app
Guest Mode#
- Click "Continue without login"
- Limited to 1 database connection
- AI features are disabled
3. Add a Database Connection#
-
Click "+ Add Connection" in the sidebar or main screen
-
Select your database type:
- MySQL
- PostgreSQL
- MariaDB
- Redis
-
Enter connection details:
- Name: A friendly name for this connection
- Host: Database server address (e.g.,
localhost) - Port: Database port (default varies by type)
- Username: Database user
- Password: Database password
- Database: (Optional) Default database to connect to
-
Click "Test Connection" to verify
-
Click "Save" to add the connection
4. Connect and Explore#
- Click the connection name in the sidebar to connect
- Expand the connection to see databases and tables
- Click a table to view its structure
5. Run Your First Query#
- Select the Query tab
- Type a SQL query in the editor:
SELECT * FROM users LIMIT 10; - Press
Cmd+Enter(Mac) orCtrl+Enter(Windows/Linux) to execute
6. Try the AI Assistant#
- Click the AI Assistant button in the top-right
- Type a natural language request:
"Show me all orders from the last 7 days with customer names"
- The AI will generate and explain the SQL query
- Click to execute the generated query
Next Steps#
- Learn about database connections
- Explore AI features
- Master the Query Editor