Is there a way to query for objects with not same values on some field? For example I have Records:
{ id : 1, name : "my_name", salary : 1200 }
{ id : 2, name : "my_name", salary : 800 }
{ id : 3, name : "john", salary : 500 }
Query : find all with NOT_THE_SAME(name)
I just want records with id 1 and 3 because I specified that I don't want records with same value in field name
or 2 and 3, it does not matter in this situation.
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…