Getting Started
This tutorial walks you through registration to running your first query.
Register and Login
- Go to datadata.com
- Click Login / Register in the top right
- After registration, you'll be directed to the Explore page
Once registered, use the top navigation to access:
- Discover — Community content feed
- Explore — Browse queries, dashboards, datasources, and creators
- AI Skills — AI integration capabilities
- Studio — Core workspace
Exploring the Studio
Studio is the core workspace with three main modules:
| Module | Description |
|---|---|
| Queries | Create and manage SQL / DQL queries |
| Dashboards | Compose queries into visual monitoring dashboards |
| Datasources | Configure and manage database connections |
Run Your First Query
- Go to Studio → Click New Query
- Select a datasource from the left panel (e.g., "crypto tick")
- Enter SQL in the editor:
SELECT symbol, name,
ROUND((close - open) / open * 100, 2) AS change_pct
FROM futures_daily
WHERE trade_date >= CURRENT_DATE - 30
ORDER BY change_pct DESC
LIMIT 20;
- Click the run button to see results
- Results display in a table; you can switch to chart view
Next Steps
- Learn more about Data Querying
- Explore the DQL scripting language — complete DQL language reference
- Check out AI Skills