CloudKit - How to perform Not Exists query? -


i want perform database query in cloudkit in sql:

select * table1 t1 not exists      (select *     table2 t2     t1.userid = t2.userid) 

do know how that?

try select * table1 t1 t1.userid not in( select t2.userid table2 t2);

or

select t1.userid table1 t1 minus select t2.userid table2 t2;


Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -