Skip to content

Instantly share code, notes, and snippets.

@arlomba
Created January 24, 2022 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arlomba/2b5ae7c96b6b3425746a71bea69f2d11 to your computer and use it in GitHub Desktop.
Save arlomba/2b5ae7c96b6b3425746a71bea69f2d11 to your computer and use it in GitHub Desktop.
Soluciones a prácticas con MongoDB

Ejercicios MongoDB

Repositorio: https://github.com/Formate-con-Altia/practica-consultas-mongodb

Soluciones

ENCONTRAR - base de datos sample_restaurants, en la coleccion de restaurant

use sample_restaurants;

db.restaurants.find({ cuisine: "American" });
db.restaurants.find({ borough: "Queens" });
db.restaurants.find({ name: "Cafe Espanol" });
db.restaurants.find({ name: { $regex: /Cafe/ } });
db.restaurants.find({ "address.building": "41" });
db.restaurants.find({ "address.building": { $in: ["41", "66"] } });

ENCONTRAR - base de datos sample_mflix, en la coleccion de 'movies'

use sample_mflix;

db.movies.find({ year: { $lt: 1917 } });
db.movies.find({ }, { title: 1, _id: 0 });
db.movies.find({ year: { $lt: 1912 } }, { title: 1, _id: 0 });
db.movies.find({ genres: { $all: ["Short", "Romance", "Animation"] } });
db.movies.find({ rated: { $exists: true } });
db.movies.find({ rated: { $eq: "G",  $exists: true } });

BORRAR - base de datos sample_mflix, en la coleccion de 'movies'

use sample_mflix;

db.movies.find({ "imdb.rating": { $lt: 5 } });
db.movies.remove({ "imdb.rating": { $lt: 5 } });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment