Skip to main content

Getting Started

This tutorial walks you through registration to running your first query.

Register and Login

  1. Go to datadata.com
  2. Click Login / Register in the top right
  3. 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:

ModuleDescription
QueriesCreate and manage SQL / DQL queries
DashboardsCompose queries into visual monitoring dashboards
DatasourcesConfigure and manage database connections

Run Your First Query

  1. Go to Studio → Click New Query
  2. Select a datasource from the left panel (e.g., "crypto tick")
  3. 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;
  1. Click the run button to see results
  2. Results display in a table; you can switch to chart view

Next Steps