Skip to content

Instantly share code, notes, and snippets.

View rezhajulio's full-sized avatar
🏠
Working from home

Rezha Julio rezhajulio

🏠
Working from home
View GitHub Profile
@rezhajulio
rezhajulio / mongo-commands.md
Created January 24, 2017 23:30 — forked from dimitardanailov/mongo-commands.md
MongoDB - Commands
# Get documents, where writters are Joel Coen and Ethan Coen.
db.movieDetails.find({ "writters" : ["Joel Coen", "Ethan Coen"] }).count()
# Get documents, where Jeff Bridges is playing leading role.
> db.movieDetails.find({ "actors.0": "Jeff Bridges" }).pretty()