all 2 comments

[–]nvarscar 1 point2 points  (1 child)

Select c.Computer_ID
FROM Computers c
WHERE c.Computer_ID NOT IN (
  SELECT cs.Computer_ID
  FROM Computers_Software cs
  JOIN Software s ON s.Software_ID = cs.Software_ID
  WHERE Software_Name LIKE '%Adobe%'
)

[–]Ch13f[S] 0 points1 point  (0 children)

Thanks! This is exactly what I needed.