Sparkline which show value each day between parameters @startdate @enddate
And can i do this inside a table or do i need to make it in an matrix? I already have a gauge which show the complience and i need to se the changes day by day between the period.
SELECT 'date', name, id, AVG(complience) AS complience FROM result WHERE (date >= @startdate) AND (date <= @enddate) Group by name, id
Systemdeveloper @ 4film