@dash-id

Globally unique identifier given to a ChartSQL chart that is published to DashSQL.com

circle-info

You will not usually set @dash-id manually. Instead the dash-id will be automatically created when publishing your chart to DashSQL. See Sharing & Publishing

Quick Reference

-- @dash-id: ghjeiof02

Valid Values

String

Full Example

-- @title: Auto Heatmap
-- @subtitle: An example auto generated heatmap comparing two categories
-- @dash-id: gjt30fj
SELECT
Owner,
Channel,
count(*) as Sales
FROM Sales
WHERE Sales.Status = 'Won'
GROUP BY Owner, Channel

Use Cases

@dash-id uniquely and globally identifies your chart in the DashSQL database. It is used for lookups and collaboration purposes. You will typically not need to edit this manually.

Last updated