‎09-30-2016 11:14 AM
Solved! Go to Solution.
‎09-30-2016 09:27 PM
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.IPAddress,
(Case When tblAssetCustom.Model Like '%Virtual%' Then 'Virtual'
Else 'Physical' End) As Type
From tblAssets
Inner Join tblAssetCustom On tblAssetCustom.AssetID = tblAssets.AssetID
Inner Join tblComputersystem On tblComputersystem.AssetID = tblAssets.AssetID
Where tblAssetCustom.State = 1 And tblComputersystem.Domainrole > 2
‎10-03-2016 09:37 AM
‎09-30-2016 09:27 PM
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.IPAddress,
(Case When tblAssetCustom.Model Like '%Virtual%' Then 'Virtual'
Else 'Physical' End) As Type
From tblAssets
Inner Join tblAssetCustom On tblAssetCustom.AssetID = tblAssets.AssetID
Inner Join tblComputersystem On tblComputersystem.AssetID = tblAssets.AssetID
Where tblAssetCustom.State = 1 And tblComputersystem.Domainrole > 2
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now