Skip to Content
SQL Explorer

SQL Editor

The SQL Editor lets you query your data warehouse directly from the Vendo interface. Write ad-hoc queries, explore tables, and save useful queries for later.

Open SQL Explorer under Data → Explore in the Data menu.


What the SQL Editor is for

  • Run ad-hoc queries against your BigQuery warehouse
  • Explore table schemas and preview data
  • Test transformation logic before creating a Data Studio transformation
  • Export query results for analysis
  • Save and organize frequently used queries

Interface

The SQL Editor provides:

AreaPurpose
Query editorWrite and edit SQL with syntax highlighting
Schema browserBrowse available tables and columns
Results panelView query output with pagination
Saved queriesAccess previously saved queries

Running queries

  1. Write your SQL in the editor pane.
  2. Click Run or press Cmd/Ctrl + Enter.
  3. View results in the panel below.
  4. Optionally save the query for reuse.

Queries run against your account’s BigQuery dataset. Results are limited to prevent large downloads — use LIMIT clauses for exploratory work.


Table access

The schema browser shows all tables available to your account:

  • Source tables — raw data from connected integrations
  • Transformation outputs — tables created by Data Studio
  • System tables — Vendo-managed tables (events, users, etc.)

Click a table name to see its columns and data types.


Saving queries

Save useful queries to reuse later:

  1. Write your query.
  2. Click Save in the toolbar.
  3. Give it a descriptive name.
  4. Access saved queries from the sidebar.

Saved queries are visible to all workspace members.


Tips

  • Use SELECT * FROM table LIMIT 10 to preview table structure
  • Reference the Data Catalog for column documentation
  • For complex transformations, consider creating a Data Studio transformation instead of running ad-hoc queries
Last updated on