As per our guidelines, we are supposed to answer only 1st three parts. Kindly repost the remaining questions separately. 4.1 use gym_29876543 4.2 db.createCollection("userProfiles") db.userProfiles.insertMany([ {"Name" : "Dominic","Surname":"Badeaux","Date_of_Birth":1982-09-04,"FitnessLevel":1}, {"Name" : "John","Surname":"Dlamini","Date_of_Birth":1974-05-18,"FitnessLevel":2} ]) 4.3 db.userProfiles.find() arrow_forward Step 2 Complete code: use gym_29876543 db.createCollection("userProfiles") db.userProfiles.insertMany([ {"Name" : "Dominic","Surname":"Badeaux","Date_of_Birth":1982-09-04,"FitnessLevel":1}, {"Name" : "John","Surname":"Dlamini","Date_of_Birth":1974-05-18,"FitnessLevel":2} ]) db.userProfiles.find() Q.4.4 Query all the user profiles where the fitness level of the user is equal to 2. Q.4.5 Query all the user profiles where the date of birth of the user is from 1980‐01‐01 to 1982‐12‐31 (including both dates
As per our guidelines, we are supposed to answer only 1st three parts. Kindly repost the remaining questions separately.
4.1
use gym_29876543
4.2
db.createCollection("userProfiles")
db.userProfiles.insertMany([
{"Name" : "Dominic","Surname":"Badeaux","Date_of_Birth":1982-09-04,"FitnessLevel":1},
{"Name" : "John","Surname":"Dlamini","Date_of_Birth":1974-05-18,"FitnessLevel":2}
])
4.3
db.userProfiles.find()
Complete code:
use gym_29876543
db.createCollection("userProfiles")
db.userProfiles.insertMany([
{"Name" : "Dominic","Surname":"Badeaux","Date_of_Birth":1982-09-04,"FitnessLevel":1},
{"Name" : "John","Surname":"Dlamini","Date_of_Birth":1974-05-18,"FitnessLevel":2}
])
db.userProfiles.find()
Q.4.4 Query all the user profiles where the fitness level of the user is equal to 2.
Q.4.5 Query all the user profiles where the date of birth of the user is from 1980‐01‐01 to
1982‐12‐31 (including both dates)
Step by step
Solved in 2 steps