Advertisement
Guest User

Untitled

a guest
Oct 17th, 2016
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. db.test_mongo_fckp.remove({})
  2. db.test_mongo_fckp.insertMany([
  3. {field: [1,2,3]},
  4. {field: []},
  5. {field: ['']},
  6. {field: [0]},
  7. {field: 1},
  8. {field_1: 1}
  9. ])
  10. db.test_mongo_fckp.find()
  11. db.test_mongo_fckp.createIndex({'field': 1})
  12. db.test_mongo_fckp.find({'field': {'$gt': []}})
  13. db.test_mongo_fckp.dropIndex({'field': 1})
  14. db.test_mongo_fckp.find({'field': {'$gt': []}})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement