‎05-07-2013 07:46 PM
‎05-17-2013 05:36 PM
Case
When tblAssetCustom.Manufacturer Like '%lenovo%' Then
tblComputerSystemProduct.Version Else tblAssetCustom.Model End
‎05-08-2013 11:06 PM
‎05-08-2013 10:52 PM
SELECT tsysOS.Image AS icon, tblAssets.AssetID, tblAssets.AssetName, tblAssets.Domain, tblAssets.IPAddress, tblAssets.Firstseen, tblAssets.Lastseen,
tblComputerSystemProduct.Version AS Model
FROM tblAssets INNER JOIN
tsysOS ON tblAssets.OScode = tsysOS.OScode INNER JOIN
tblAssetCustom ON tblAssets.AssetID = tblAssetCustom.AssetID INNER JOIN
tblComputerSystemProduct ON tblAssets.AssetID = tblComputerSystemProduct.AssetID
WHERE (tblAssetCustom.State = 1)
ORDER BY tblAssets.Domain, tblAssets.AssetName
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now