# # CS 460: Problem Set 5: MongoDB Query Problems # # # For each query, use a text editor to add the appropriate XQuery # command between the triple quotes provided for that query's variable. # # For example, here is how you would include a query that finds # the names of all movies in the database from 1990. # sample = """ db.movies.find( { year: 1990 }, { name: 1, _id: 0 } ) """ # # 1. Put your query for this problem between the triple quotes found below. # Follow the same format as the model query shown above. # query1 = """ """ # # 2. Put your query for this problem between the triple quotes found below. # query2 = """ """ # # 3. Put your query for this problem between the triple quotes found below. # query3 = """ """ # # 4. Put your query for this problem between the triple quotes found below. # query4 = """ """ # # 5. Put your query for this problem between the triple quotes found below. # query5 = """ """ # # 6. Put your query for this problem between the triple quotes found below. # query6 = """ """ # # 7. Put your query for this problem between the triple quotes found below. # query7 = """ """ # # 8. Put your query for this problem between the triple quotes found below. # query8 = """ """ # # 9. Put your query for this problem between the triple quotes found below. # query9 = """ """ # # 10. Put your query for this problem between the triple quotes found below. # query10 = """ """