Skip to content

Instantly share code, notes, and snippets.

@kevcodez
Created October 7, 2022 14:49
Show Gist options
  • Select an option

  • Save kevcodez/864c5f84c55b0e99db44486b2e20a5b5 to your computer and use it in GitHub Desktop.

Select an option

Save kevcodez/864c5f84c55b0e99db44486b2e20a5b5 to your computer and use it in GitHub Desktop.
medium_mongodb_performance_projection_compute
db.assets.find({}, {
projection: {
marketCap: 1,
lastPrice: 1,
marketShares: { $divide: ["$marketCap", "$lastPrice"] }
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment