> ## Documentation Index
> Fetch the complete documentation index at: https://docs.synehq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting Started

> Create and use your first Tangent

## Create your first Tangent

<AccordionGroup>
  <Accordion title="1) Go to Tangents">
    Navigate to <a href="https://data.synehq.com/tangents">data.synehq.com/tangents</a>.
  </Accordion>

  <Accordion title="2) Create a Tangent">
    * Click **Create Tangent**
    * Name your Tangent
    * Select your database connections

    <Info>
      Need to add connections first? Go to <a href="https://data.synehq.com/connections">Connections</a> and add Postgres/MySQL/etc.
    </Info>
  </Accordion>

  <Accordion title="3) Browse & Query">
    * Open your Tangent card → **Browse & Query**
    * Explore tables and relationships across sources
    * Open the Query Console to run federated SQL

    <Card title="Open Console" icon="terminal" href="https://data.synehq.com/console">
      Use the SQL console to write and run federated queries
    </Card>
  </Accordion>
</AccordionGroup>

## Example: Postgres + MySQL

```sql theme={"system"}
SELECT pg_users.name, mysql_orders.amount
FROM postgres_db.public.users pg_users
JOIN mysql_db.sales.orders mysql_orders
  ON pg_users.id = mysql_orders.user_id;
```

<Note>
  This runs live with no ETL—DuckDB orchestrates the query under the hood.
</Note>
