‎01-09-2015 06:00 PM
Solved! Go to Solution.
‎01-09-2015 11:00 PM
SELECT Distinct Top 1000000
tblAssetCustom.Manufacturer,
tblAssetCustom.Model
FROM
tblAssetCustom
AND (tblAssetCustom.Manufacturer Not Like 'VMWare%')in my WHERE clause. (I could get away with just checking the model, but I like to cover all my bases.)
AND (tblAssetCustom.Model Not Like 'VMWare%')
AND (tblAssetCustom.Model <> 'Virtual Machine')
‎01-09-2015 11:00 PM
SELECT Distinct Top 1000000
tblAssetCustom.Manufacturer,
tblAssetCustom.Model
FROM
tblAssetCustom
AND (tblAssetCustom.Manufacturer Not Like 'VMWare%')in my WHERE clause. (I could get away with just checking the model, but I like to cover all my bases.)
AND (tblAssetCustom.Model Not Like 'VMWare%')
AND (tblAssetCustom.Model <> 'Virtual Machine')
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now