Hi,
I have the follwing tables:
Equipment Table:
EquipmentID(PK) EquipmentName UserName
1 IT57 Smith
2 IT54 Jack
etc
SoftwareInventory Table:
SoftwareID(PK] SoftwareVerison Type
1 MircosoftWord Base
2 CrystalReport App
etc
SoftwareInstallationDetail Table:
EquipmentID(Key) SoftwareID(Key) SoftwareVersion InstalledDate
1 1 MicrosoftWord 1/17/2005
1 2 CrystalReport 2/00/2004
etc.
User Table:
UserName(PK) UserID
Smith abc
Jack xyz
etc.
I would like to have a query that gives me all the Softwares that are NOT installed on a person's equipment. I have tried the left join, the not exists, the Subquery. It sounds very simple, but nothing works. Please help!!!! Thanks much.
I have the follwing tables:
Equipment Table:
EquipmentID(PK) EquipmentName UserName
1 IT57 Smith
2 IT54 Jack
etc
SoftwareInventory Table:
SoftwareID(PK] SoftwareVerison Type
1 MircosoftWord Base
2 CrystalReport App
etc
SoftwareInstallationDetail Table:
EquipmentID(Key) SoftwareID(Key) SoftwareVersion InstalledDate
1 1 MicrosoftWord 1/17/2005
1 2 CrystalReport 2/00/2004
etc.
User Table:
UserName(PK) UserID
Smith abc
Jack xyz
etc.
I would like to have a query that gives me all the Softwares that are NOT installed on a person's equipment. I have tried the left join, the not exists, the Subquery. It sounds very simple, but nothing works. Please help!!!! Thanks much.