Writing SQL queries
Dashboard Studio uses SQL to retrieve data from IoT Query schemas. You write SQL in two contexts: panel editors, where statements power visualizations, and the standalone SQL Editor for data exploration. This page explains how to write effective SQL for both contexts, with emphasis on visualization requirements since they have specific structural constraints.
Where SQL is used
Dashboard Studio provides two SQL environments for different purposes. Understanding when to use each helps you work more efficiently.
Visualization queries power individual panels in reports. You write these statements in the panel editor's SQL Query tab. Each panel runs one statement that must return data in a specific structure matching the visualization type. These statements execute when reports load or refresh, so performance matters for user experience. Visualization SQL cannot modify data; all statements run as read-only SELECT operations against IoT Query schemas.
SQL Editor supports data exploration and export. Access the SQL Editor from the left sidebar under Tools. Write any SELECT statement to examine data structure, validate assumptions, or export results as CSV. The SQL Editor shows full result tables with column sorting and provides execution metrics. Use this for testing logic before adding SQL to visualization panels, or for ad-hoc data extraction that doesn't need visualization.
How to write SQL for visualizations

Visualization SQL must return specific column counts and data types. Dashboard Studio cannot render a bar chart from three columns or a stat tile from text data. Check the Dataset Requirements section in the SQL Query tab to see exactly what your chosen visualization expects before writing the statement. The table below contains supported visualization types:
How to use global variables
Global variables provide reusable values across multiple SQL statements. Define variables in Settings > Configuration > Global Variables, then reference them using ${variable_name} syntax.

Define variables for values that change periodically but remain consistent across multiple panels: analysis date ranges, vehicle type filters, or threshold values. When these values change, update the variable definition once instead of editing individual SQL statements.
Variables store text values. Cast them to appropriate types in SQL: '${variable_name}'::date for dates, '${variable_name}'::integer for numbers.
For statement-specific parameters that change frequently, you can use CTE parameter blocks at the start:
This pattern combines global variables (date ranges) with statement-specific parameters (thresholds), keeping all adjustable values at the top for easy maintenance.
How to access IoT Query schemas
IoT Query organizes data in Bronze, Silver, and Gold layers. Understanding which layer to use saves time and improves SQL clarity. For complete schema details, see the IoT Query Schema Overview.
Bronze layer contains raw tracking points from devices: bronze.tracking_data_core stores every GPS position with timestamps, coordinates, and sensor readings. Use Bronze for point-level analysis or when you need raw sensor values not processed into higher layers.
Silver layer provides processed entities: silver.trips aggregates tracking points into trip records with start/end times, distance, and duration. silver.zone_visits records when devices enter and exit geofences. silver.idle_events identifies periods when vehicles remain stationary with engines running. Use Silver for most visualization needs since it provides analysis-ready structures.
Gold layer offers pre-aggregated metrics and dimensional models for complex analytics. Use Gold for fleet-wide statistics or multi-dimensional analysis that would require complex joins against Silver tables.
Reference tables using schema.table format: silver.trips, not just trips. Include date range filters in WHERE clauses to limit data scanned:
Most SQL statements filter by device, time range, or both. Add these filters early in WHERE clauses to reduce data volume processed.
How to use the SQL Editor
Access SQL Editor from the left sidebar under Tools. Use it for three main purposes: testing logic before adding to panels, exploring data schemas to understand available columns, and exporting data that doesn't need visualization.

The SQL Editor supports multiple tabs for different statements. Write SQL in tabs, execute with the "Execute Query" button, and view results in the table below. Results show execution metrics (execution time, rows returned) and support column sorting for quick data examination.
Export results as CSV using the "Export CSV" button. This works for ad-hoc reports or data extracts for external analysis. The SQL Editor has no result row limit, unlike visualization SQL which should return focused datasets.
Test visualization SQL in the SQL Editor before adding to panels. Write the statement, verify it returns expected columns and data types, then copy it to the panel editor's SQL Query tab. This workflow catches structural issues before you configure visualization settings.
Exploration pattern for new data:
Common SQL patterns
Most visualization SQL follows similar patterns. Copy these structures and adjust filters, columns, and aggregations for your specific needs.
What to do when SQL fails
Execution failures fall into three categories: structural mismatches with visualization requirements, SQL syntax errors, or filters that return no data.
Column structure mismatches
Occur when results don't match visualization expectations. If you selected a bar chart but your SQL returns three columns, Dashboard Studio cannot render it. Check Dataset Requirements in the SQL Query tab. The bar chart needs exactly two columns (category, value), so adjust your SELECT clause:
SQL syntax errors
Show specific error messages. Common issues include missing schema prefixes (trips instead of silver.trips), typos in column names, or incorrect date casting. Test statements in SQL Editor to see detailed error messages with line numbers.
Empty results
Despite successful execution indicate filters exclude all data. Test the SQL without WHERE clauses in SQL Editor to verify the table contains data, then add filters incrementally to identify which condition excludes your expected results.
Performance issues
If statements execute slowly or timeout, add date range filters to WHERE clauses. Operations scanning entire tables process millions of rows unnecessarily:
For additional performance guidance, see How to access IoT Query schemas for best practices on filtering and schema selection.
Where to find SQL examples
The SQL Recipe Book provides complete examples for common telematic analyses. These recipes demonstrate patterns for trip analysis, zone visit calculations, idle detection, and fleet metrics. Each recipe includes the complete SQL statement, explanation of logic, and sample results.
Adapt Recipe Book examples for visualizations by adjusting the SELECT clause to match visualization requirements. A recipe that returns detailed trip records can become a bar chart by adding GROUP BY and COUNT aggregation. A statement calculating per-vehicle metrics can become a stat tile by adding SUM across all vehicles.
You just need to:
Copy examples from Recipe Book to the Dashboard Studio'sEditor.
Test with your actual data.
Verify results, then modify the SELECT clause for your target visualization.
The core WHERE and JOIN logic remains the same; you adjust only the output structure.
For schema details, see the IoT Query Schema Overview. This reference explains available tables, column definitions, and relationships between Bronze, Silver, and Gold layers.
Last updated
Was this helpful?