Difference between revisions of "Main Page"
From NoSQLZoo
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{TopTenTips}} | {{TopTenTips}} | ||
− | <div class="q nonum" data-lang=" | + | <div class="q nonum" data-lang="mongo" data-width="80"> |
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}) | |
</pre> | </pre> | ||
</div> | </div> | ||
Line 25: | Line 11: | ||
Learn NoSQL using: MongoDB, PyMongo, and Python3.4 | Learn NoSQL using: MongoDB, PyMongo, and Python3.4 | ||
==Tutorials: Learn NoSQL in stages== | ==Tutorials: Learn NoSQL in stages== | ||
− | ; [[FIND | + | ; [[FIND Tutorial|Find Tutorial]]:Using Find. |
; [[AGGREGATE world|x AGGREGATE world]]:In which we query the world collection and make use of aggregate functions. | ; [[AGGREGATE world|x AGGREGATE world]]:In which we query the world collection and make use of aggregate functions. | ||
; [[MAPREDUCE basics|x MAPREDUCE basics]]:Using MapReduce. | ; [[MAPREDUCE basics|x MAPREDUCE basics]]:Using MapReduce. |
Revision as of 12:22, 3 December 2015
What is the capital of France?
db.world.find_one({"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