Resolved! Using subqueries?
I am trying to get all of the machines that are not at the highest version of Windows 10. I get get the highest version:Select Max(tblOperatingsystem.Version)From tblAssets Inner Join tblOperatingsystem On tblAssets.AssetID = tblOperatingsystem.A...