Hi Kyle,
I think I might have misunderstood you at
www.joomlapolis.com/forum/professional-members-support/247129-list-with-users-that-are-subscribed-to-an-acymailing-list?start=0#339604
where you say, I couldn't use joins here. After changing your query just a little bit, it now works - with a join....
Thank you so much, I really appreciate your support and you patience here
For everyone, who might have the same or a similar problem in the future, here is the working sql - at least, it worked for me:
Code:
EXISTS( SELECT 1 FROM `#__acym_user_has_list` AS haslist INNER JOIN `#__acym_user` acyuser ON acyuser.`id` = haslist.`user_id` WHERE haslist.`list_id` = 1 AND haslist.`status` = 1 AND acyuser.`cms_id` = u.`id` )