Actions

NoSQL Zoo: Difference between revisions

From NoSQLZoo

No edit summary
No edit summary
Line 4: Line 4:
What is the capital of France?
What is the capital of France?
<pre class=def>
<pre class=def>
db.world.find_one({"name":"France"},{"capital":1})
db.world.findOne({"name":"France"},{"capital":1})
</pre>
</pre>
</div>
</div>

Revision as of 12:23, 3 December 2015

What is the capital of France?

db.world.findOne({"name":"France"},{"capital":1})

Learn NoSQL using: MongoDB, PyMongo, and Python3.4

Tutorials: Learn NoSQL in stages

Find Tutorial
Using Find.
x AGGREGATE world
In which we query the world collection and make use of aggregate functions.
x MAPREDUCE basics
Using MapReduce.
x MAPREDUCE elite
MapReduce questions using the Elite Dangerous dataset.

Reference: How to...

AGGREGATE examples
FIND
FIND examples
MAPREDUCE
NOSQLZOO: 'elite' dataset schema
RegEx Pattern Matching

MongoDB resources

Manuals
MongoDB Documentaion MongoDB Documentation GitHub
Python 3 Documentaion PyMongo API Documentation
Karl Seguin's The Little MongoDB Book
  • You have been served by: dill