‎01-28-2009 10:02 PM
‎02-06-2009 03:00 PM
SELECT dbo.tblComputers.Computername, CASE isnull(DERIVEDTBL.softwareName, '') WHEN '' THEN 'Not installed' ELSE 'Installed' END AS isinstalled
FROM dbo.tblComputers LEFT OUTER JOIN
(SELECT ComputerName, softwareName
FROM dbo.tblSoftware
WHERE (softwareName = 'Windows Internet Explorer 7')) DERIVEDTBL ON dbo.tblComputers.Computername = DERIVEDTBL.ComputerName
‎02-05-2009 10:54 PM
‎02-03-2009 07:36 PM
‎01-29-2009 08:30 PM
‎01-28-2009 10:09 PM
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now