Intro
ChartSQL is a visualization language embedded in SQL scripts. ChartSQL is designed for data scientists, SQL developers, and web application developers to quickly visualize complex queries.
Visualize any SQL Query
-- @chart: column
-- @title: Column - Sales by Month
-- @subtitle: An example column chart showing sales by month
-- @formats: currency
SELECT
TRUNC(date_closed, 'MONTH') as Month,
sum(amount) as Sales
FROM sales
GROUP BY TRUNC(date_closed, 'MONTH')
ORDER BY TRUNC(date_closed, 'MONTH') ASC
Key Features
Get Started with ChartSQL Studio

Visualizations
Practical Uses
Ways to use ChartSQL
ChartSQL Studio

ChartSQL Cloud (coming soon)
ChartSQL .js
Last updated