NSPredicate 格式相当于 SQL 查询
我有两个表:table1 和 table2。与以下 SQL 查询等效的 NSPredicate
格式是什么?
SELECT * FROM table1 where table1.a NOT IN (SELECT table2.b from table2)
I have two tables: table1 and table2. What would be the NSPredicate
format equivalent to the following SQL query?
SELECT * FROM table1 where table1.a NOT IN (SELECT table2.b from table2)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,你可以从 table2 中获取 b 值的列表,然后执行类似的操作......
Well you can get a list of b values from table2 then do something like this...