vote up 0 vote down star

I've got a table of hardware and a table of incidents. Each hardware has a unique tag, and the incidents are tied to the tag.

How can I select all the hardware which has at least one incident listed as unresolved?

I can't just do a join, because then if one piece of hardware had multiple unresolved issues, it would show up multiple times.

flag

80% accept rate

2 Answers

vote up 8 vote down check
select distinct(hardware_name) 
from hardware,incidents 
where hardware.id = incidents.hardware_id and incidents.resolved=0;
link|flag
I don't think the hardware table would have an indident_id since there can be multiple incidents for the same hardware. It should be the other way around. – ehogue Oct 16 '08 at 19:49
thanks - you're right and I've corrected the answer. – Richard Harrison Oct 16 '08 at 20:37
vote up 3 vote down

Something like this should do it:

Select A.HardwareID A.HadwareName, B.UnresolvedCount
From (Hardware A) 
Inner Join 
(
  Select HardwareID, Count(1) As UnresolvedCount 
  From Incidents 
  Where Resolved = 0 
  Group By HardwareID
) As B On A.HardwareID = B.HardwareID
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.