Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. //OR
  2. db.alura.find({
  3. $or:[
  4. {"alunos.cursos.nome":"magica"},
  5. {"alunos.cursos.nome":"sprite"}
  6. ]
  7. });
  8.  
  9. //AND
  10. db.alura.find({
  11. $or:[
  12. {"alunos.cursos.nome":"magica"},
  13. {"alunos.cursos.nome":"circo"}
  14. ],
  15. "alunos.nome":"Daniela"
  16. });
  17.  
  18. //IN
  19. db.alura.find({
  20. "alunos.cursos.nome":{
  21. $in:[
  22. "fanta",
  23. "corrida"
  24. ]
  25. }
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement