factbook.json/MONGO.md

65 lines
1.2 KiB
Markdown
Raw Normal View History

2017-03-28 15:37:26 +02:00
# Mongo
## Query Examples
### Find all countries speaking <X>?
German
2017-03-28 15:39:20 +02:00
```js
2017-03-28 15:37:26 +02:00
db.factbook.find( { "People and Society.Languages.text": /German/}, { "Government.Country name": 1 } )
```
English
2017-03-28 15:39:20 +02:00
```js
2017-03-28 15:37:26 +02:00
db.factbook.find( { "People and Society.Languages.text": /English/}, { "Government.Country name": 1 } )
```
### Find all countries with a land border with <X>?
Austria
2017-03-28 15:39:20 +02:00
```js
db.factbook.find( { "Geography.Land boundaries.border countries.text": /Austria/},
{ "Government.Country name": 1 } )
2017-03-28 15:37:26 +02:00
```
Germany
2017-03-28 15:39:20 +02:00
```js
db.factbook.find( { "Geography.Land boundaries.border countries.text": /Germany/},
{ "Government.Country name": 1 } )
2017-03-28 15:37:26 +02:00
```
### Find all import partner countries for <X>?
Austria
2017-03-28 15:39:20 +02:00
```js
2017-03-28 15:37:26 +02:00
db.factbook.find( { "Economy.Imports - partners.text": /Austria/}, { "Government.Country name": 1 } )
```
### Find all countries with voting age 16 years
2017-03-28 15:39:20 +02:00
```js
db.factbook.find( { "Government.Suffrage.text": /16/},
{ "Government.Country name": 1, "Government.Suffrage": 1 })
2017-03-28 15:37:26 +02:00
```
### Find all countries with <X> membership?
NATO
2017-03-28 15:39:20 +02:00
```js
db.factbook.find( { "Government.International organization participation.text": /NATO/},
{ "Government.Country name": 1 } )
2017-03-28 15:37:26 +02:00
```
And so on.