explain how to build a graph from a remote database please
select [date], [value] From bd.charts
How can I build a graph using my example, please explain
I need a for loop ?
https://sql.ophir.dev/documentation.sql?component=chart#component Example 1
select
'chart' as component,
'Quarterly Revenue' as title,
'area' as type,
'indigo' as color,
5 as marker,
TRUE as time;
select
'2022-01-01T00:00:00Z' as x,
15 as y;
select
'2022-04-01T00:00:00Z' as x,
46 as y;