Skip to content

Instantly share code, notes, and snippets.

@isaacbatst
Created April 13, 2023 20:24
Show Gist options
  • Save isaacbatst/b9bfabf20dcced907941930302097501 to your computer and use it in GitHub Desktop.
Save isaacbatst/b9bfabf20dcced907941930302097501 to your computer and use it in GitHub Desktop.
// 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