Skip to content

Instantly share code, notes, and snippets.

@danared
Created November 2, 2015 18:12
Show Gist options
  • Save danared/a044c22d9d5b3ef302fe to your computer and use it in GitHub Desktop.
Save danared/a044c22d9d5b3ef302fe to your computer and use it in GitHub Desktop.
db.annualHomePrices.aggregate([
{$project:
{
Year: "$year",
hightToLowPriceGap: {
$subtract: ["$highestPrice", "$lowestPrice"]
},
_id: 0
}
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment