Command Structure
All Queryly commands follow a consistent structure:Command Categories
Connection Management
Add, list, test, and remove database connections
Schema Exploration
Explore database structure, tables, and columns
Data Operations
Browse, query, and export table data
Quick Reference
Connection Management
| Command | Description |
|---|---|
connect add | Add a new database connection interactively |
connect list | Display all saved connections |
connect test <name> | Test a connection by name |
connect remove <name> | Remove a saved connection |
Schema Exploration
| Command | Description |
|---|---|
schema list <connection> | List all tables in the database |
schema info <connection> <table> | Show detailed table structure |
schema tree <connection> | Display schema as a visual tree |
Data Operations
| Command | Description |
|---|---|
data browse <connection> <table> | View table data with pagination |
data query <connection> | Interactive SQL query mode |
data export <connection> <table> <format> | Export table data (csv/json) |
Getting Help
Run Queryly without arguments to see the built-in help:Common Workflows
First-Time Setup
- Add your first database connection
- List tables to explore the schema
- Browse table data
Daily Development
Next Steps
Connect Command
Learn how to manage database connections
Schema Command
Explore database structure and tables
Data Command
Browse and query your data