Hi I am looking to select rows in my database that are not in another table. If the foreign keyed row exists I don’t want the table row included in the result set.
For example:
Group Table
Id - Title - Motto - Logo
Member Table
Id - FirstName - LastName
GroupMemberMap Table
Id - Group - Member
I want to get all the members that are not assigned to a group.
Anyone know how to do that with Propel?
Two examples:
Left join
Sub query
Let me know. 🙂