Dash0 Raises $110M Series B at $1B Valuation

Last updated: May 13, 2026

Explore Your Schema

Browse available tables, columns, and data types in the SQL schema explorer.

Before you write a query, you can discover what data is available, directly in the SQL editor using two built-in commands.

Run either command as a regular query and the results appear in the output panel below the editor.

List Available Tables

sql
1
SHOW TABLES

Returns all queryable tables in your Dash0 environment, such as logs, spans, and web_events.

SQL editor output panel showing SHOW TABLES results listing available queryable tables

Inspect a Table's Columns

sql
1
DESCRIBE logs

Returns all available columns and their data types for the given table. Replace logs with any table name returned by SHOW TABLES.

SQL editor output panel showing DESCRIBE results with table columns and their data types

Further Reading