I've got a people table with unique ID 'id'. Activities performed by those people are stored in a people_activity table, with columns 'type' (activity type, an integer) and 'id', which matches the person. I have a query where I pull back many people at a time, but I'd like to add to that query the conditions that a person does or does not have 0 or more activities performed.
If I was querying a single person, it would be a simple "where people_activity.type = 4 and people_activity.type <> 12", etc., but since I'm pulling back many people, I'm not quite sure how to do it.
My current query, with a bad where clause for the type (apologies, I simplified it in my explanation):
select first , middle , last , y.dob , rid.rid as rid , rid.record_number
from (select first, middle, last, email, added, phone, a.revision as revision, type, lastupdated, a.rid as rid from people a inner join (select people.rid, max(revision) as revision from people group by people.rid) b on a.rid = b.rid and a.revision = b.revision) p inner join youth y on p.rid = y.rid
inner join language l on y.language_t = l.language_id
inner join cases on y.case_id = cases.id
inner join race r on y.race_t = r.race_id
inner join providers_r cp on y.provider_id = cp.provider_id
inner join rid on y.rid = rid.rid
where p.first like "c%" and p.middle like "%" and p.last like "%" and exists (select * from youth_activity where type = 2)
group by y.rid
order by last asc
You'll see my current way of doing it, "where exists (select * from youth_activity where type=4)" is no good because that simply checks that a single type of 4 exists at all, and not necessarily for the specific people returned in the query.