In order to generate a report you need to know what exactly you need to count.
Do you need to count different operating systems or just one number for any?
tblAssets.OScode contains an entry if the asset is a computer and has an Operating system. It is linked to
tsysOS where you find the name of the OS.
tblSoftware contains scanned software installations on your network.
Or would you like to count distinct product keys? In that case you need to use
tblSerialnumber, which contains each scanned Product Key and the AssetID on which it was scanned. You need to use a subquery to get distinct productkeys with join to
tsysIPlocations and then count the ProductKeys.
The following report will count distinct OS product keys based on IP location of the assets they have been scanned from:
Select Top 1000000 OSKeys.IPLocation,
Count(OSKeys.ProductKey) As [OS Keys]
From (Select Distinct Top 1000000 tblSerialnumber.ProductKey,
tsysIPLocations.IPLocation
From tblSerialnumber
Inner Join tblAssets On tblAssets.AssetID = tblSerialnumber.AssetID
Inner Join tsysIPLocations
On tblAssets.IPNumeric Between tsysIPLocations.StartIP And
tsysIPLocations.EndIP
Where tblSerialnumber.Product Like '%Windows%') OSKeys
Group By OSKeys.IPLocation