Good morning
The company I work for are currently using Lansweeper and have asked me to create a SQL query to search for 3 different types of software and all versions. (Did a term of SQL and can't remember much)
They want multiple versions of Revit(13)Autodesk Material Libraries (9)and 4 versions of AutoCAD 2011 checked.
How can I create a query for all versions of 3 different apps, in one query.
I have found a search and tried to modify as below.
Any and all help gratefully received
Regards
Tim
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tsysOS.OSname,
tblAssets.SP,
tblAssets.IPAddress,
SoftwareCheck.softwareName,
SoftwareCheck.softwareVersion,
SoftwareCheck.SoftwarePublisher
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID =...