You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Week3/MAKEME.md
+13-2
Original file line number
Diff line number
Diff line change
@@ -79,8 +79,19 @@ function getPopulation(Country, name, code, cb) {
79
79
80
80
**Exercise 4 : MongoDB CRUD**
81
81
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.
84
95
85
96
* Write down all the steps of conversion (installation, commands etc.) in a text file / MD file.
-[Transitioning from relational databases to MongoDB](https://www.mongodb.com/blog/post/transitioning-from-relational-databases-to-mongodb)
180
188
181
189
## 5. Non-relational vs. relational
182
190
@@ -224,27 +232,6 @@ UPDATE proj_name = "HackYourMongo" where proj_no = 123 and project_tag = "bac
224
232
225
233
Oh no! We lost integrity!
226
234
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).
0 commit comments