如何使用 Propel ORM 进行 NOT IN 或 LEFT JOIN/IS NULL?
您好,我正在寻找数据库中不在另一个表中的行。如果外键行存在,我不希望表行包含在结果集中。
例如:
Group Table
Id - Title - Motto - Logo
Member Table
Id - FirstName - LastName
GroupMemberMap Table
Id - Group - Member
我想获取所有未分配到组的成员。
有人知道如何使用 Propel 做到这一点吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
两个示例:
左连接
子查询
让我知道。 :)
Two examples:
Left join
Sub query
Let me know. :)
你能说得更具体一些吗?
否则,请使用 <> ?
Can you be more specific?
Otherwiste, use <> ?