I have been asked to display results in my sql server database for the following question
What software packages are not installed on any HP computers? I have tried the following but I am still getting results for the PACKNAME Manta but that package is installed on an HP computer. What am I missing?
select * from package where PACK in
( select PACK from software where TAGNUM in
( select tagnum from PC where comp NOT in
( select comp from computer where MFRNAME = 'HP')))
I have attached an image of the data for your reference below

homework. Before we attempt to help you with the query, Is there any particular method of query that you must use or cannot use ?