Ok, I think I might be overlooking something obvious/simple here... but I need to write a query that returns only records that match multiple criteria on the same column...<
SELECT contactid, Count(*) FROM WHERE flag in ('Volunteer','Uploaded') GROUP BY contactid HAVING count(*)>1;