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)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well you can get a list of b values from table2 then do something like this…