‎09-03-2014 06:41 PM
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
DatePart(yyyy, tblBIOS.ReleaseDate) As BiosYear,
tblAssetCustom.PurchaseDate,
tblAssetCustom.Warrantydate,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblBIOS.ReleaseDate As BiosDate,
tblAssets.IPAddress,
tsysOS.OSname,
tblAssets.SP,
tblAssets.Lastseen,
tblAssets.Description,
tblAssets.Processor,
tblAssets.NrProcessors,
tblAssets.Memory
From tblAssets
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblBIOS On tblAssets.AssetID = tblBIOS.AssetID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Order By BiosDate,
BiosYear,
tblAssets.AssetUnique
Solved! Go to Solution.
‎09-03-2014 09:03 PM
Convert(VarChar(10), your_date_field, 121) AS fieldname
‎09-03-2014 09:03 PM
Convert(VarChar(10), your_date_field, 121) AS fieldname
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now