I have a custom registry value that is either 0 or 1. I would like to report the count of tblOperatingsystem.Caption where tblregistry.value =1 and count of tblOperatingsystem.Caption where tblregistry.value =0 for a chart.
Can this be done on the same chart?
""
Select Top 1000000 tblOperatingsystem.Caption,
Count(tblRegistry.Value) As count
From tblRegistry
Inner Join tblAssets On tblAssets.AssetID = tblRegistry.AssetID
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Where tblRegistry.Value = 1 And tblOperatingsystem.Caption Not Like '%Server%'
And tblRegistry.Regkey Like '%Firewall%'
Group By tblOperatingsystem.Caption
""
Thanks,
T