Skip to content

Instantly share code, notes, and snippets.

@fmasanori
Created July 3, 2013 21:34
Show Gist options
  • Save fmasanori/5923032 to your computer and use it in GitHub Desktop.
Save fmasanori/5923032 to your computer and use it in GitHub Desktop.
create student collection
use school
var types = ['exam', 'homework', 'quiz']
for (student_id = 0; student_id < 100; student_id++) {
for (type=0; type < 3; type++) {
var r = {'student_id':student_id,
'type':types[type],
'score':Math.random() * 100};
db.scores.insert(r)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment