Skip to main content

Create your first Tangent

  • Click Create Tangent
  • Name your Tangent
  • Select your database connections
Need to add connections first? Go to Connections and add Postgres/MySQL/etc.
  • Open your Tangent card → Browse & Query
  • Explore tables and relationships across sources
  • Open the Query Console to run federated SQL

Open Console

Use the SQL console to write and run federated queries

Example: Postgres + MySQL

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;
This runs live with no ETL—DuckDB orchestrates the query under the hood.
I