‎05-27-2009 08:39 PM
‎05-27-2009 09:31 PM
‎05-27-2009 09:18 PM
SELECT TOP 100 PERCENT dbo.tblComputers.Computername, dbo.tblComputers.Domain, dbo.tblComputersystem.Manufacturer, dbo.tblComputersystem.Model,
dbo.tblComputerSystemProduct.IdentifyingNumber
FROM dbo.tblComputers INNER JOIN
dbo.tblComputersystem ON dbo.tblComputers.Computername = dbo.tblComputersystem.Computername INNER JOIN
dbo.tblComputerSystemProduct ON dbo.tblComputers.Computername = dbo.tblComputerSystemProduct.Computername
WHERE (dbo.tblComputersystem.Manufacturer LIKE 'Dell%') AND (dbo.tblComputersystem.Domainrole <> '1')
ORDER BY dbo.tblComputers.Computername
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now