Skip to content

Commit a4efc5e

Browse files
authored
Merge pull request #463 from tomasvanrijsse/week3-mongo
make changes to mongo explanation and exercise
2 parents f84235d + 060faa9 commit a4efc5e

File tree

2 files changed

+24
-26
lines changed

2 files changed

+24
-26
lines changed

Week3/MAKEME.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,19 @@ function getPopulation(Country, name, code, cb) {
7979

8080
**Exercise 4 : MongoDB CRUD**
8181

82-
Convert the MySQL [world](../Week2/world.sql) database into MongoDB either on your local machine or in the cloud
83-
[Atlas](https://www.mongodb.com/cloud/atlas).
82+
In week 1, you used a mysql database that had 3 tables: `cities`, `countries`, and `countrylanguage`.
83+
84+
We are going to migrate these tables into your Atlas MongoDB account
85+
86+
```sql
87+
select * into outfile 'city.csv' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' from city;
88+
89+
select * into outfile 'country.csv' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' from country;
90+
91+
select * into outfile 'countrylanguage.csv' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' from countrylanguage;
92+
```
93+
94+
Then in Atlas , follow [add my own data](https://docs.atlas.mongodb.com/tutorial/insert-data-into-your-cluster) to import the csv data into new collections.
8495

8596
* Write down all the steps of conversion (installation, commands etc.) in a text file / MD file.
8697

Week3/README.md

+11-24
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,21 @@ To increase your understanding check the following materials:
170170

171171
## 4. NoSQL (with MongoDB)
172172

173+
In NoSQL the concepts of tables and rows have different names, that's because they behave differently.
174+
But you could map them like this:
175+
173176
![rdb-mongo-pic](https://beginnersbook.com/wp-content/uploads/2017/09/RDBMS_MongoDB_Mapping.jpg)
174177

175-
https://beginnersbook.com/2017/09/mapping-relational-databases-to-mongodb/
178+
A schema need not be enforced or even exist, you can simply store JSON objects as documents.
179+
180+
For a good understanding of MongoDB you should watch this 36-minute video:
181+
[MongoDB Crash Course](https://www.youtube.com/watch?v=-56x56UppqQ)
176182

177-
A schema need not be enforced or even exist:
183+
A small example how to work with Mongo can be found in the folder `/Week3/mongodb`
178184

179-
![noschema](https://image.slidesharecdn.com/nosql-and-mongodb-sig-14march2017-170315090521/95/introducing-nosql-and-mongodb-to-complement-relational-databases-amis-sig-14032017-45-638.jpg?cb=1489568959)
185+
To increase your understanding check the following materials:
186+
- https://beginnersbook.com/2017/09/mapping-relational-databases-to-mongodb/
187+
- [Transitioning from relational databases to MongoDB](https://www.mongodb.com/blog/post/transitioning-from-relational-databases-to-mongodb)
180188

181189
## 5. Non-relational vs. relational
182190

@@ -224,27 +232,6 @@ UPDATE proj_name = "HackYourMongo" where proj_no = 123 and project_tag = "bac
224232

225233
Oh no! We lost integrity!
226234

227-
### Preparing you for the homework:
228-
229-
In week 1, you used a mysql database that was 3 tables: `cities`, `countries`, and `countrylanguage`.
230-
231-
We are going to migrate these tables into your Atlas MongoDB account
232-
233-
```sql
234-
select * into outfile 'city.csv' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' from city;
235-
236-
select * into outfile 'country.csv' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' from country;
237-
238-
select * into outfile 'countrylanguage.csv' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' from countrylanguage;
239-
```
240-
241-
Then in Atlas , follow [add my own data](https://docs.atlas.mongodb.com/getting-started/#insert-data-into-your-cluster) to import the csv data into new collections.
242-
243-
For homework, you will perform CRUD operations and aggregations on them. Also queries with joins (you will see perhaps how hard this is).
244-
245-
- [Relational Database Essentials](https://www.youtube.com/watch?v=GfBtPAB7NH0)
246-
- [Transitioning from relational databases to MongoDB](https://www.mongodb.com/blog/post/transitioning-from-relational-databases-to-mongodb)
247-
248235
## Finished?
249236

250237
Are you finished with going through the materials? High five! If you feel ready to get practical, click [here](./MAKEME.md).

0 commit comments

Comments
 (0)