hi, hoping to find a bit of advice.
just trying to get people out of one table who have a password and who ARE NOT in another table, and yes, the tables have relational ID's.
see this SQL...why does MySQL not like it??:
SELECT Contacts.* FROM Contacts WHERE LENGTH(Contacts.Password) > 0 AND ContactID NOT IN (SELECT Users.ContactID FROM Users);