‎05-16-2011 06:11 PM
Select Top 1000000 tblComputers.Computername, tblCompCustom.PurchaseDate,
tblComputers.ComputerUnique
From tblComputers Inner Join
tblCompCustom On tblComputers.Computername = tblCompCustom.Computername
Group By tblComputers.Computername, tblCompCustom.PurchaseDate,
tblComputers.ComputerUnique
‎05-16-2011 10:53 PM
‎05-16-2011 10:32 PM
‎05-16-2011 06:13 PM
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
IsNull(tblCompCustom.PurchaseDate, '') As date
From tblComputers Left Join
tblCompCustom On tblComputers.Computername = tblCompCustom.Computername
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now