Created
April 13, 2023 20:24
-
-
Save isaacbatst/b9bfabf20dcced907941930302097501 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// no mongo ou mongosh | |
// use aula_11_4; | |
// no vscode \/ | |
use("aula_11_4"); | |
db.students.drop() | |
db.students.insertMany( | |
[ | |
{ name: "Estudante 1", school: "Escola do Futuro", bestScore: 9.8 }, | |
{ name: "Estudante 2", school: "Escola do Futuro", bestScore: 7.2 } | |
] | |
); | |
db.products.drop() | |
db.products.insertOne( | |
{ | |
_id: 200, | |
sku: "abc123", | |
quantity: 250, | |
instock: true, | |
reorder: false, | |
details: { model: "14Q2", make: "xyz" }, | |
tags: [ "apparel", "clothing" ], | |
ratings: [ { by: "John Doe", rating: 4 } ] | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment