I have a query which will return the results if a computer has a particular software installed see code
I need help with Creating a query that will return results of all the software that isnt installed on a particular computer.
Thanks
Mo
Code:
strSQL = "SELECT tbl_Computer_Identification.Computer_Asset_Number, tbl_Computer_Identification.Computer_ID_Make, " & _
"tbl_Computer_Identification.Computer_ID_Model, tbl_Computer_Identification.Computer_ID_Serial_Number, " & _
"tbl_Computer_Identification.Computer_ID_Warranty_Expiry, tbl_Computer_Identification.Computer_ID_In_Stock, " & _
"tbl_Computer_Identification.Computer_ID_Out_Of_Service, [Computer_Main_App_Name] & Chr(32)& [Computer_Main_App_Version] AS Application, " & _
"tbl_Application_Computer_JoinTable.Computer_ID, tbl_Application_Computer_JoinTable.Application_ID " & _
"FROM tbl_Computer_Main_Applications INNER JOIN (tbl_Computer_Identification INNER JOIN tbl_Application_Computer_JoinTable ON " & _
"tbl_Computer_Identification.Computer_ID = tbl_Application_Computer_JoinTable.Computer_ID) ON tbl_Computer_Main_Applications.Computer_Main_Application_ID = " & _
"tbl_Application_Computer_JoinTable.Application_ID " & _
"WHERE (((tbl_Computer_Identification.Computer_Asset_Number)= " & Chr(34) & cmbComputerID & Chr(34) & "));"
I need help with Creating a query that will return results of all the software that isnt installed on a particular computer.
Thanks
Mo