Orion 10.7
Trying to show this in a column chart....
SELECT left(Nodes.MachineType, 13) as Version, Count(MachineType) as Count
FROM Nodes
WHERE
Nodes.Vendor ='Windows'
GROUP By left(MachineType, 13)
RESULTS:
Windows 2003 1
Windows 2008 49
I want to show this in a column graph/chart but it keeps prompting for a time value....
Ideas?