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

Last updated: April 16, 2026

Explore Your Schema

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.

Dash0 SQL editor

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.

Dash0 SQL editor

Further Reading